Ir para conteúdo
  • 0

Magia [Pula 3 Sqm]


SarioYana

Pergunta

Bom galera

esses tempos

andei num ot ai

e vi

a magia chamada dash ela pula 3 quadrinhos

sera q tem como faze ela

lembrando que ela nao passa em cima

de paredes

eu n queria habilita o /a

para os player

queria faze

essa magia

si alguem souber ajuda aii

Editado por Vilden
Link para o comentário
Compartilhar em outros sites

Posts Recomendados

  • 0

Se precisar de outro script tente este:

function isWalkable(position, cid)
    position.stackpos = 0
    if getTileThingByPos(position).uid ~= 0 then
		    local tile = getTileInfo(position)
		    if tile.protection == false and tile.house == false and getTopCreature(position).uid == 0 and doTileQueryAdd(cid, position) == RETURNVALUE_NOERROR then
				    return true
		    end
    end
    return false
end
function doDash(cid, distance)
local dir, fromPos, toPos = getCreatureLookDirection(cid), getThingPos(cid), getPosByDir(fromPos, dir)
if isWalkable(toPos) then
 doTeleportThing(cid, toPos, true)
 doSendMagicEffect(toPos, CONST_ME_TELEPORT)
end
if distance > 0 then
 return doDash(cid, distance-1)
end
return true
end

local distance = 3
function onCastSpell(cid, var)
if doDash(cid, distance) then return true end
end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...