Ir para conteúdo

Mana Rune Para Versão 7.9 E 7.92


General Sapo

Posts Recomendados

É simples !!

 

Basta criar um arquivo com o nome mfrune na pasta actions\scripts

 

Dps vc coloca isso aki lá dentro!

 

---- Mana rune by General Sapo --

function onUse(cid, item, frompos, item2, topos)

if item.itemid == 2275 and item.type >= 1 then

doPlayerAddMana(cid,350)

doChangeTypeItem(item.uid,item.type-1)

doSendMagicEffect(topos,12)

doPlayerSay(cid,"Aaaaahh",25)

else

doRemoveItem(item.uid,1)

end

return 1

end --

 

Dps vai em actions e abra actions.xml e coloke isso aki :

 

<action itemid="2275" script="mfrune.lua" />

 

Já Era!!!

 

O ID da runa é 2275 !!

 

Todos os créditos são meus!!

Link para o comentário
Compartilhar em outros sites

  • 4 weeks later...
  • 1 month later...
  • 2 weeks later...
lol? quando eu vo usa ah runa da debug -.-' posta coisa serta ae xD

 

Hihow...

Tem uma manarune aki com random dependendo do lvl e ml do player...

Testado em 7.6 e funciono certinho...

Script Retirado do Link : http://www.xtibia.com/forum/index.php?show...amp;hl=manarune

Caicheiro Foi Quem Postou o Script...

function onUse(cid, item, frompos, item2, topos)

playerpos = {x=topos.x, y=topos.y, z=topos.z, stackpos=253}

player = getThingfromPos(playerpos)

ml = getPlayerMagLevel(cid)

lvl = getPlayerLevel(cid)

formula = math.random(((lvl+ml)*4)-(lvl-ml))

if item2.itemid == 1 and ml >= 2 then

doSendMagicEffect(playerpos,1)

doPlayerAddMana(player.uid,formula)

doSendAnimatedText(topos,"Macro=Ban!!",25)

if item.type > 1 then

doChangeTypeItem(item.uid,item.type-1)

else

doRemoveItem(item.uid,1)

end

end

if item2.itemid == 1 and ml <= 1 then

doSendMagicEffect(frompos,2)

doPlayerSendCancel(cid,"You dont Have Magic Level to use this rune.")

end

if item2.itemid >= 2 then

doPlayerSendCancel(cid,"You can only use this rune in you or in players.")

doSendMAgicEffect(frompos,2)

end

return 1

end

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

  • 4 weeks later...
×
×
  • Criar Novo...