TibiaGameHost
Hello!
i have this script for chage vocation VIPs
I do not know if it is possible to use it to make the change GroupID.
Place where VIP GROUPID and take over.
I use VIP System by Mock
function onLogin(cid)
if vip.hasVip(cid) == TRUE then
if(isInArray({1, 2, 3, 4}, getPlayerVocation(cid))) then
doPlayerSetVocation(cid,getPlayerVocation(cid)+12)
end
elseif vip.hasVip(cid) == FALSE and vip.getVip(cid) == 0 then
if(isInArray({13, 14, 15, 16}, getPlayerVocation(cid))) then
doPlayerSetVocation(cid,getPlayerVocation(cid)-12)
end
end
return TRUE
end
I do not know if it is possible to use it to make the change GroupID.
Place where VIP GROUPID and take over.
I use VIP System by Mock