• 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!
  • New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore.

TalkAction Info command

DestinationSer

@echo off
Joined
Mar 7, 2009
Messages
2,806
Solutions
1
Reaction score
675
I was bored. sooo i just posted smth.

Code:
<talkaction words="!info" event="script" value="otherinfo.lua" />

Code:
function onSay(cid, words, param)
	str = "Server info\n\n"
	str = str.."Your text here\n"
	return doPlayerPopupFYI(cid, str)
end

Enjoy i guess :p
 
Back
Top Bottom