braniac8472
Member
- Joined
- Jun 12, 2015
- Messages
- 174
Hey,
So since the new release i get an error when i try to load a new profile when its invoked by a plugin. Loading new profiles from a profile itself works.
The bot just goes into an exception loop - once i press "stop/start" once, loading profiles starts working again. But once i restart the bot, the error comes back again.
This is kind of a huge deal for me - would be very nice if someone could look into this for me.
This is the plugin code i use to load the profile (i cant use a quest behaviour for this - but it has always been working fine):
And this is the error i get:
View attachment 4680 2016-06-09 08.15.txt
So since the new release i get an error when i try to load a new profile when its invoked by a plugin. Loading new profiles from a profile itself works.
The bot just goes into an exception loop - once i press "stop/start" once, loading profiles starts working again. But once i restart the bot, the error comes back again.
This is kind of a huge deal for me - would be very nice if someone could look into this for me.
This is the plugin code i use to load the profile (i cant use a quest behaviour for this - but it has always been working fine):
Code:
public static void loadProfileByName(string ProfileName) {
TreeRoot.Pause();
var profileName = transformProfileName(ProfileName);
Log("Brainsap Load Profile", "Loading " + profileName, colorRed);
ProfileManager.LoadNew(profileName, true);
Thread.Sleep(2000);
TreeRoot.Resume();
}
And this is the error i get:
View attachment 4680 2016-06-09 08.15.txt
Last edited: