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

TalkAction param

kennedyot

New Member
Joined
Mar 9, 2013
Messages
3
Reaction score
0
Do talkactions support params?

This simple method doesn't work unless I only type the talkaction, if I put a space or anything after it is doesn't get called.

Code:
function onSay(cid, words, param)
	if isPlayer(cid) == TRUE and getPlayerAccess(cid) > 0 then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Param: " .. param)
	end
end
 
Back
Top