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

Solved Question about Blackboard

nevix

Tunzodus.net
Joined
Mar 31, 2010
Messages
356
Reaction score
62
Location
Lithuanian
How to put text into Blackboard? I mean i wanna do eg:

Talkactions:

!board

and it show my text in window. Hope so you guys understand me

Guys come on :/
 
Last edited by a moderator:
Like this?
qUkchaqU.png

Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
     local player = Player(cid)
     player:showTextDialog(item.itemid, "Talkactions:\n\n!board")
     return true
end
 
Back
Top