Tudo que Tricoder postou
-
Lançar 'exura sio' em si mesmo se você for Druid. E 'exura vita' se você for um Sorcerer.
if $vocation == 'druid' then cast('exura sio "' .. $name) wait(300, 500) elseif $vocation == 'sorcerer' then cast('exura vita') wait(300, 500) end Créditos: windbotbr
-
Mostrar o nome da vocação do seu char abreviadamente ( 'NV', 'K', 'P', 'S' ou 'D' )
auto(200) listas($vocshort) Créditos: windbotbr
-
Usar "Exura ico" se você for um Knight. E 'Exura' se você for um Paladin.
if $voc == 2 then cast('exura ico') wait(300, 500) elseif $voc == 2 then cast('exura') wait(300, 500) end Créditos: windbotbr
-
Usar "Exura Vita" se você perder mais que 150 pontos hit de vida
auto(200) if $maxhp-$hp > 150 then cast('exura vita') wait(300, 500) end Créditos: windbotbr
-
Usar "Exura San" se você perde mais que 140 pontos hit de vida
auto(200) if $maxhp-$hp > 140 then cast('exura San') wait(300, 500) end Créditos: windbotbr
-
Usar "Exura Ico" se você perde mais que 100 pontos hit de vida
auto(200) if $maxhp-$hp > 100 then cast('exura ico') wait(300, 500) end Créditos: windbotbr
-
Pequeno error ao abrir TFS..
Vai nas sources, abre player.cpp e procura por: void Player::manageAccount Posta aqui.
-
Usar "Exura Gran Ico" se você perde mais que 170 pontos hit de vida
auto(200) if $maxhp-$hp > 170 then cast('exura gran ico') wait(300, 500) end Créditos: windbotbr
-
Usar "Exura Gran San" se você perde mais que 180 pontos hit de vida
auto(200) if $maxhp-$hp > 180 then cast('exura gran san') wait(300, 500) end Créditos: windbotbr
-
Usar "Exura San" caso esteja com menos de 60% de vida
auto(200) if $hppc < 60 then cast('exura san') wait(300, 500) end Créditos: windbotbr
-
Usar 'Exura' se a Vida estiver abaixo de 50 e com Mana acima de 20
auto(200) if $hp < 50 and $mp >= 20 then cast('exura') wait(300, 500) end Créditos: windbotbr
-
Usar 'Exura Gran' se a Vida estiver abaixo de 40 e com Mana acima de 70
auto(200) if $hp < 40 and $mp >= 70 then cast('exura gran') wait(300, 500) end Créditos: windbotbr
-
Usar 'Exura San' se a Vida estiver abaixo de 200 e com Mana acima de 160
auto(200) if $hp < 200 and $mp >= 160 then cast('exura san') wait(300, 500) end Créditos: windbotbr
-
Usar 'Exura Gran San' se a Vida estiver abaixo de 150 e com Mana acima de 210
auto(200) if $hp < 150 and $mp >= 210 then cast('exura gran san') wait(300, 500) end Créditos: windbotbr
-
Usar 'Exura Ico' se a Vida estiver abaixo de 120 e com Mana acima de 40
auto(200) if $hp < 120 and $mp >= 40 then cast('exura ico') wait(300, 500) end Créditos: windbotbr
-
Usar 'Exura Gran Ico' se a Vida estiver abaixo de 400 e com Mana acima de 200
auto(200) if $hp < 400 and $mp >= 200 then cast('exura gran ico') wait(300, 500) end Créditos: windbotbr
-
Usar 'Exura Vita' se a Vida estiver abaixo de 200 e com Mana acima de 160
auto(200) if $hp < 200 and $mp >= 160 then cast('exura vita') wait(300, 500) end Créditos: windbotbr
-
Show-Off Client + Launcher Pokémon Rubrum
Ficou maravilhoso!
-
(Resolvido)Porta com level
<action uniqueid="10093" script="vocdoor_druid.lua" /> function onUse(cid, item, frompos, item2, topos) if item.uid == 10093 then if getPlayerVocation(cid) == 2 or getPlayerVocation(cid) == 6 then doPlayerSendTextMessage(cid, 22, "You can pass, you are a Druid.") pos = getPlayerPosition(cid) if pos.x == topos.x then if pos.y < topos.y then pos.y = topos.y + 1 else pos.y = topos.y - 1 end elseif pos.y == topos.y then if pos.x < topos.x then pos.x = topos.x + 1 else pos.x = topos.x - 1 end else doPlayerSendTextMessage(cid,22,'Please stand in front of the door.') return 1 end doTeleportThing(cid,pos) doSendMagicEffect(topos,12) else doPlayerSendTextMessage(cid,22,'You can\'t pass, you aren\'t a Druid.') end return 1 else return 0 end end
- Erros RME
-
Colocar protection amulet automaticamente
if Self.amulet() ~= 0 then if itemqty("Protection Amulet") >= 1 then if is_secure_move() then putamulet("Protection Amulet") end end end Créditos: neutralbot
-
Comer food
local food = "Brown Mushroom" -- coloque aqui sua food local delay = "20000" -- delay pra comer em milisec If itemqty(food) >= 1 then openitem(food) wait(delay) end Créditos: neutralbot
-
Sair da hunt com x de soul
local Soul = 3 -- Quantidade de Soul no char if Self.soul() <= Soul then gotolabel("Leave_Hunt") end Créditos: neutralbot
-
Troca de Arma
local nome_da_spear = "spear" local nome_da_arma_ou_id = "fire sword" if itemqty(nome_da_spear) == 0 then if isequiped(nome_da_arma_ou_id) == false then if is_secure_move() then putweapon(nome_da_arma_ou_id) wait(800) end end end if itemqty(nome_da_spear) >= 2 then if isequiped(nome_da_spear) == false then if is_secure_move() then putweapon(nome_da_spear) end end end Créditos: neutralbot
-
PK na tela bota full def e desloga
if player_atack() == false then return elseif player_atack() == true then set_defensive_atack_mode() wait(500) quit() end Créditos: neutralbot