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

TFS 0.3.6 Player not found

TomBartezz

Member
Joined
May 29, 2016
Messages
159
Reaction score
17
Script
Code:
function onSay(player, words, param)
doShowTextDialog(player, 1950,
"Guide",
"Walk to the northwest gate to kill the demon skeleton",
"Then walk to the east gate and more monsters will spawn",
"Destroy the Orc boss in the southwest gate to obtain EXP!")
return true
end

ERROR:(luaDoShowTextDialog) Player not found
 
Code:
function onSay(cid, words, param)
doShowTextDialog(cid, 1950,
"Guide",
"Walk to the northwest gate to kill the demon skeleton",
"Then walk to the east gate and more monsters will spawn",
"Destroy the Orc boss in the southwest gate to obtain EXP!")
return true
end
This?
 
I'm 90% sure everything has to be on the same line.
Use \n as your enter key. left_to_right_slash (above your enter key)
Code:
function onSay(cid, words, param)
     doShowTextDialog(cid, 1950, "Guide\nWalk to the northwest gate to kill the demon skeleton\nThen walk to the east gate and more monsters will spawn\nDestroy the Orc boss in the southwest gate to obtain EXP!")
     return true
end
 
Thanks! It works now
I'm 90% sure everything has to be on the same line.
Use \n as your enter key. left_to_right_slash (above your enter key)
Code:
function onSay(cid, words, param)
     doShowTextDialog(cid, 1950, "Guide\nWalk to the northwest gate to kill the demon skeleton\nThen walk to the east gate and more monsters will spawn\nDestroy the Orc boss in the southwest gate to obtain EXP!")
     return true
end
 
Back
Top