• 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!

Configuration How To Create a

Erikas Kontenis

Board Moderator
Staff member
Board Moderator
Joined
Jul 3, 2009
Messages
1,864
Reaction score
567
Location
Lithuania
So here im creating First My Tutorial A php Tutorial How to create A tutorial In ur Site Or u can take other name.

part1fa.jpg


Lets Start First Get A Small Almost Blank PHP File Example TIbia Rules Copy It And Write Tutorial.php Or Other.php what u wannt but dont forget write .php

part2o.jpg


So Second. Create Ur Text What U wanted... My Text Was THis One.
PHP:
<?PHP
if($subtopic == "totorial") {
$main_content .= '<B>'.$config['server_name'].' <p align="center">How to join</p></B>';
}
$main_content .= '
<p align="left">
Hello.
<br/>
This is small tutorial how to join to this "ot" private server.
<br/>
<br/>
Here you can download tibia client 8.50 protocol from <a href="http://download.tibia.com/tibia850.exe">here</a>.
<br/>
<br/>
Now the second thing what you need is Tibia IP-changer, you can download it from <a href="http://otchanger.net/Files/IPChanger/ipchanger.zip">Here</a>.
<br/>
<center>
<img src="/img/1.png" width="500" height="300">
</center>
<br/>
<br/>
I think, I not must explain how to create account from site. You can do this <a href="http://lithuania-ot.sytes.net/?subtopic=createaccount">here</a>
<br/>
<br/>
So I hope you understand this part of tutorial.
Now you are in temple go little up and you will saw chest press to chest left mouse button and u will get 1cc = 10k
Its enought to fight with Tibia creatures in begginer position.
<br/>
<br/>
<center>
<img src="/img/2.png" width="500" height="300">
</center>
<br/>
Then you taked a chest go out from temple and run to west if you run some sqm to west you will saw depot.
Go to depot second floor little again west. And if you Going Right you will saw Tps 
<br/>
<center>
<img src="/img/3.png" width="500" height="300">
</center>
<br/>
Everything is thinked ;) are signs for NewComers just press right and left mouse buttons and you will get information in sign...
<br/>
<center>
<img src="/img/4.png" width="500" height="300">
</center>
<br/>
<br/>
I Hope us like This small tutorial and its usefull for you
<br/>
<right>
Kind regards,<br/>
Erikas.
</right>
                  <h3>Happy Playing !!!</h3>






</p>
';
if($subtopic == "totorial") {
$main_content .= '</TEXTAREA>';
}
?>

Are new ? dont know php command? i can explain.

Code:
<br/> -- [B]Its New Line Doing Same Action LIke keyboard enter button in .txt[/B]

Code:
<a href="http://download.tibia.com/tibia850.exe">here</a>. -- [B]This Teleporting U To Window Its hard to explain xex but it hiding a http://download.tibia.com/tibia850.exe In That link putting in ur text what u wanna. example i chosen >here< i hope u unterstand :)[/B]

Code:
<center>
<img src="/img/3.png" width="500" height="300">
</center> -- [B]That One Giving a Picture In Ur Site Window Choose Words Center = the picture will by in centre :D [/B]

So thoose 3 Was most important

So Third Thread What u need is find In ur htdocs Index.php
And Find
PHP:
case "tibiarules";
		$topic = "Server Rules";
		$subtopic = "tibiarules";
		include("tibiarules.php");
	break;

Then Down after tibiarules Copy This Text
PHP:
case "totorial";
		$topic = "Totorial";
		$subtopic = "totorial";
		include("totorial.php");
	break;

It Should By Like This
PHP:
case "tibiarules";
		$topic = "Server Rules";
		$subtopic = "tibiarules";
		include("tibiarules.php");
	break;

	case "totorial";
		$topic = "Totorial";
		$subtopic = "totorial";
		include("totorial.php");
	break;

if u doing that about what i writing so everything going good.

The Last THing Is Find Ur Layouts folder Goto Tibiacom or what ever its dont care name.

And Find A layout.php

Open IT :p

Now COpy This Text What Ever U wanna I was wanted the tutorial words was behind a Character so i maked behind it Copy That Text...

PHP:
<a href='?subtopic=totorial'>
  <div id='submenu_totorial' 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_whoisonline' class='ActiveSubmenuItemIcon' style='background-image:url(<?PHP echo $layout_name; ?>/images/menu/icon-activesubmenu.gif);'></div>
    <div class='SubmenuitemLabel'>Tutorial</div>
    <div class='RightChain' style='background-image:url(<?PHP echo $layout_name; ?>/images/general/chain.gif);'></div>
  </div>

I Hope U understand That And If Like It Rep++ me Feel Free To Do IT :)
 
Back
Top