Pesquisar na Comunidade
Mostrando resultados para as tags ''como voltar na mesma city pvp''.
Encontrado 1 registro
-
dúvida [Encerrado] Pvp back para voltar na mesma city REP+
um tópico no fórum postou MaxxSilva Tópicos Sem Resposta
então eu tenho um script de pvpgo e pvpback e não sei usar direito , e queria perguntar se esse é o script ex : eu vou para cerulean e vou para o pvp ai eu vou no teleport pra volta e volto pra cerulean não pra saffron. REP + pff me ajudem queria muito entrar no pvp e voltar na mesma city que tava data/movements/script/pvpgo.lua s = { --[actionID do piso] = {storage} [33691] = {181778}, -- Cinnabar [33692] = {181779}, -- pewter [33693] = {181780}, -- cerulean [33694] = {181781}, -- saffron [33695] = {181782}, -- vermillion [33696] = {181783}, -- fuchsia [33697] = {181784}, -- viridian [33698] = {181785}, -- celadon [33700] = {181786}, -- pallet [33701] = {181787}, -- snow [33702] = {181788}, -- citytres [33703] = {181789}, -- cityquatro [33704] = {181790}, -- citycinco [33705] = {181791}, -- cityseis [33706] = {181792}, -- citysete [33707] = {181793}, -- cityoito [33708] = {181794}, -- lavender } local posi = {x=544, y=679, z=7} --posiçao do PvP... function onStepIn(cid, item, pos) if isSummon(cid) then return false end if #getCreatureSummons(cid) >= 1 then doTeleportThing(getCreatureSummons(cid)[1], {x=posi.x - 1, y=posi.y, z=posi.z}, false) doTeleportThing(cid, {x=posi.x, y=posi.y, z=posi.z}, false) setPlayerStorageValue(cid, s[item.actionid][1], 1) else doTeleportThing(cid, {x=posi.x, y=posi.y, z=posi.z}, false) setPlayerStorageValue(cid, s[item.actionid][1], 1) end return true end data/movements/script/pvpback.lua citys = { --[storage da city] = {posiçao do CP das citys} [181778] = {x=850,y=1405,z=7}, -- Cinnabar [181779] = {x=720,y=850,z=7}, -- pewter [181780] = {x=1060,y=903,z=7}, -- cerulean [181781] = {x=1054,y=1050,z=7}, -- saffron [181782] = {x=1078,y=1239,z=7}, -- vermillion [181783] = {x=1213,y=1325,z=7}, -- fuchsia [181784] = {x=708,y=1089,z=7}, -- viridian [181785] = {x=862,y=1097,z=6}, -- Celadon [181786] = {x=732,y=1195,z=6}, -- pallet [181787] = {x=1430,y=1602,z=6}, -- snow [181788] = {x=1824,y=840,z=7}, -- citytres [181789] = {x=1467,y=232,z=7}, -- cityquatro [181790] = {x=1247,y=247,z=7}, -- citycinco [181791] = {x=1232,y=111,z=7}, -- cityseis [181792] = {x=1780,y=1331,z=7}, -- citysete [181793] = {x=1999,y=1526,z=12}, -- cityoito [181794] = {x=1204,y=1045,z=7}, -- lavender } function onStepIn(cid, item, pos) if isSummon(cid) then return false end for i = 181778, 181794 do if getPlayerStorageValue(cid, i) == 1 then if #getCreatureSummons(cid) >= 1 then doTeleportThing(getCreatureSummons(cid)[1], {x=citys.x - 1, y=citys.y, z=citys.z}, false) doTeleportThing(cid, {x=citys.x, y=citys.y, z=citys.z}, false) setPlayerStorageValue(cid, i, 0) else doTeleportThing(cid, {x=citys.x, y=citys.y, z=citys.z}, false) setPlayerStorageValue(cid, i, 0) end end end return true end se eu colocar o action id no piso enbaixo do iconezinho do pvp funciona o script? me ajudem ai