mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Player Level Changes
- added 10 extra player levels - changed level data type to LONG.
This commit is contained in:
parent
f33d463782
commit
847868f3a6
8 changed files with 153 additions and 39 deletions
|
|
@ -252,16 +252,16 @@ namespace ServerManagerTool.Utils
|
|||
public class PlayerLevelDataItem
|
||||
{
|
||||
[DataMember]
|
||||
public int XPRequired = 0;
|
||||
public long XPRequired = 0;
|
||||
[DataMember]
|
||||
public int EngramPoints = 0;
|
||||
public long EngramPoints = 0;
|
||||
}
|
||||
|
||||
[DataContract]
|
||||
public class CreatureLevelDataItem
|
||||
{
|
||||
[DataMember]
|
||||
public int XPRequired = 0;
|
||||
public long XPRequired = 0;
|
||||
}
|
||||
|
||||
[DataContract]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue