BBot - The best bot of the world
[Request macro] Switch weapon if atking Ghost - Printable Version

+- BBot - The best bot of the world (https://forums.bmega.net)
+-- Forum: Scripts & Macros (https://forums.bmega.net/forum-4.html)
+--- Forum: Requests (https://forums.bmega.net/forum-17.html)
+--- Thread: [Request macro] Switch weapon if atking Ghost (/thread-6043.html)



[Request macro] Switch weapon if atking Ghost - ponch0 - 12-21-2012

Hello guys it's me Edward

I would be very glad if someone can make me a macro for thombs so I can switch weapon when I'm atking X mob(Ghost)





Thankyou
Edward


P.S. I'll try to make the macro by myself If I succes I'll post it.


RE: [Request macro] Switch weapon if atking Ghost - Kajtek - 12-21-2012

(03-03-2012, 09:01 PM)Dexter Wrote: If Ghost change weapon to Fire Sword, If no Ghost Change back.
Code:
1000 {Equip FSword} Target.ByName(Ghost) Self.Equip.LeftHand(IDFSWORD)
1000 {UnEquip FSword} Target.ByName(Ghost)=0 Self.Equip.LeftHand(OTHER_ITEM)

next time look here http://forums.bmega.net/showthread.php?tid=1530


RE: [Request macro] Switch weapon if atking Ghost - ponch0 - 12-21-2012

(12-21-2012, 02:36 PM)Kajtek Wrote:
(03-03-2012, 09:01 PM)Dexter Wrote: If Ghost change weapon to Fire Sword, If no Ghost Change back.
Code:
1000 {Equip FSword} Target.ByName(Ghost) Self.Equip.LeftHand(IDFSWORD)
1000 {UnEquip FSword} Target.ByName(Ghost)=0 Self.Equip.LeftHand(OTHER_ITEM)

next time look here http://forums.bmega.net/showthread.php?tid=1530

Wow thanks I was doing this hehe
Quote:Self.Attacking(Ghost)
Self.UnEquip.LeftHand(0)
Self.Equip.LeftHand(3320)
Target.Health(0)
Self.Equip.LeftHand(14089)

I need to learn more about this u.u
Most of the time when I try to make a Macro, I dont know how to start XD

Thank you dude






EDIT:
It didn't work man :/
Quote:1000 {Equip FAxe} Target.ByName(Ghost) Self.Equip.LeftHand(3320)
1000 {UnEquip FAxe} Target.ByName(Ghost)=0 Self.Equip.LeftHand(14089)

I put it like this^
It just switch weapons a lot.


RE: [Request macro] Switch weapon if atking Ghost - Kajtek - 12-21-2012

hmmm active macro ?? and this is id fire sword ?3320

i come bback about 20


RE: [Request macro] Switch weapon if atking Ghost - Dexter - 12-21-2012

Try this:

Code:
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()

Only change the IDs.


RE: [Request macro] Switch weapon if atking Ghost - ponch0 - 12-21-2012

(12-21-2012, 03:26 PM)Dexter Wrote: Try this:

Code:
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()

Only change the IDs.

It works!

I'll give you REP same for you Kajtek, thankyou for your help and your time guys