-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[HaCreator] Dump unsupported 'info' properties back when saving
this should fix some of the issues with newer version of MapleStory in the short term, until they all get sorted out
- Loading branch information
1 parent
b084ac4
commit b9c813b
Showing
9 changed files
with
232 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
MapleLib/WzLib/WzStructure/Data/MapStructure/AutoLieDetector.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace MapleLib.WzLib.WzStructure.Data.MapStructure | ||
{ | ||
public class AutoLieDetector | ||
{ | ||
public int startHour, endHour, interval, prop; //interval in mins, prop default = 80 | ||
|
||
public AutoLieDetector(int startHour, int endHour, int interval, int prop) | ||
{ | ||
this.startHour = startHour; | ||
this.endHour = endHour; | ||
this.interval = interval; | ||
this.prop = prop; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace MapleLib.WzLib.WzStructure.Data.MapStructure | ||
{ | ||
public struct TimeMob | ||
{ | ||
public int? startHour, endHour; | ||
public int id; | ||
public string message; | ||
|
||
public TimeMob(int? startHour, int? endHour, int id, string message) | ||
{ | ||
this.startHour = startHour; | ||
this.endHour = endHour; | ||
this.id = id; | ||
this.message = message; | ||
} | ||
} | ||
} |
Oops, something went wrong.