• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

End line with with doSetItemText

Tarielle

New Member
Joined
Nov 4, 2007
Messages
214
Reaction score
0
Location
Sweden
Hi

How can I end line with
Code:
doSetItemText(item,"text text")
so the text and text appears above and under each other like pressing the return key between them..

Like this:
Code:
text
text

Thanks
 
Thanks, but I cant test it because it doesn't even work without the line thing function..

Do you maybe know how to make a NPC give a item and then use the doSetItemText?

Here's mine:
Code:
elseif msgcontains(msg, 'text') then
selfSay("text")
item = doPlayerAddItem(cid,2597,1)
doSetItemText(item,[[text]])
 
Back
Top