Oi pessoal queria saber se com um script do skyligh o teleport vip com outift pode por para usar so em um certo lvl ?
script
function onUse(cid, item, frompos, item2, topos)
local cobrar = "sim" -- Se vai cobrar ou nao
local outfit = {lookType = 342} -- Outift que o player ficara
local price = 10 -- Quanto vai cobrar se tiver ativado
local pos = {x=7, y=7, z=7} -- Pos que o player vai ser teleportado
if doSetCreatureOutfit(cid, outfit, time*1000) then
doTeleportThing(cid, pos)
doPlayerSendTextMessage(cid, 23, "Parabéns Você Foi Teleportado.")
return TRUE
end
if cobrar == "sim" and not doPlayerRemoveMoney(cid,tonumber(price)) then
doPlayerSendTextMessage(cid, 23, "Você Nao Tem Dinheiro Suficiente")
end
return TRUE
end