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

[LegCraftCompFarm] EoTS (Captain set) + SoEP (Aughild set) + IWD (Asheara set)

wow ok.

two scenarios to get this working.
1) use old trinity/questools that allows xmltags so you can use TmxkMiniMapMarker and DungeonExpFoundObjOrFullyExped provided and with complete instructions in the first post of this thread.

2) if u use new trinity download gorms edited profile. then go to questools/profiletags/exploredungeon.cs. go to line 823 or some such. you will see this line:

Code:
private int _timesForcedReset;
        private const int TimesForceResetMax = 5;

change it to this:

Code:
private int _timesForcedReset;
        private int TimesForceResetMax = 5;
		
		[XmlAttribute("maxResets")]
		public int MaxResets 
		{
			get
			{
				return TimesForceResetMax;
			}
			set
			{
				TimesForceResetMax = value;
			}
		}

if you skip this step gorms profile will always work, except you will fully explore the dungeon five times before quitting the game. if any of you had even used his updated profile it would have worked anyway so i dont understand why you all are getting errors
 
wow ok.

two scenarios to get this working.
1) use old trinity/questools that allows xmltags so you can use TmxkMiniMapMarker and DungeonExpFoundObjOrFullyExped provided and with complete instructions in the first post of this thread.

2) if u use new trinity download gorms edited profile. then go to questools/profiletags/exploredungeon.cs. go to line 823 or some such. you will see this line:

Code:
private int _timesForcedReset;
        private const int TimesForceResetMax = 5;

change it to this:

Code:
private int _timesForcedReset;
        private int TimesForceResetMax = 5;
		
		[XmlAttribute("maxResets")]
		public int MaxResets 
		{
			get
			{
				return TimesForceResetMax;
			}
			set
			{
				TimesForceResetMax = value;
			}
		}

if you skip this step gorms profile will always work, except you will fully explore the dungeon five times before quitting the game. if any of you had even used his updated profile it would have worked anyway so i dont understand why you all are getting errors

I wish somebody would make a new thread, explaining all of this, so we don't have to go through the 19 pages to find what we're looking for.
 
Back
Top