- 0
suporte scripts [TFS 0.4] Alguém edita essa script de !pvp on e !pvp off ? Por Favor
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.
-
Conteúdo Similar
-
- 0 respostas
- 940 visualizações
-
- 4 respostas
- 1495 visualizações
-
- 3 respostas
- 1331 visualizações
-
- 0 respostas
- 1183 visualizações
-
- 3 respostas
- 1288 visualizações
-
Pergunta
Wase Wiss 12
Eae Galera blz ? Eu queria pedir a ajuda de vocês para editar essa script para min, o erro que está dando é que os comando ta indo ao contrario, eu falo !pvp on, desativa, falo !pvp off ativa, será que alguém poderia min ajuda por favor ? desde já, obrigado.
Creaturescript:
function onCombat(cid, target) if isPlayer(cid) and isPlayer(target) then if getPlayerStorageValue(cid, 123456) == 1 then return false end end return trueendfunction onTarget(cid,target) if isPlayer(cid) and isPlayer(target) then if getPlayerStorageValue(cid,123456) == 1 then doPlayerSendCancel(cid, "Reative o PVP para atacar um jogador.") return false end end return trueendfunction onLogin(cid) registerCreatureEvent(cid, "PVPTarget") registerCreatureEvent(cid, "PVPCombat") return trueend
.xml :
talkactions:
function onSay(cid, words, param, channel) if param == "" then return doPlayerSendCancel(cid, "Escolha se quer deixar o PVP on ou off.") end if isInArray({"on","off"}, param) then local value = param == "on" and 1 or 0 local status = param == "on" and "ativou" or "desativou" doPlayerSetStorageValue(cid, 123456, value) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você "..status.." o PVP.") else doPlayerSendCancel(cid, "Escolha se quer deixar o PVP on ou off.") end return trueend
Tag:
<talkaction words="!pvp" event="script" value="pvpsystem.lua"/>
Link para o comentário
Compartilhar em outros sites
3 respostass a esta questão
Posts Recomendados