SkyHigh Member Joined Apr 15, 2010 Messages 396 Reaction score 4 Sep 13, 2010 #1 How would I do such a thing? Run a method at the end of a profile.
P Pios New Member Joined Jul 1, 2010 Messages 160 Reaction score 1 Sep 15, 2010 #3 Like what kind of method ?
V ViggoL New Member Joined Sep 14, 2010 Messages 85 Reaction score 0 Sep 15, 2010 #4 I would like to have one of these too, maybe something that writes "End of route reached" in the log or something - Viggo
I would like to have one of these too, maybe something that writes "End of route reached" in the log or something - Viggo
rooster71 Member Joined May 6, 2010 Messages 567 Reaction score 6 Sep 15, 2010 #5 How about the bot moves to the nearest inn or uses its HS so you can accumulate some lovely Rested XP.
How about the bot moves to the nearest inn or uses its HS so you can accumulate some lovely Rested XP.
H highvoltz Well-Known Member Joined Mar 22, 2010 Messages 1,729 Reaction score 141 Sep 15, 2010 #6 Untested but should work. Code: static public bool reachedEndOfProfile {get{ if (ProfileManager.CurrentProfile.GrindArea.CurrentHotSpot == ProfileManager.CurrentProfile.GrindArea.LastHotSpot) return true; else return false;}}
Untested but should work. Code: static public bool reachedEndOfProfile {get{ if (ProfileManager.CurrentProfile.GrindArea.CurrentHotSpot == ProfileManager.CurrentProfile.GrindArea.LastHotSpot) return true; else return false;}}