-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.
-
Conteúdo Similar
-
- 2 respostas
- 713 visualizações
-
- 13 respostas
- 11560 visualizações
-
- 0 respostas
- 1632 visualizações
-
- 20 respostas
- 11253 visualizações
-
- 39 respostas
- 14300 visualizações
-
Pergunta
nbb147 6
E ai galera, esses dias eu estava tentando fazer um script que o pessoal procura muito que é o famoso sistema de saga, que consiste no seguinte, o player só pode atacar e ser atacado por uma devida criatura se possuir certa storage caso contrario a criatura não ira se mover, bom, consegui fazer quase tudo em lua, só que existe um pequeno problema, que é o seguinte, esse problema está na parte que retorna a speed da criatura, a speed não retorna, tudo funciona corretamente exceto essa parte, peça a ajuda de vocês e agradeço desde já, script:
local name, storage = 'fire devil', 11112local sto = 800000local speedchange = 0function onAttack(cid, target)if isMonster(cid) and getCreatureName(cid):lower() == name and isPlayer(target) and getCreatureStorage(target, storage) < 0 thensetPlayerStorageValue(cid, sto, getCreatureSpeed(cid))doChangeSpeed(cid, -getCreatureSpeed(cid))doChangeSpeed(cid, speedchange)return falseendif isMonster(cid) and getCreatureName(cid):lower() == name and isPlayer(target) and getCreatureStorage(target, storage) > 1 then -- O ERRO PERTENCE A ESSA PARTEdoChangeSpeed(cid, -getCreatureSpeed(cid))local oldspeed = getPlayerStorageValue(cid, sto) == -1 and getCreatureBaseSpeed(cid) or getPlayerStorageValue(cid, sto)doChangeSpeed(cid, oldspeed)return false -- O PROBLEMA ESTA AQUIendreturn trueendfunction onCombat(cid, target)if isPlayer(cid) and getCreatureStorage(cid, storage) < 0 and isMonster(target) and getCreatureName(target):lower() == name thendoPlayerSendCancel(cid, 'You cannot attack this monster.')return falseend if isMonster(cid) and getCreatureName(cid):lower() == name and isPlayer(target) and getCreatureStorage(target, storage) < 0 thenreturn falseendreturn trueendfunction onKill(cid, target, lastHit)if isMonster(target) and getCreatureName(target):lower() == name and isPlayer(cid) and getCreatureStorage(cid, storage) > 0 thendoCreatureSetStorage(cid, storage, -1)endreturn trueend
Link para o comentário
Compartilhar em outros sites
Top Posters For This Question
26
23
1
1
Popular Days
Ago 1
14
Jul 31
10
Ago 2
6
Jul 29
6
Top Posters For This Question
nbb147 26 posts
Poccnn 23 posts
Eventide 1 post
ricardo231 1 post
Popular Days
Ago 1 2016
14 posts
Jul 31 2016
10 posts
Ago 2 2016
6 posts
Jul 29 2016
6 posts
Popular Posts
Poccnn
Essas duas funcoes no meu servidor nao funcionam com monstros, apenas em players. Mas como voce tinha dito anteriormente, que a funçao speedchange funcionava em monstros, entao pedi para ser feita a
Poccnn
@nbb147 Eu estava tentando implementar esse sistema em meu ot e fiquei pu** por nao conseguir manter o monstro parado, entao percebi que a função speedchange modifica a velocidade acescentando va
Posted Images
50 respostass a esta questão
Posts Recomendados