gdy cyclops smith na ekranie to stealth ring - Printable Version +- BBot - The best bot of the world (https://forums.bmega.net) +-- Forum: Support (https://forums.bmega.net/forum-6.html) +--- Forum: Support & Help (https://forums.bmega.net/forum-8.html) +--- Thread: gdy cyclops smith na ekranie to stealth ring (/thread-8110.html) |
gdy cyclops smith na ekranie to stealth ring - Kaap - 03-31-2013 jak w temacie, potrzebuje macro zeby zakładał s ringa gdy na ekranie jest smith RE: gdy cyclops smith na ekranie to stealth ring - Palladynek - 03-31-2013 Code: 1000 {Equip Ring} COUNT:=3 ID_RING:=9998 ID_USEDRING:=9999 Creatures.ByName(CREATURE_NAME)>=!COUNT! [desequi] Self.Inventory.Ring()<>!ID_USEDRING! Self.Equip.Ring(!ID_RING!) Exit() {desequi} Self.Inventory.Ring()==!ID_USEDRING! Self.UnEquip.Ring(0) pozmieniaj nazwy potworów i count czyli ilosc potworów kiedy ma zalożyć ring edit: tu jeszcze jeden gdyby ten nie działał , wystarczy tylko poszukać. Code: 500 {Stealth Ring} ID:=3049 IDON:=3086 BP:=0 Creatures.ByName(Cyclops)>0 [cyc1] Self.Inventory.Ring()<>!IDON! Self.Equip.Ring(!ID!) Exit() {cyc1} Creatures.ByName(Cyclops Drone)>0 [cyc2] Self.Inventory.Ring()<>!IDON! Self.Equip.Ring(!ID!) Exit() {cyc2} Creatures.ByName(Cyclops Smith)>0 [cyc3] Self.Inventory.Ring()<>!IDON! Self.Equip.Ring(!ID!) Exit() {cyc3} Self.Inventory.Ring()==!IDON! Self.UnEquip.Ring(!BP!) Exit() RE: gdy cyclops smith na ekranie to stealth ring - Kaap - 03-31-2013 ten u góry mam, sam go używam, ale chodziło mi o konkret samego smitha, a ten poniższy skrypt zakłada i zdejmuje ringa gdy widzi cycka;s RE: gdy cyclops smith na ekranie to stealth ring - szeldo123 - 03-31-2013 Code: 1000 {Equip Ring} COUNT:=1 ID_RING:=3049 ID_USEDRING:=3086 Creatures.ByName(Cyclops Smith)>=!COUNT! [desequi] Self.Inventory.Ring()<>!ID_USEDRING! Self.Equip.Ring(!ID_RING!) Exit() {desequi} Self.Inventory.Ring()==!ID_USEDRING! Self.UnEquip.Ring(0) RE: gdy cyclops smith na ekranie to stealth ring - Kaap - 04-02-2013 bot ładnie zakłada gdy widzi smitha, ale nie zdejmie go po zabiciu dlaczego? |