![]() |
problem with task command - 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: problem with task command (/thread-19890.html) |
problem with task command - zarize - 05-10-2016 FullCheck (X X X:Full task Else next Code ~Undead Dragon>=400) Labels are good and it doesnt work... any1 to help me please? :/ I'm playing on Hexera RE: problem with task command - Catar - 05-10-2016 What's this? I never see this kind of 'waypoint' in bbot RE: problem with task command - zarize - 05-10-2016 (05-10-2016, 12:53 PM)Catar Wrote: What's this? http://wiki.bmega.net/doku.php?id=add_types&s[]=scarab Quote:~Scarab>=10 RE: problem with task command - zarize - 05-11-2016 #refesh Mega, could u help me please? RE: problem with task command - Catar - 05-11-2016 oh jeez man, there is easier way... Make manual macro and u can add all decisions you want your bot to make. Then put that macro on waypoint instead of full check example of mine hellhound task maker ;D variables: Code: buymana=2740 Checkpoint on SPAWN [macro]0 {checkpoint} task:=Creatures.TaskKilled(Hellhound) mpoty:=Misc.ItemCountEx(268) upoty:=Misc.ItemCountEx(7643) !upoty!<40 [else1] CaveBot.GoLabel(powrot) exit() {else1} !mpoty!<120 [else2] CaveBot.GoLabel(powrot) exit() {else2} !task!>=!zadanie! [else3] CaveBot.GoLabel(powrot) exit() {else3} CaveBot.GoLabel(dalej) exit() [/macro] Checkpoint in DEPO [macro]0 {ilesupp} bmana:=!buymana! VarSub(bmana, 10) upoty:=Misc.ItemCountEx(7643) mpoty:=Misc.ItemCountEx(268) task:=Creatures.TaskKilled(Hellhound) !upoty!<!buyhp! [else1] ReUser.Pause(Haste) CaveBot.GoLabel(Refill) exit() {else1} !mpoty!<!bmana! [else2] ReUser.Pause(Haste) CaveBot.GoLabel(Refill) exit() {else2} !task!>=!zadanie! [else3] !resettask!==1 [res] CaveBot.GoLabel(NewTask) ReUser.UnPause(Haste) exit() {res} Self.Logout() exit() {else3} ReUser.UnPause(Haste) CaveBot.GoLabel(NaResp) exit()[/macro] RE: problem with task command - MegaNo0body - 05-11-2016 Catar, native > macro. I'll check it Zarize, thank you! RE: problem with task command - Catar - 05-11-2016 (05-11-2016, 07:29 PM)MegaNo0body Wrote: Catar, native > macro. In this case macro works much better and gives much more freedom (possibilities). When I got bbot for the first time ever, I tried that full check thing which was mentioned in some tutorial in here. It was terrible experience for me. It was slow and with very limited possibilities. So I read some forum posts, macro commands etc., learned how macro works and looks like which took me only few hours to master it. Since then I always use manual macros to make full checks and other things i want bot to do in certain places. (like turning on and off some of Re-Users) You can make it also to check how many soft boots you have left, and if only last pair, make bot to go venore label to fix them, and at the same time it will check your task count and go port hope next if necessary. All in a single waypoint RE: problem with task command - zarize - 05-11-2016 (05-11-2016, 06:47 PM)Catar Wrote: oh jeez man, there is easier way... Thanks for help =) |