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

npc - break between message

kacpersky

Mr. Brightside
Joined
Jan 25, 2009
Messages
499
Reaction score
3
helo how can i do a break like this:

selfSay('bla bla', cid)
break
selfSay('bla bla', cid)
break
selfSay('bla bla', cid)

break like 3 sec

thanks for answer !
 
btw
this
PHP:
doNPCTalkALot({"Message One...", "Message Two...", "Message 3...", "Last Message."}, 10000, cid)

can i write like this:
PHP:
doNPCTalkALot({"Message One...",
"Message Two...",
"Message 3...",
"Last Message."}, 10000, cid)

without any problems ? This way is more readable ;)
 
Back
Top