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

Milice

Nutjob
Joined
Oct 4, 2008
Messages
954
Solutions
2
Reaction score
157
Location
Sverige ;D
Hello, i have this script that works correctly but if player doesn't write a param i get an error in the console, can someone make me just a simple script that does when player doesn't write a param nothing happens.. thanks
 
Code:
function onSay(cid, words, param, channel)
	if param == '' then
		return true
	end

	-- rest of the code ..
 
Back
Top