Histórico de Curtidas
-
kurebao deu reputação a luanluciano93 em Impossivel remover itens no SHOP do Gesior 2012qual website você usa?
-
kurebao deu reputação a Tricoder em (Resolvido)Porta com level<action uniqueid="10093" script="vocdoor_druid.lua" /> function onUse(cid, item, frompos, item2, topos) if item.uid == 10093 then if getPlayerVocation(cid) == 2 or getPlayerVocation(cid) == 6 then doPlayerSendTextMessage(cid, 22, "You can pass, you are a Druid.") pos = getPlayerPosition(cid) if pos.x == topos.x then if pos.y < topos.y then pos.y = topos.y + 1 else pos.y = topos.y - 1 end elseif pos.y == topos.y then if pos.x < topos.x then pos.x = topos.x + 1 else pos.x = topos.x - 1 end else doPlayerSendTextMessage(cid,22,'Please stand in front of the door.') return 1 end doTeleportThing(cid,pos) doSendMagicEffect(topos,12) else doPlayerSendTextMessage(cid,22,'You can\'t pass, you aren\'t a Druid.') end return 1 else return 0 end end
-
kurebao deu reputação a vankk em (Resolvido)Porta com levellocal pos = {x=995, y=1000, z=9} -- posicao aonde o player sera teletransportado local position = getCreaturePosition(cid) function onUse(cid, item, fromPosition, itemEx, toPosition) if(item.actionID== 1228) then if getplayervocation(cid) == 1 or getplayervocation(cid) == 5 then doTeleportThing(cid, pos) doSendMagicEffect(position, math.random(1, 67) else doPlayerSendTextMessage(cid, 22, "APENAS VOCATION X PASSA AQUI") end return TRUE end end