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

DoCreatureSay

SasirO

Banned User
Joined
Apr 30, 2009
Messages
559
Reaction score
0
I need a simple script, so if a player stepin on a certain tile then a message appears on pos x,y,z
 
doCreatureSay(cid, text, type[, pos])

Code:
function onStepIn(cid, item, pos)
	doCreatureSay(cid, "Blah, blah!", TALKTYPE_SAY, {x = , y = , z =})
	return TRUE
end
 
Back
Top