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

Lua Send text message in a specific location.

kaleuui

New Member
Joined
Jan 6, 2021
Messages
22
Solutions
1
Reaction score
4
Greetings!

I've got a script of when I use an item a text pops up, but I want the text to pop up at a specific location. How do I add an location to doPlayerSendTextMessage()?
 
Solution
Greetings!

I've got a script of when I use an item a text pops up, but I want the text to pop up at a specific location. How do I add an location to doPlayerSendTextMessage()?
Lua:
doCreatureSay(uid, text[, type = SPEAK_SAY[, ghost = false[, cid = 0[, pos]]]])
example:
Lua:
doCreatureSay(cid, "Hello World", TALKTYPE_MONSTER_SAY, false, 0, {x=0, y=0, z=0})
Greetings!

I've got a script of when I use an item a text pops up, but I want the text to pop up at a specific location. How do I add an location to doPlayerSendTextMessage()?
Lua:
doCreatureSay(uid, text[, type = SPEAK_SAY[, ghost = false[, cid = 0[, pos]]]])
example:
Lua:
doCreatureSay(cid, "Hello World", TALKTYPE_MONSTER_SAY, false, 0, {x=0, y=0, z=0})
 
Solution
Back
Top