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

[Help] Char infos !

already done everything, 100% by me, i've some skill...don't need to copy...

and where otlands have thoses scripts? tell me please ._.

i've made 2 functions in PHP, easy...

PHP:
function getPlayerStorageValue($cid, $value)

PHP:
function getPlayerSlotItem($cid, $slot)

kk?

I'm talking about the Tibia.spr parser, http://otland.net/images/items/ which you said you were using is not made by you I assume?
 
I'm talking about the Tibia.spr parser, http://otland.net/images/items/ which you said you were using is not made by you I assume?

OFC NO, lol...it take alot of time...what i havent...my patch "items"
have 1.031 .gifs

just get it with my way :)

if someone want...


itemimage.php
PHP:
<?PHP
 // by josejunior23
   if ($_GET['itemid'] == TRUE)
   {
	$itemimage = 'images/items/'.( $_GET['itemid'] ).'.gif'; // edit only "images/items/" AND REMOVE THE PART OF http://otland.net/
	$item = imageCreateFromGif ( $itemimage );
	header ( "Content-type: image/gif" );
	imageGif ( $item );
	}
	
?>
and here the patch ITEMS.

items.rar


"itemimage.php?itemid=2498" or "itemimage.php?itemid=ITEMID"
 
Last edited:
Back
Top