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

GSP for Custom Voc

zerghel

Tsuni
Joined
Jul 1, 2008
Messages
299
Reaction score
9
Hello i was wondering if you can make the Great Spirit Potion to Work with my Custom vocation Epic Sniper(11) wich is the second promotion for paladins there is something about "IsPaladin" in the script

Thanks in Advance
 
if getPlayerVocation(cid) == 11 then

- the script -

or you can change in lib/function.lua

function isEpicsniper(cid)
if(isPlayer(cid) == FALSE) then
debugPrint("isEpicsniper: Player not found.")
return false
end

return (isInArray({11}, getPlayerVocation(cid)) == TRUE)
end
 
Last edited:
Back
Top