BBot - The best bot of the world

Full Version: [Macro] Pedidos de 3 Macros bem eficiente
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
1° Quando meu char falar a palavra "speed", automaticamente irá subir para o set uma boh, um time ring e um winged helmet.

Id boh: 3079
ID winged helmet: 3368
ID Time Ring: 3053

2° Quando meu char chegar a 30% da life equipar o energy ring, e quando a life chegar a 100% equipa ring of the sky.
ID energy ring: 3051.
ID Ring of the sky:3006

3° Quando um player na tela chegar a menor ou igual a 1 de life o bot tira uma print.


Agradeço Desde já Smile
Qualquer duvida é só falar aqui
1) Não é possível testar algo que foi dito por você ou por outras pessoas para poder fazer "subir" os itens mencionados. Porém você pode testar se uma determinada tecla do seu teclado foi pressionada, e então subir estes itens, isso ajudaria?

2)
Code:
500 {Energy Ring by C} bota:=30 tira:=100 ring1:=3051 ring1on:=3088 ring2:=3006 BP:=0 Self.Health%()<=!bota! [if] Self.Inventory.Ring()<>!ring1on! Self.UnEquip.Ring(!BP!) Macro.Wait(100) Self.Equip.Ring(!ring1!) Exit() {if} Self.Health%()>=!tira! Self.Inventory.Ring()<>!ring2! Self.UnEquip.Ring(!BP!) Macro.Wait(100) Self.Equip.Ring(!ring2!) Exit()

3) Não é possível saber a quantidade de life de outros players e nem tirar Print por macro. Você pode usar o protector para tirar Print se o seu próprio life chegar a 1.
1° Tudo bem pode ser por uma tecla Smile
ficaria ate melhor hehe
Escolha a tecla para ser usada nesta página: http://wiki.bmega.net/doku.php?id=virtual_key_codes
Tecla Home
Code:
200 {Ultra Haste by C} IDBOH:=3079 IDWH:=3368 IDTR:=3053 BP:=0 Tibia.KeyDown(36)>=1  Self.UnEquip.Boots(!BP!) Macro.Wait(50) Self.Equip.Boots(!IDBOH!) Self.UnEquip.Helmet(!BP!) Macro.Wait(50) Self.Equip.Helmet(!IDWH!) Self.UnEquip.Ring(!BP!) Macro.Wait(50) Self.Equip.Ring(!IDTR!) Exit()