BBot - The best bot of the world

Full Version: MSG here when You need macros
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
hello, i'm doing a macro to attack a ghost with fire sword but i need remove fire sword when a creature different is attacking me and use another sword in my left hand for attacking them.

i have this macro i found in this forum:

500 {changeWeapon}
Target.ByName(Ghost)==1
[else]
Self.Equip.LeftHand(ID_WEAPON_ONE)
Exit()
{else}
Target.ByName(Ghost)<>1
Self.Equip.LeftHand(ID_WEAPON_TWO)
Exit()

all it does is switch to the second sword but not used in first.

this is another macro:

1000 {firesword}
Creatures.ByName(Ghost)
Self.Attacking()==1
Self.Equip.LeftHand(3280)

1000 {main sword}
Creature.ByName(ghost)==0
Self.Equip.LeftHand(7774)

it changes repeatedly swords.

Please, help me. Confused
Try it:
Code:
500 {fire sword and main sword} ghost:=Creatures.ByName(Ghost) Dec(monsters, !ghost!) !monsters!>=1 [else] Self.Equip.LeftHand(3280) Exit() {else} Self.Equip.LeftHand(7774) Exit()
(07-25-2014, 09:22 AM)mr. Kris Wrote: [ -> ]Try it:
Code:
500 {fire sword and main sword} ghost:=Creatures.ByName(Ghost) Dec(monsters, !ghost!) !monsters!>=1 [else] Self.Equip.LeftHand(3280) Exit() {else} Self.Equip.LeftHand(7774) Exit()

doesn't work. I dont know for why.
I need to create variables for "Dec" or monsters?

is there any manual for using those instruction "[]", "{}", "else"...

thanks for helping. Exclamation
so maby:
Code:
500 {fire sword and main sword} Creatures.ByName(Ghost)>=1 [else] Self.Equip.LeftHand(3280) Exit() {else} Self.Equip.LeftHand(7774) Exit()
thank you !!

that code worked Big Grin

i change;
Creatures.ByName(ghost)>=1
for
Creatures.ByNameBeside(ghost)>=1

xD!
Now attacked ghost with fire sword and other monters with my main sword.

Ty Ty Ty
Nice!!!!!
i need macro to use fishing rod in dead water elemental( remains of a water elemental )
Try it:
Code:
200 {water fishing} X:=Self.X() Y:=Self.Y() Z:=Self.Z() Self.Attacking()=0 Map.UseOn(ID FISHINGROD, ID DEAD WATER ELEMENTAL, !X!, !Y!, !Z!, 2) Exit()

Macro should use fishingrod on death water elemental when monsters not attacking.
Add ID fishingrod and ID dead water elemental.
hello again
i want a new macro dance. but in mode fast can u? just for bot ofc!

continue doing good job.
(07-26-2014, 05:51 PM)fede95 Wrote: [ -> ]hello again
i want a new macro dance. but in mode fast can u? just for bot ofc!

continue doing good job.

Code:
10 {dance} Self.TurnN() Self.TurnE() Self.TurnS() Self.TurnW()

I think "dance" it's not safety in RL Tibia.
no bro i am playing a war system to.
rl ofc you can't use it Big Grin! delete and ban 1 sec Big Grin

tnx if i have another macro problem i just sms u
Hi, macro to set the energy manual ring with the ESC key and remove it with the ESC key
Can someone make a macro for energy ring on/off by useing a hotkey?

ofc rep++ for helpful response


PLXXXXBig GrinBig GrinBig GrinBig GrinBig GrinBig GrinBig GrinBig Grin
Sorry but never do this macro and I think that not possible because I see only one command: Hotkey.Use(ID) Use a Tibia item with a hotkey (e.g Gold Coin) but this not help us :/
I need macro to reconet determined char in case of the internnect fall. grats
Only option in basic function :/
Hello i need a amcro tu use exori ico, exori hur with my EK, i tried using one made for me, but doesnt work properly, this is what i did:

3000 {Exori Hur} Self.Mana>=20 Self.Attacking==01 Self.Say(exori ico) Self.Say(exori hur)

I want to make exori ico, wait 3ms, then exori hur and wait 3ms again
mr. kris! hello again..
well i was in one ot and i see that there is a casino that make this
name: rolled a 2.
name: rolled a 5.
i don't know if this is posibble in bbot

this is not using "dice" then the bot saying others kind of words and when someone appear, move to the left or right and start working without using dice!

my question is
can u do this in bbot? or can you try it? because all say no. but nobody try it.

(08-04-2014, 12:28 AM)Navinter Wrote: [ -> ]Hello i need a amcro tu use exori ico, exori hur with my EK, i tried using one made for me, but doesnt work properly, this is what i did:

3000 {Exori Hur} Self.Mana>=20 Self.Attacking==01 Self.Say(exori ico) Self.Say(exori hur)

I want to make exori ico, wait 3ms, then exori hur and wait 3ms again

you don't need a macro for that. just put the spells in "attack".
put exori ico. and exori hur.
(08-04-2014, 12:28 AM)Navinter Wrote: [ -> ]Hello i need a amcro tu use exori ico, exori hur with my EK, i tried using one made for me, but doesnt work properly, this is what i did:

3000 {Exori Hur} Self.Mana>=20 Self.Attacking==01 Self.Say(exori ico) Self.Say(exori hur)

I want to make exori ico, wait 3ms, then exori hur and wait 3ms again

you don't need a macro for that. just put the spells in "attack".
put exori ico. and exori hur.
[/quote]

Well yes i need a macro, coz i want to move by myself, i mean i just use bot as support, and if put the exori ico/hur in attack, bot move my char
Maby fix macro:
Code:
3000 {Exori Hur} Self.Mana()>=20 Self.Attacking()==01 Self.Say(exori ico) Self.Say(exori hur)

You forget about "()"
i need a macro for leave the vials of my bp
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36