Need MACRO, auto move if x HPots - 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: Need MACRO, auto move if x HPots (/thread-17358.html) |
Need MACRO, auto move if x HPots - sieguu - 01-31-2015 Hello everyone, I want train my knight, and I need script/macro to move my character if is less then 10 HealthPotions, I try to use protector and option go label, but don"t working.. I think someone can help me RE: Need MACRO, auto move if x HPots - mr. Kris - 01-31-2015 Code: 400 {health potion} Misc.ItemCountEx(ID HELAT POTION)<=10 Self.MoveNW() 1st. You must have opened BP with health potion. 2nd. You must use this macro manually after full check. RE: Need MACRO, auto move if x HPots - sieguu - 02-07-2015 (01-31-2015, 11:10 AM)mr. Kris Wrote: It doesn't work, I can't have active cavebot cuz char follow the slime and move from position. RE: Need MACRO, auto move if x HPots - mr. Kris - 02-07-2015 That is macro... Do You add ID of health potion? Add this and check auto macro ON. RE: Need MACRO, auto move if x HPots - kaiquegabriel - 02-07-2015 Try it: Code: 2000 {-10 potions logout} Misc.ItemCountEx(266)=<10 Self.MoveNW Self.Logout() You need opened backpack with health potions. If bot count 10 or less potions, move to the hole and wait battle to logout. |