• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Guild war on website

Rivao

New Member
Joined
Mar 2, 2010
Messages
58
Reaction score
0
I installed this: war system.
But in website it didnt show the option of guild wars.
I did all the things on the tutorial, any idea how to put it?
 
Last edited:
didnt show the option of guild wars? what does that mean?
u declare wars in-game /war-invite and then the decleared wars are shown via wars.php
 
Right spice, i mean it isnt a link on website to see guild Wars.
You said i need to add it on layout, someone know how?
 
kk first go to xampp/htdocs/index.php
ctrl+f "guilds"
Paste this under.
PHP:
	    case "wars";
        $subtopic = "wars";
        $topic = "Wars";
        include("wars.php");
    break;

Then go to xampp/htdocs/layouts/your layout folder/layout.php
ctrl+f "guilds"
and paste this under it.
PHP:
<a href='index.php?subtopic=wars'>
  <div id='submenu_wars' class='Submenuitem' onMouseOver='MouseOverSubmenuItem(this)' onMouseOut='MouseOutSubmenuItem(this)'>
    <div class='LeftChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
    <div id='ActiveSubmenuItemIcon_wars' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
    <div class='SubmenuitemLabel'><font color="lime">Guild Wars</font></div>
    <div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
  </div>
</a>
 
Back
Top