Cloud30000
New Member
- Joined
- May 9, 2015
- Messages
- 298
As a temporary stopgap, the profile can be implemented to stop the bot when a level is reached in which the user must switch to a different bait, at which point the log states that the bait needs to be switched and the area changed. At that point, the bot will not run again until the user manually changes the location of the toon, to enforce the need to change bait.
It is actually an easy fix, just need to implement a tiny bit of code after every level check in the profile, such as:
This stopgap would slow down the bot, but remove much of the 'sketchyness'.
It is actually an easy fix, just need to implement a tiny bit of code after every level check in the profile, such as:
Code:
(Not actual code)
If (me.level > 19 && me.level < 30)
{
[INDENT]If (me.area == [old level 19 area])
{
[INDENT]Log("Please change to X bait and exit the current area/go to X area, then restart profile");
Bot.Stop();[/INDENT]
}
(all other code for fishing in the new area)[/INDENT]
}
This stopgap would slow down the bot, but remove much of the 'sketchyness'.