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:
change it to this:
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
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