What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

GrindZoneChanger

gen0m

Member
Joined
Feb 8, 2013
Messages
78
Reaction score
1
Hi. GrindZoneChanger doest working.
Bot farming only one location (from OldGrindBot settings)
How to make random zones farming from the list?
Old GrindZoneChanger

HTML:
 private void ExplorationCompleteTaskOnCompleted(object sender, ExplorationCompleteTask.ExplorationCompleteEventArgs explorationCompleteEventArgs)
        {
            var roll = Utility.Random.Next(0, 4);
            string name = "";
            switch (roll)
            {
                case 0:
                    name = "The Docks";
                    break;
                case 1:
                    name = "Another loc";
                    break;
                case 2:
                    name = "Tra-ta-ta-ta";
                    break;
                case 3:
                    name = "La-la-la-la";
                    break;

i doesnt understand how to modify current grindzonechanger
 
restart bot
restart poe
new bot folder and fresh setup
restat PC

and nothing. 5 times one zone from oldgrindbot.
 
Fixed. close this thread pls

doesnt fixed ((
 
Last edited:
First, you need to understand how the default plugin works.

Click on Settings -> GrindZoneChanger

https://gyazo.com/277a35f0043d8e58f6c34fd4a95ea6ca

When exploration completes in OldGrindBot, the plugin will roll a new grindzone between the 3 choices.

2016-01-12 06:22:35,466 [19] INFO Logger (null) - [GrindZoneChanger] New grind zone being set to The Mud Flats.

When you switch back to Settings -> OldGrindBot, you'll see "GrindZoneDifficulty" will be changed to whatever you selected, and "GrindZoneName" will now be the new area.

This is done by simply setting the settings as shown in the plugin:
Code:
OldGrindBotSettings.Instance.GrindZoneName = name;
OldGrindBotSettings.Instance.GrindZoneDifficulty = difficulty;

Check GrindZoneChangerSettings.cs for a list of areas if you really need them. If you want to make the plugin work better, you simply code the logic to set OldGrindBotSettings.Instance.GrindZoneName / OldGrindBotSettings.Instance.GrindZoneDifficulty to the area you next want to grind when exploration is completed.
 
Back
Top