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

gem leveler not work

yes that is what im using now . . you gem leveler is working ??

and im having problem in chicken to its a bet delay

im dead before it log out how to fix this
 
Are you letting the bot auto update? I was doing the same thing and had problems.
Feel it's best to delete the folder, and simply replace it with the new one each time.

My gem lever is working fine, and i have no delay on the chicken
 
what folder should i delete ?

exilebuddy is auto update right??

if something fails, download a FRESH copy of ExileBuddy and do NOT overwrite old files. Put them in a new directory.
try again, see if it fails again.

if it does, first make a thread in the support section and provide a description of your problem with a log from that runtime.
 
All of the exile buddy folder like stated, you'll just have to re-setup the bot which shouldn't take too long at all, unless your running like 50 chars or something. You could save each chars settings file, but IMO just redo everything.
 
The gem leveler should be working; it was tested after the new patch. Are you still having problems with it on a fresh install?
 
Mine doesn't work after fresh install, i always get an error that there is no gui

did a couple tests, it works as long as i dont press reload stats or w/e, then i get the error
 
Last edited:
For that gui problem, you'll need to disable, then reenable the plugin from the main bot gui if you change your skill gems around.

I'll add a quick fix for the problem of the when you remove gems and then try to reload the GUI, but the bigger problem is that the plugin doesn't handle skill gem changes.

This should fix that GUI issue when you reload after moving gems, code is in "Plugins\GemLeveler\ConfigWindow.cs":
Code:
        private void HandleReloadAllGemsButtonClick(object sender, EventArgs e)
        {
            dataGridView1.DataSource = null;
            // Clear the list first, then reload the known gems
            GemLevelerSettings.Instance.EnabledGems.Clear();
            ReloadAllGems();
            dataGridView1.DataSource = GemLevelerSettings.Instance.EnabledGems;
        }
 
Back
Top