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

Where can i find Tutorial hint? Rep+++

Printer

if Printer then print("LUA") end
Senator
Premium User
Joined
Dec 27, 2009
Messages
5,780
Solutions
31
Reaction score
2,299
Location
Sweden?
Where can i find the tutorial hint: Tibia.dat, Tibia.spr or Tibia.pic ?

Please create a script too! when the player walk on tile with actionid 2001 the image will apear!

Example:


Rep+++
 
Tibia.pic

XML:
<movevent type="StepIn" actionid="2001" event="script" value="scriptname.lua"/>
LUA:
function onStepIn(cid, item, position, fromPosition)
	if isPlayer(cid) and getCreatureStorage(cid, 2001) == -1 then
		doPlayerSendTutorial(cid, 1)
		doCreatureSetStorage(cid, 2001, 1)
	end
end
 
Back
Top