Thorn
Spriting since 2013
hii, well like i said, when a player that is not vip step in the tile of premium they get this message "tu no puedes pasar" that means you cannot enter, but they are not being pushed, so they can enter D:
here is my script of that (this happens now that i changed to mysql)
here is my script of that (this happens now that i changed to mysql)
Code:
function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor)
if(not isPremium(cid)) then
doPlayerSendCancel(cid,"Tu necesitas ser vip para entrar")
doTeleportThing(cid,(fromPosition.x ==0) and getPlayerMasterPos(cid) or fromPosition)
else
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Tu puedes pasar");
end
return true
end