BBot - The best bot of the world
Stealth ring script/macro - 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: Stealth ring script/macro (/thread-18374.html)



Stealth ring script/macro - czarusionek - 08-13-2015

Hey guys. I am looking for script/macro which use stealth ring when around are more than two/three berserkers or leaders. Can someone help me?


RE: Stealth ring script/macro - kaiquegabriel - 08-13-2015

2+ Berserkers Equip Ring
Code:
1000 {2 zerk equip ring} Creatures.ByNameBeside(Orc Berserker)=>2 Self.Equip.Ring(3049)

2+ Leader Equip Ring
Code:
1000 {2 zerk equip ring} Creatures.ByNameBeside(Orc Leader)=>2 Self.Equip.Ring(3049)

1- Zerk Unequip Ring
1000 {unequip ring 1-zerk} Creatures.ByNameBeside(Orc Berserker)=>1 Self.UnEquip.Ring(0)

1- Leader Unequip Ring
1000 {unequip ring 1-zerk} Creatures.ByNameBeside(Orc Leader)=>1 Self.UnEquip.Ring(0)

Add all and active. Rep+ if helped.


RE: Stealth ring script/macro - czarusionek - 08-13-2015

There is one problem. When macros are activated, bot put on and second later it put off ring and make it until all berserkers and leadear are dead
One script in one macro(I saved macros)


RE: Stealth ring script/macro - erleo - 08-13-2015

Try thats macros:
PD: Are two differents macros, first test 1 and after other.

First:
[macro]200 {Stealth Ring} ring:=3049 Creatures.ByRangeName(8, Orc Berserker)>=2 [up] Creatures.ByRangeName(8, Orc Leader)>=2 [up] Self.UnEquip.Ring(0) Exit() {up} Self.Equip.Ring(!ring!) Exit() [/macro]

Second:
[macro]200 {Stealth Ring 2.0} id:=Self.Equip.Ring(3049) Creature.NameIn(!id!, Orc Berserker, Orc Leader)>=2 [ring] Exit() {ring} Self.UnEquip.Ring(0) Exit() [/macro]


RE: Stealth ring script/macro - czarusionek - 08-13-2015

First one, put on ring and it is i using it all time
Second one mkes the same that macro from kaiquegabriel


RE: Stealth ring script/macro - erleo - 08-13-2015

Try this:
If have only 2 berserkers dont up, i have 2 berskers + 1 or more leaders up ring. If less of 2 berserker the ring go down.

[macro]200 {Stealth Ring 2.0} ring:=3049 Creatures.ByName(Orc Berserker)>=2 [jump] Creatures.ByName(Orc Leader)>=1 [jump] Self.Equip.Ring(!ring!) Exit() {jump} Self.UnEquip.Ring(0) Exit() [/macro]

You can change the number of berserker for 1, and if have in screen 1 berserker and 1 leader up the ring,
Idk if u wanna this, is so hard.


RE: Stealth ring script/macro - czarusionek - 08-14-2015

Close enoughWink
Works excellent but it doesn't put up when are only 2 or more berserks? It only wear when are leaders too
Could you add it?Smile
If not, don't worry. :0 I will not be sad


RE: Stealth ring script/macro - erleo - 08-14-2015

(08-14-2015, 04:32 PM)czarusionek Wrote: Close enoughWink
Works excellent but it doesn't put up when are only 2 or more berserks? It only wear when are leaders too
Could you add it?Smile
If not, don't worry. :0 I will not be sad

Only up stealtb ring if in screen min. 2 or + berserkers and 1 or + leaders.
Dont up if only 2 berserkers, or 1 berserker and 1 leader.


RE: Stealth ring script/macro - czarusionek - 08-14-2015

I know itWink I saw it, but If it is posibility to up ring when are only(without leader) 2 berserkers too it will be fantastic. Can you do this? Is it impossible?


RE: Stealth ring script/macro - erleo - 08-14-2015

Sure
[macro]200 {Stealth Ring 2.0} ring:=3049 Creatures.ByName(Orc Berserker)>=2 [jump] Self.Equip.Ring(!ring!) Exit() {jump} Self.UnEquip.Ring(0) Exit() [/macro]