This is the first wow recruiting penal for TinyPortal. With this mod you are able to select whether a class is open for recruiting or not and then set a link towards the forums where the user can post there application.
(https://www.tinyportal.net/proxy.php?request=http%3A%2F%2Fwww.sharky-web.com%2Fdownloads%2Fwow2.PNG&hash=0e101d86aefc7bcf7f34092316321d3fb33c1429) (http://www.sharky-web.com/downloads/wow1.PNG)
this is only the first version but on the next version i will put a admin menu too
to get this mod just go to
http://www.sharky-web.com/modules.php?name=Forums&file=viewtopic&t=21&sid=c63c7328775ce30aa14faca270ad8ab2 (http://www.sharky-web.com/modules.php?name=Forums&file=viewtopic&t=21&sid=c63c7328775ce30aa14faca270ad8ab2)
If you have any problem please post any problem there as i do check that site regulary and i will be able to answer your question faster
moved cause it's more fitted in the block code and snippets area.
cool thanks :)
You're descrpition of this Mod and what it does is vague at best.
Why would I install it if I don't have a clue what it does?
I "guess" from the title that it's a World of Warcraft team member recruiting mod.
Thats descriptive.
Is it adaptable? Could I use this to advertise DJ Vacancies?
ZTN
a picture is worth 100 words but just for you i put some more info
How so? The picture states Test. Not everybody knows what WOW means.
And if that were the case.. do you think I'd mention it?
[Edit] And don't be cheeky. If it were for me.. do you think I'd have described it for everybody else?
dude you are picking a fight here if you don't know what wow means than it's not for you if you want a better description than write one your self i am very busy a friends asked me to create this for him and then told me to put it up here so i did if yuo guys think my description or mod is crap than please delete it
Looks good to me. I think anyone who plays WoW will probably want this.
Looks good to me too.. And I'm not picking any fight.
Maybe I should have said "great looking mod, what does it do"?
So, moving on from bickering.. Apologies.
A recruitment mod is something I could use at times. But not for WoW.
How easy is it to adapt to other recruitment fields?
depends what game you need it for but it should be easy change the images and the text and you are done sorry for going off too but i am kinda tired and that's why apologies
I think Zetan wants it for music and not games :)
I liked this a lot but being limited to open or closed was too restrictive. Also, the blue for open didn't show up well on my black-background theme sooo... I made a small modification that allows a "l" (lower case L) to be used to indicate "Limited" recruiting. I changed open to green, limited is yellow and closed is red.
Hope you like:
$druid ="o";
$hunter ="l";
$mage ="o";
$priest ="o";
$rogue ="o";
$shaman ="o";
$warlock ="l";
$warrior ="";
$paladin ="o";
$address = "http://www.thefalloutguild.com/smf2/index.php?board=2.0";
$r = "o";
$l = "l";
if ($druid ==$r){
$druid = "<b><font color='green'>Open</font></b>";
}
elseif ($druid == $l) {
$druid = "<b><font color='yellow'>Limited</font></b>";
}
else{
$druid = "<b><font color='red'>Closed</font></b>";
}
if ($hunter ==$r){
$hunter = "<b><font color='green'>Open</font></b>";
}
elseif ($hunter == $l) {
$hunter = "<b><font color='yellow'>Limited</font></b>";
}
else{
$hunter = "<b><font color='red'>Closed</font></b>";
}
if ($mage ==$r){
$mage = "<b><font color='green'>Open</font></b>";
}
elseif ($mage == $l) {
$mage = "<b><font color='yellow'>Limited</font></b>";
}
else{
$mage = "<b><font color='red'>Closed</font></b>";
}
if ($priest ==$r){
$priest= "<b><font color='green'>Open</font></b>";
}
elseif ($priest == $l) {
$priest = "<b><font color='yellow'>Limited</font></b>";
}
else{
$priest = "<b><font color='red'>Closed</font></b>";
}
if ($rogue ==$r){
$rogue = "<b><font color='green'>Open</font></b>";
}
elseif ($rogue == $l) {
$rogue = "<b><font color='yellow'>Limited</font></b>";
}
else{
$rogue = "<b><font color='red'>Closed</font></b>";
}
if ($shaman ==$r){
$shaman = "<b><font color='green'>Open</font></b>";
}
elseif ($shaman == $l) {
$shaman = "<b><font color='yellow'>Limited</font></b>";
}
else{
$shaman = "<b><font color='red'>Closed</font></b>";
}
if ($warlock ==$r){
$warlock = "<b><font color='green'>Open</font></b>";
}
elseif ($warlock == $l) {
$warlock = "<b><font color='yellow'>Limited</font></b>";
}
else{
$warlock= "<b><font color='red'>Closed</font></b>";
}
if ($warrior ==$r){
$warrior = "<b><font color='green'>Open</font></b>";
}
elseif ($warrior == $l) {
$warrior = "<b><font color='yellow'>Limited</font></b>";
}
else{
$warrior = "<b><font color='red'>Closed</font></b>";
}
if ($paladin ==$r){
$paladin = "<b><font color='green'>Open</font></b>";
}
elseif ($paladin == $l) {
$paladin = "<b><font color='yellow'>Limited</font></b>";
}
else{
$paladin = "<b><font color='red'>Closed</font></b>";
}
echo"
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/druid_icon.gif'> Druid</td>
<td valign='bottom'>".$druid."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/hunter_icon.gif'> Hunter</td>
<td valign='bottom'>".$hunter."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%'><img src='wow/mage_icon.gif'> Mage</td>
<td valign='bottom'>".$mage."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/priest_icon.gif'> Priest</td>
<td valign='bottom'>".$priest."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/rogue_icon.gif'> Rogue</td>
<td valign='bottom'>".$rogue."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow//shaman_icon.gif'> Shaman</td>
<td valign='bottom'>".$shaman."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/warlock_icon.gif'> Warlock</td>
<td valign='bottom'>".$warlock."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/warrior_icon.gif'> Warrior</td>
<td valign='bottom'>".$warrior."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/paladin_icon.gif'> Paladin</td>
<td valign='bottom'>".$paladin."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td>
<br><font color='red'><div align='center'><a href='".$address."'> Apply Here</a><br></div></font>
</td>
</tr>
</table>
";
you can see it in action at http://www.thefalloutguild.com
my next version will include colors number of slots if yuo want to display it and admin penal for easy use but i like waht yuo have done with it
small modification, less tables for html output, hopes you like. Im currently using this and hopefully i didnt screw the code too much :laugh:
// Modify these values to show our opening - "o"=open, "l"=limited, anything else = closed
$druid ="";
$hunter ="o";
$mage ="";
$paladin ="o";
$priest ="l";
$rogue ="";
$shaman ="";
$warlock ="l";
$warrior ="";
$address = "http://";
echo '
<head>
<style type="text/css">
td.center
{
text-align: left;
vertical-align: middle
}
td.right
{
text-align: right;
vertical-align: middle
}
</style>
</head>
<body>
';
// Code START
$r = "o";
$l = "l";
if ($druid == $r){
$druid = "<b><font color='green'>Open</font></b>";
}
elseif ($druid == $l) {
$druid = "<b><font color='orange'>Limited</font></b>";
}
else{
$druid = "<b><font color='red'>Closed</font></b>";
}
if ($hunter ==$r){
$hunter = "<b><font color='green'>Open</font></b>";
}
elseif ($hunter == $l) {
$hunter = "<b><font color='orange'>Limited</font></b>";
}
else{
$hunter = "<b><font color='red'>Closed</font></b>";
}
if ($mage ==$r){
$mage = "<b><font color='green'>Open</font></b>";
}
elseif ($mage == $l) {
$mage = "<b><font color='orange'>Limited</font></b>";
}
else{
$mage = "<b><font color='red'>Closed</font></b>";
}
if ($paladin ==$r){
$paladin = "<b><font color='green'>Open</font></b>";
}
elseif ($paladin == $l) {
$paladin = "<b><font color='orange'>Limited</font></b>";
}
else{
$paladin = "<b><font color='red'>Closed</font></b>";
}
if ($priest ==$r){
$priest= "<b><font color='green'>Open</font></b>";
}
elseif ($priest == $l) {
$priest = "<b><font color='orange'>Limited</font></b>";
}
else{
$priest = "<b><font color='red'>Closed</font></b>";
}
if ($rogue ==$r){
$rogue = "<b><font color='green'>Open</font></b>";
}
elseif ($rogue == $l) {
$rogue = "<b><font color='orange'>Limited</font></b>";
}
else{
$rogue = "<b><font color='red'>Closed</font></b>";
}
if ($shaman ==$r){
$shaman = "<b><font color='green'>Open</font></b>";
}
elseif ($shaman == $l) {
$shaman = "<b><font color='orange'>Limited</font></b>";
}
else{
$shaman = "<b><font color='red'>Closed</font></b>";
}
if ($warlock ==$r){
$warlock = "<b><font color='green'>Open</font></b>";
}
elseif ($warlock == $l) {
$warlock = "<b><font color='orange'>Limited</font></b>";
}
else{
$warlock= "<b><font color='red'>Closed</font></b>";
}
if ($warrior ==$r){
$warrior = "<b><font color='green'>Open</font></b>";
}
elseif ($warrior == $l) {
$warrior = "<b><font color='orange'>Limited</font></b>";
}
else{
$warrior = "<b><font color='red'>Closed</font></b>";
}
// Code END and HTML output start
echo '
<TABLE class = "bordercolor" cellSpacing="0" cellPadding="1" width="100%" border="0">
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow/druid_icon.gif"></td>
<td class = "center">Druid</td>
<td class = "right">'.$druid.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center" width = "25px"><img src = "wow/hunter_icon.gif"></td>
<td class = "center">Hunter</td>
<td class = "right">'.$hunter.'</td>
</tr>
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow/mage_icon.gif"></td>
<td class = "center">Mage</td>
<td class = "right">'.$mage.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center" width = "25px"><img src = "wow/paladin_icon.gif"></td>
<td class = "center">Paladin</td>
<td class = "right">'.$paladin.'</td>
</tr>
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow/priest_icon.gif"></td>
<td class = "center">Priest</td>
<td class = "right">'.$priest.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center" width = "25px"><img src = "wow/rogue_icon.gif"></td>
<td class = "center">Rogue</td>
<td class = "right">'.$rogue.'</td>
</tr>
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow/shaman_icon.gif"></td>
<td class = "center">Shaman</td>
<td class = "right">'.$shaman.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center" width = "25px"><img src = "wow/warlock_icon.gif"></td>
<td class = "center">Warlock</td>
<td class = "right">'.$warlock.'</td>
</tr>
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow/warrior_icon.gif"></td>
<td class = "center">Warrior</td>
<td class = "right">'.$warrior.'</td>
</tr>
<tr class = "windowbg2">
<td align = "center" colspan = "3"><a href = '.$address.'>Apply here</a></td>
</tr>
</table></body>
';
Quote from: sharky on March 28, 2007, 02:18:06 PM
my next version will include colors number of slots if yuo want to display it and admin penal for easy use but i like waht yuo have done with it
If anyone wants it, I edited this so you can put the number of slots remaining, if you have chosen "limited" for that character class. All I did was simply modify the "limited" output to use a variable $<x>slots, where "x" is the character class. So for druid you'd use $druidslots. If you choose limited, simple change the variable that $druidslots is limited to and place the number in, and it will output as "<number> Slots Left".
IT IS IMPORTANT THAT IF YOU ACTIVATE THE "LIMITED" VARIABLE THAT YOU PUT A VALUE INTO THE $<x>slots VARIABLE!I also changed the values for open and limited to the words themselves, as I know my guild leaders aren't familiar with code and variables. Feel free to chang eback if you like.
One final question I have is that I'm trying to make it so if $<x>slots is equal to 1, that it prints "1 Slot Left" instead of "1 Slots Left", which isn't proper English. I tried that following to try and say if the class is limited, and the slots are equal to 1, to print the specified message. However it still prints the "normal" limited message. Any ideas?
Example:
if ($druid == $r){
$druid = "<b><font color='green'>Open</font></b>";
}
elseif ($druid == $l) {
$druid = "<b><font color='yellow'>$druidslots Slots Left</font></b>";
}
elseif ($druid == $l and $druidslots == 1) {
$druid ="<b><font color='yellow'>$druidslots Slot Left</font></b>";
}
else{
$druid = "<b><font color='red'>Closed</font></b>";
}Code for "Slots Left" Recruiting Panel
// Modify these values to show our opening - "open"=open, "limited"=limited, anything else = closed
// Note: IF YOU CHOOSE LIMITED YOU MUST ADD A NUMERIC VALUE TO THE CORRESPONDING SLOTS VARIABLE BELOW IT!
$druid ="limited";
$hunter ="open";
$mage ="";
$paladin ="open";
$priest ="limited";
$rogue ="";
$shaman ="";
$warlock ="limited";
$warrior ="";
$druidslots="4";
$hunterslots="";
$mageslots="";
$paladinslots="";
$priestslots="1";
$rogueslots="";
$shamanslots="";
$warlockslots="2";
$warriorslots="";
$address = "http://";
echo '
<head>
<style type="text/css">
td.center
{
text-align: left;
vertical-align: middle
}
td.right
{
text-align: right;
vertical-align: middle
}
</style>
</head>
<body>
';
// Code START
$r = "open";
$l = "limited";
if ($druid == $r){
$druid = "<b><font color='green'>Open</font></b>";
}
elseif ($druid == $l) {
$druid = "<b><font color='yellow'>$druidslots Slots Left</font></b>";
}
else{
$druid = "<b><font color='red'>Closed</font></b>";
}
if ($hunter ==$r){
$hunter = "<b><font color='green'>Open</font></b>";
}
elseif ($hunter == $l) {
$hunter = "<b><font color='yellow'>$hunterslots Slots Left</font></b>";
}
else{
$hunter = "<b><font color='red'>Closed</font></b>";
}
if ($mage ==$r){
$mage = "<b><font color='green'>Open</font></b>";
}
elseif ($mage == $l) {
$mage = "<b><font color='yellow'>$mageslots Slots Left</font></b>";
}
else{
$mage = "<b><font color='red'>Closed</font></b>";
}
if ($paladin ==$r){
$paladin = "<b><font color='green'>Open</font></b>";
}
elseif ($paladin == $l) {
$paladin = "<b><font color='yellow'>$paladinslots Slots Left</font></b>";
}
else{
$paladin = "<b><font color='red'>Closed</font></b>";
}
if ($priest ==$r){
$priest= "<b><font color='green'>Open</font></b>";
}
elseif ($priest == $l) {
$priest = "<b><font color='yellow'>$priestslots Slots Left</font></b>";
}
else{
$priest = "<b><font color='red'>Closed</font></b>";
}
if ($rogue ==$r){
$rogue = "<b><font color='green'>Open</font></b>";
}
elseif ($rogue == $l) {
$rogue = "<b><font color='yellow'>$rogueslots Slots Left</font></b>";
}
else{
$rogue = "<b><font color='red'>Closed</font></b>";
}
if ($shaman ==$r){
$shaman = "<b><font color='green'>Open</font></b>";
}
elseif ($shaman == $l) {
$shaman = "<b><font color='yellow'>$shamanslots Slots Left</font></b>";
}
else{
$shaman = "<b><font color='red'>Closed</font></b>";
}
if ($warlock ==$r){
$warlock = "<b><font color='green'>Open</font></b>";
}
elseif ($warlock == $l) {
$warlock = "<b><font color='yellow'>$warlockslots Slots Left</font></b>";
}
else{
$warlock= "<b><font color='red'>Closed</font></b>";
}
if ($warrior ==$r){
$warrior = "<b><font color='green'>Open</font></b>";
}
elseif ($warrior == $l) {
$warrior = "<b><font color='yellow'>$warriorslots Slots Left</font></b>";
}
else{
$warrior = "<b><font color='red'>Closed</font></b>";
}
// Code END and HTML output start
echo '
<TABLE class = "bordercolor" cellSpacing="0" cellPadding="1" width="100%" border="0">
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow_rct_img/druid_icon.gif"></td>
<td class = "center">Druid</td>
<td class = "right">'.$druid.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center" width = "25px"><img src = "wow_rct_img/hunter_icon.gif"></td>
<td class = "center">Hunter</td>
<td class = "right">'.$hunter.'</td>
</tr>
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow_rct_img/mage_icon.gif"></td>
<td class = "center">Mage</td>
<td class = "right">'.$mage.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center" width = "25px"><img src = "wow_rct_img/paladin_icon.gif"></td>
<td class = "center">Paladin</td>
<td class = "right">'.$paladin.'</td>
</tr>
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow_rct_img/priest_icon.gif"></td>
<td class = "center">Priest</td>
<td class = "right">'.$priest.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center" width = "25px"><img src = "wow_rct_img/rogue_icon.gif"></td>
<td class = "center">Rogue</td>
<td class = "right">'.$rogue.'</td>
</tr>
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow_rct_img/shaman_icon.gif"></td>
<td class = "center">Shaman</td>
<td class = "right">'.$shaman.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center" width = "25px"><img src = "wow_rct_img/warlock_icon.gif"></td>
<td class = "center">Warlock</td>
<td class = "right">'.$warlock.'</td>
</tr>
<tr class = "windowbg">
<td class = "center" width = "25px"><img src = "wow_rct_img/warrior_icon.gif"></td>
<td class = "center">Warrior</td>
<td class = "right">'.$warrior.'</td>
</tr>
<tr class = "windowbg2">
<td align = "center" colspan = "3"><a href = '.$address.'>Apply Here</a></td>
</tr>
</table></body>
';
?>
can you still get this because the link is dead?
I think it's this one: http://www.sharky-web.com/downloads.php?cat_id=2&download_id=5
This was actually very easy to modify, I am no coder by any means but even I managed to customise this for use on a Lord of the Rings Online site:
$guardian ="limited";
$hunter ="open";
$minstrel ="";
$champion ="open";
$captain ="limited";
$burglar ="";
$loremaster ="";
$guardianslots="4";
$hunterslots="";
$minstrelslots="";
$championslots="";
$captainslots="1";
$burglarslots="";
$loremasterslots="";
$address = "http://pk.afterthebattle.co.uk/index.php/board,2.0.html";
echo '
<head>
<style type="text/css">
td.center
{
text-align: left;
vertical-align: middle
}
td.right
{
text-align: right;
vertical-align: middle
}
</style>
</head>
<body>
';
// Code START
$r = "open";
$l = "limited";
if ($guardian == $r){
$guardian = "<b><font face ='Verdana' size='1' color='green'>Open</font></b>";
}
elseif ($guardian == $l) {
$guardian = "<b><font face ='Verdana' size='1' color='blue'>$guardianslots Slots Left</font></b>";
}
else{
$guardian = "<b><font face ='Verdana' size='1' color='red'>Closed</font></b>";
}
if ($hunter ==$r){
$hunter = "<b><font face ='Verdana' size='1' color='green'>Open</font></b>";
}
elseif ($hunter == $l) {
$hunter = "<b><font face ='Verdana' size='1' color='blue'>$hunterslots Slots Left</font></b>";
}
else{
$hunter = "<b><font face ='Verdana' size='1' color='red'>Closed</font></b>";
}
if ($minstrel ==$r){
$minstrel = "<b><font face ='Verdana' size='1' color='green'>Open</font></b>";
}
elseif ($minstrel == $l) {
$minstrel = "<b><font face ='Verdana' size='1' color='blue'>$minstrelslots Slots Left</font></b>";
}
else{
$minstrel = "<b><font face ='Verdana' size='1' color='red'>Closed</font></b>";
}
if ($champion ==$r){
$champion = "<b><font face ='Verdana' size='1' color='green'>Open</font></b>";
}
elseif ($champion == $l) {
$champion = "<b><font face ='Verdana' size='1' color='blue'>$championslots Slots Left</font></b>";
}
else{
$champion = "<b><font face ='Verdana' size='1' color='red'>Closed</font></b>";
}
if ($captain ==$r){
$captain= "<b><font face ='Verdana' size='1' color='green'>Open</font></b>";
}
elseif ($captain == $l) {
$captain = "<b><font face ='Verdana' size='1' color='blue'>$captainslots Slots Left</font></b>";
}
else{
$captain = "<b><font face ='Verdana' size='1' color='red'>Closed</font></b>";
}
if ($burglar ==$r){
$burglar = "<b><font face ='Verdana' size='1' color='green'>Open</font></b>";
}
elseif ($burglar == $l) {
$burglar = "<b><font face ='Verdana' size='1' color='blue'>$burglarslots Slots Left</font></b>";
}
else{
$burglar = "<b><font face ='Verdana' size='1' color='red'>Closed</font></b>";
}
if ($loremaster ==$r){
$loremaster = "<b><font face ='Verdana' size='1' color='green'>Open</font></b>";
}
elseif ($loremaster == $l) {
$loremaster = "<b><font face ='Verdana' size='1' color='blue'>$loremasterslots Slots Left</font></b>";
}
else{
$loremaster = "<b><font face ='Verdana' size='1' color='red'>Closed</font></b>";
}
// Code END and HTML output start
echo '
<TABLE class = "bordercolor" cellSpacing="0" cellPadding="1" width="100%" border="0">
<tr class = "windowbg">
<td class = "center"><font face="Verdana" size="1">Guardian</font></td>
<td class = "right">'.$guardian.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center"><font face="Verdana" size="1">Hunter</font></td>
<td class = "right">'.$hunter.'</td>
</tr>
<tr class = "windowbg">
<td class = "center"><font face="Verdana" size="1">Minstrel</font></td>
<td class = "right">'.$minstrel.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center"><font face="Verdana" size="1">Champion</font></td>
<td class = "right">'.$champion.'</td>
</tr>
<tr class = "windowbg">
<td class = "center"><font face="Verdana" size="1">Captain</font></td>
<td class = "right">'.$captain.'</td>
</tr>
<tr class = "windowbg2">
<td class = "center"><font face="Verdana" size="1">Burglar</font></td>
<td class = "right">'.$burglar.'</td>
</tr>
<tr class = "windowbg">
<td class = "center"><font face="Verdana" size="1">Lore-master</font></td>
<td class = "right">'.$loremaster.'</td>
</tr>
<tr class = "windowbg2">
<td align = "center" colspan = "2"><a href = '.$address.'><font face="Verdana" size="1">Apply Here</a></font></td>
</tr>
</table></body>
';
Nice and easy. :)
This looked too cool not to put on my site. Looks very easily customizeable so its inactive now until I can think of a use for it.
Fixed the issue so it's "proper" English in case anyone's interested. Was a slight order or operations error I made!
if ($druid == $r){
$druid = "<b><font color='green'>Open</font></b>";
}
elseif ($druid == $l && $druidslots == 1) {
$druid = "<b><font color='yellow'>$druidslots Slot Left</font></b>";
}
elseif ($druid == $l) {
$druid = "<b><font color='yellow'>$druidslots Slots Left</font></b>";
}
else{
$druid = "<b><font color='red'>Closed</font></b>";
}
changed them all Bloodlvst
if ($druid == $r){
$druid = "<b><font color='green'>Open</font></b>";
}
elseif ($druid == $l && $druidslots == 1) {
$druid = "<b><font color='yellow'>$druidslots Slot Left</font></b>";
}
elseif ($druid == $l) {
$druid = "<b><font color='yellow'>$druidslots Slots Left</font></b>";
}
else{
$druid = "<b><font color='red'>Closed</font></b>";
}
if ($hunter ==$r){
$hunter = "<b><font color='green'>Open</font></b>";
}
elseif ($hunter == $l && $hunterslots == 1) {
$hunter = "<b><font color='yellow'>$hunterslots Slot Left</font></b>";
}
elseif ($hunter == $l) {
$hunter = "<b><font color='yellow'>$hunterslots Slots Left</font></b>";
}
else{
$hunter = "<b><font color='red'>Closed</font></b>";
}
if ($mage ==$r){
$mage = "<b><font color='green'>Open</font></b>";
}
elseif ($mage == $l && $mageslots == 1) {
$mage = "<b><font color='yellow'>$mageslots Slot Left</font></b>";
}
elseif ($mage == $l) {
$mage = "<b><font color='yellow'>$mageslots Slots Left</font></b>";
}
else{
$mage = "<b><font color='red'>Closed</font></b>";
}
if ($paladin ==$r){
$paladin = "<b><font color='green'>Open</font></b>";
}
elseif ($paladin == $l && $paladinslots == 1) {
$paladin = "<b><font color='yellow'>$paladinslots Slot Left</font></b>";
}
elseif ($paladin == $l) {
$paladin = "<b><font color='yellow'>$paladinslots Slots Left</font></b>";
}
else{
$paladin = "<b><font color='red'>Closed</font></b>";
}
if ($priest ==$r){
$priest= "<b><font color='green'>Open</font></b>";
}
elseif ($priest == $l && $priestslots == 1) {
$priest = "<b><font color='yellow'>$priestslots Slot Left</font></b>";
}
elseif ($priest == $l) {
$priest = "<b><font color='yellow'>$priestslots Slots Left</font></b>";
}
else{
$priest = "<b><font color='red'>Closed</font></b>";
}
if ($rogue ==$r){
$rogue = "<b><font color='green'>Open</font></b>";
}
elseif ($rogue == $l && $rogueslots == 1) {
$rogue = "<b><font color='yellow'>$rogueslots Slot Left</font></b>";
}
elseif ($rogue == $l) {
$rogue = "<b><font color='yellow'>$rogueslots Slots Left</font></b>";
}
else{
$rogue = "<b><font color='red'>Closed</font></b>";
}
if ($shaman ==$r){
$shaman = "<b><font color='green'>Open</font></b>";
}
elseif ($shaman == $l && $shamanslots == 1) {
$shaman = "<b><font color='yellow'>$shamanslots Slot Left</font></b>";
}
elseif ($shaman == $l) {
$shaman = "<b><font color='yellow'>$shamanslots Slots Left</font></b>";
}
else{
$shaman = "<b><font color='red'>Closed</font></b>";
}
if ($warlock ==$r){
$warlock = "<b><font color='green'>Open</font></b>";
}
elseif ($warlock == $l && $warlockslots == 1) {
$warlock = "<b><font color='yellow'>$warlockslots Slot Left</font></b>";
}
elseif ($warlock == $l) {
$warlock = "<b><font color='yellow'>$warlockslots Slots Left</font></b>";
}
else{
$warlock= "<b><font color='red'>Closed</font></b>";
}
if ($warrior ==$r){
$warrior = "<b><font color='green'>Open</font></b>";
}
elseif ($warrior == $l && $warriorslots == 1) {
$warrior = "<b><font color='yellow'>$warriorslots Slot Left</font></b>";
}
elseif ($warrior == $l) {
$warrior = "<b><font color='yellow'>$warriorslots Slots Left</font></b>";
}
else{
$warrior = "<b><font color='red'>Closed</font></b>";
}
only problem I am having is for the images to show up. I've changed the src to everything I can think of to match my situation, yet the images won't show. The folder all the .gif's are in is called wowpanel and it's in the home directory.
www.frown-guild.org
I think you need to move the folder to your forum directory for it to work
thought I tried that already, guess not. A little sleep goes a long way :P
Quote from: baller1308 on October 03, 2007, 05:11:12 AM
changed them all Bloodlvst
only problem I am having is for the images to show up. I've changed the src to everything I can think of to match my situation, yet the images won't show. The folder all the .gif's are in is called wowpanel and it's in the home directory.
www.frown-guild.org
Glad I could help out! :)
Russian translation for this block. Don't forget to change $address string.
$druid ="o";
$hunter ="o";
$mage ="o";
$priest ="o";
$rogue ="o";
$shaman ="o";
$warlock ="o";
$warrior ="o";
$paladin ="o";
$address = "http://guild-horde.ru/index.php?board=4.0";
$r = "o";
if ($druid ==$r){
$druid = "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$druid = "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
if ($hunter ==$r){
$hunter = "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$hunter = "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
if ($mage ==$r){
$mage = "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$mage = "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
if ($priest ==$r){
$priest= "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$priest = "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
if ($rogue ==$r){
$rogue = "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$rogue = "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
if ($shaman ==$r){
$shaman = "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$shaman = "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
if ($warlock ==$r){
$warlock = "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$warlock= "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
if ($warrior ==$r){
$warrior = "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$warrior = "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
if ($paladin ==$r){
$paladin = "<b><font color='green'>ÞÃ'‚úÃ'â,¬Ã'‹Ã'‚</font></b>";
}
else{
$paladin = "<b><font color='red'>Ãâ€"ðúÃ'â,¬Ã'‹Ã'‚</font></b>";
}
echo"
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/druid_icon.gif'> Ãâ€Ã'â,¬Ã'Æ'øô</td>
<td valign='bottom'>".$druid."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/hunter_icon.gif'> ÞÃ'…þÃ'‚ýøú</td>
<td valign='bottom'>".$hunter."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%'><img src='wow/mage_icon.gif'> ÃÅ"ðó</td>
<td valign='bottom'>".$mage."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/priest_icon.gif'> Ãâ€"Ã'â,¬ÃµÃ'†</td>
<td valign='bottom'>".$priest."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/rogue_icon.gif'> àð÷ñþùýøú</td>
<td valign='bottom'>".$rogue."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow//shaman_icon.gif'> èðüðý</td>
<td valign='bottom'>".$shaman."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/warlock_icon.gif'> çõÃ'â,¬Ã½Ã¾ÃºÃ½Ã¸Ã¶Ã½Ã¸Ãº</td>
<td valign='bottom'>".$warlock."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/warrior_icon.gif'> Òþøý</td>
<td valign='bottom'>".$warrior."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td width = '70%' ><img src='wow/paladin_icon.gif'> ßðûðôøý</td>
<td valign='bottom'>".$paladin."</td>
<td width = '10%'></td>
</tr>
</table>
<table width='100%' height='8'>
<tr>
<td>
<br><font color='red'><div align='center'><a href='".$address."'> Ãâ€"ðÃ'ÂòúÃ'Æ' üþöýþ þÃ'ÂÃ'‚ðòøÃ'‚Ã'Å' ÷ôõÃ'ÂÃ'Å'</a><br></div></font>
</td>
</tr>
</table>
";
sorry for my english