Last visit was: less than a minute ago
It is currently 20 Jun 2013, 20:50
[WoW] <Aegis> EU-Darksorrow
Forum rules
caution, make sure your links work. posts with invalid urls will be deleted.
caution, make sure your links work. posts with invalid urls will be deleted.
- Release
- Posts: 1
- Joined: 05 Aug 2010, 12:16
Re: [WoW] <Aegis> EU-Darksorrow
I'm pretty envious of your Recruitment status add on, is this a custom build or open release?
- aenima
- Posts: 80
- Joined: 24 Dec 2007, 16:29
Re: [WoW] <Aegis> EU-Darksorrow
that is the one that comes with bbdkp but with some tweaks. If you take a look around the forums (i dont remember where) there is a post about how to do it.
- Blazeflack
- Posts: 954
- Joined: 21 Mar 2009, 22:02
Re: [WoW] <Aegis> EU-Darksorrow
Sorry for not replying to this sooner, somehow this thread didn't show up under recent posts for me.
To make the block look like this you need to do a few simple edits:
1.: includes/bbdkp/portal/recruitmentblock.php
Find
Replace with
Find
Replace with
2.: styles/your_style/template/dkp/block/recruitment.html should look something like this (prosilver based):
Finally you need to upload the attached images to styles/your_style/theme/images/dkp/
Purge cache and it should be all set.
To make the block look like this you need to do a few simple edits:
1.: includes/bbdkp/portal/recruitmentblock.php
Find
- Code: Select all
$color =array(
array(0, " ", "#000000", "bullet_white.png" ),
array(1, "Clos", "#AAAAAA", "bullet_white.png" ),
array(2, "Low", "#FFBB44", "bullet_yellow.png" ),
array(3, "Med", "#FF3300", "bullet_red.png" ),
array(4, "High", "#AA00AA", "bullet_purple.png" ),
);
Replace with
- Code: Select all
$color =array(
array(0, "N/A", "#000000", "rec.png" ),
array(1, "Closed", "#AAAAAA", "rec_closed.png" ),
array(2, "Low", "#FFBB44", "rec_low.png" ),
array(3, "Medium", "#FF3300", "rec_med.png" ),
array(4, "High", "#AA00AA", "rec_high.png" ),
);
Find
- Code: Select all
$template->assign_block_vars('rec', array(
'CLASSID' => $row['class_id'],
'CLASS' => $row['class_name'],
'TANKCOLOR' => $color[$row['tank']][2],
'TANKFORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $rec_forum_id),
'TANKTEXT' => $color[$row['tank']][1],
'DPSCOLOR' => $color[$row['dps']][2],
'DPSFORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $rec_forum_id),
'DPSTEXT' => $color[$row['dps']][1],
'HEALCOLOR' => $color[$row['heal']][2],
'HEALFORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $rec_forum_id),
'HEALTEXT' => $color[$row['heal']][1],
));
Replace with
- Code: Select all
$template->assign_block_vars('rec', array(
'CLASSID' => $row['class_id'],
'CLASS' => $row['class_name'],
'TANKCOLOR' => $color[$row['tank']][2],
'TANKFORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $rec_forum_id),
'TANKTEXT' => $color[$row['tank']][1],
'TANK' => $color[$row['tank']][3],
'DPSCOLOR' => $color[$row['dps']][2],
'DPSFORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $rec_forum_id),
'DPSTEXT' => $color[$row['dps']][1],
'DPS' => $color[$row['dps']][3],
'HEALCOLOR' => $color[$row['heal']][2],
'HEALFORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $rec_forum_id),
'HEALTEXT' => $color[$row['heal']][1],
'HEAL' => $color[$row['heal']][3],
));
2.: styles/your_style/template/dkp/block/recruitment.html should look something like this (prosilver based):
- Code: Select all
<!-- begin recruit -->
<div class="panel">
<div class="inner">
<span class="corners-top"><span></span></span>
<h3 style="text-align:center">{L_RECRUITMENT_BLOCK}</h3>
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th style="text-align:center;">
<img src="{T_THEME_PATH}/images/dkp/looking_icon.gif" alt="{L_CLASS}" title="{status.MESSAGE}" />
</th>
<th style="text-align:center;">
<img src="{T_THEME_PATH}/images/dkp/tank_icon.png" alt="{L_TANK}" title="{L_TANK}" />
</th>
<th style="text-align:center;">
<img src="{T_THEME_PATH}/images/dkp/dps_icon.png" alt="{L_DPS}" title="{L_DPS}" />
</th>
<th style="text-align:center;">
<img src="{T_THEME_PATH}/images/dkp/healer_icon.png" alt="{L_HEAL}" title="{L_HEAL}" />
</th>
</tr>
<!-- BEGIN rec -->
<tr style="text-align:center;">
<td style="width:25%" class="row1">
<span class="genmed">
<img src="{ROOT_PATH}images/class_images/{GAME}_{rec.CLASS}_small.png" alt="{rec.CLASS}" title="{rec.CLASS}" /></span>
</td>
<td class="row1"><span class="genmed"><a href="{rec.TANKFORUM}"><img src="{ROOT_PATH}images/icons/{rec.TANK}" alt="{rec.TANKTEXT}" title="{rec.TANKTEXT}" /></a></span></td>
<td class="row1"><span class="genmed"><a href="{rec.DPSFORUM}"><img src="{ROOT_PATH}images/icons/{rec.DPS}" alt="{rec.DPSTEXT}" title="{rec.DPSTEXT}" /></a></span></td>
<td class="row1"><span class="genmed"><a href="{rec.HEALFORUM}"><img src="{ROOT_PATH}images/icons/{rec.HEAL}" alt="{rec.HEALTEXT}" title="{rec.HEALTEXT}" /></a></span></td>
</tr>
<!-- END rec -->
</table>
<span class="corners-bottom"><span></span></span>
</div>
</div>
<!-- end recruit -->
Finally you need to upload the attached images to styles/your_style/theme/images/dkp/
Purge cache and it should be all set.
You do not have the required permissions to view the files attached to this post.
Please don't PM me for support. Create a new topic with your question, this way everyone gains from the information shared.
- Blazeflack
- Posts: 954
- Joined: 21 Mar 2009, 22:02
Re: [WoW] <Aegis> EU-Darksorrow
With the style comes a .psd image which can be edited in Photoshop and programs like that. I made the "Aegis" part myself in GIMP 2 (free Photoshop like program) and just placed it where it is.
You can get the header .psd image here: http://www.mediafire.com/?lc83n64q10aazwd
You can get the header .psd image here: http://www.mediafire.com/?lc83n64q10aazwd
Please don't PM me for support. Create a new topic with your question, this way everyone gains from the information shared.
- Holysymbol
- Posts: 1
- Joined: 20 Aug 2010, 16:52
Re: [WoW] <Aegis> EU-Darksorrow
Where can I get this theme?
I have looked everywhere on these forums but didn't find a download
I have looked everywhere on these forums but didn't find a download

- Sajaki
- Posts: 2171
- Joined: 28 Dec 2007, 14:56
- Location: Belgium
Re: [WoW] <Aegis> EU-Darksorrow
Holysymbol wrote:Where can I get this theme?
I have looked everywhere on these forums but didn't find a download
it's not available for public download.... yet
- Grifftech
- Posts: 5
- Joined: 27 Aug 2010, 01:43
Re: [WoW] <Aegis> EU-Darksorrow
When can I get this amazing style for my wow forum. I would kill to have my site look like this!
- Grifftech
- Posts: 5
- Joined: 27 Aug 2010, 01:43
Re: [WoW] <Aegis> EU-Darksorrow
Can't stop drooling at this theme!!!!!
- ravieh
- Posts: 5
- Joined: 11 Sep 2010, 17:24
Re: [WoW] <Aegis> EU-Darksorrow
Any news about a release for this theme? about to start modifying prosilver myself but don't have that much time.
big thumbs up for the theme
Rav
big thumbs up for the theme
Rav
Who is online
Users browsing this forum: Internet Archive [Bot] and 0 guests
-
- Advertisement