• 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 text on position how ?

Mauzim

Member
Joined
Jan 3, 2011
Messages
568
Reaction score
9
i need help how make text liek doCreatureSay to position

doCreatureSay({x=, y=, z=7}, 'text', TALKTYPE_ORANGE_1)
thats not working

ahh and don't like doSendAnimatedText because i need TALKTYPE_ORANGE_1 not animated


//got it !doCreatureSay(cid, "pre", TALKTYPE_ORANGE_1, false, cid, {x=, y=, z=7})
 
Last edited:
try to register the "position" before your script ...

example::
Code:
local config = {
        pos = 998, 1000, 7
}

doCreatureSay(config.pos, "Hello", TALKTYPE_ORANGE_1)
 
Back
Top