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

Kick Player lvl 8 by talkaction

djtuca

Technical Support
Joined
Jun 25, 2011
Messages
198
Reaction score
3
Location
Brazil
Hello,

would be possible to create a talkaction kick all players equal to or below level 8?

thanks
 
PHP:
function onSay(cid, words, param, channel)
	for _, cid in ipairs(getPlayersOnline()) do
		if (getPlayerLevel(cid) <= 8) then
			doRemoveCreature(cid)
		end
	end
	return true
end

should work
 
Back
Top