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

Szukam posag ktory pokazuje lvl gracza

dejwidmr

New Member
Joined
Jul 29, 2010
Messages
7
Reaction score
0
Szukam skryptu który polega na tym że jeżeli dany gracz dotknie posągu który stoi w miescie to pokazuje ci najlepszych graczy na serwie [Kine/sorka/druta/palla] po 1.
 
Lua:
<?xml version="1.0" encoding="UTF-8"?><mod name="Highscore book" version="1.0" author="The Forgotten Server" contact="otland.net" enabled="yes">
	<action itemid="1981" event="buffer"><![CDATA[
		if(item.actionid >= 150 and item.actionid <= 158) then
			doShowTextDialog(cid, item.itemid, getHighscoreString((item.actionid - 150)))
		else
			_result = false
		end
	]]></action>
	<item id="1981" article="a" name="highscore book" override="yes"/>
</mod>
Wystarczy sobie przerobić =).
 
Back
Top