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

Block Utevo Res for CMs/GMs/Gods.

GuHB

Member
Joined
Dec 14, 2009
Messages
630
Reaction score
9
Location
Brazil
I need to block the spell "utevo Res" for CMs/GMs/GODs.

Its possible?
 
Code:
<talkaction words="utevo res" script="script.lua"/>

Code:
function onSay(cid, words, param, channel)
	if getPlayerAccess(cid) > 4 then
		return doPlayerSendCancel(cid, "You cannot use this spell.")
	end
	
	return true
end
 
Last edited:
No, the spell called 'utevo res'.

For exemple, utevo res "minotaur

The CMs/GMs get this spell and can summon without spent mana.

How can i block all spells from acess > 3 ?!?!
 
Last edited:
function onSay(cid, words, param, channel)
if getPlayerAccess(cid) > 3 then
return doPlayerSendCancel(cid, "You cannot use this spell.")
end

return true

?? XP
end
 
Back
Top