mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 14:34:32 +02:00
Implemented actor instancing, as well as automatic name generation for NPCs.
This commit is contained in:
parent
541456bd8e
commit
62ed9b22f1
12 changed files with 278 additions and 82 deletions
|
@ -391,7 +391,6 @@ namespace FFXIVClassic_Lobby_Server
|
|||
birthMonth,
|
||||
initialTown,
|
||||
tribe,
|
||||
currentParty,
|
||||
restBonus,
|
||||
achievementPoints,
|
||||
playTime
|
||||
|
@ -421,9 +420,9 @@ namespace FFXIVClassic_Lobby_Server
|
|||
player.playerWork.birthdayMonth = reader.GetByte(14);
|
||||
player.playerWork.initialTown = reader.GetByte(15);
|
||||
player.playerWork.tribe = reader.GetByte(16);
|
||||
player.playerWork.restBonusExpRate = reader.GetInt32(18);
|
||||
player.achievementPoints = reader.GetUInt32(19);
|
||||
player.playTime = reader.GetUInt32(20);
|
||||
player.playerWork.restBonusExpRate = reader.GetInt32(17);
|
||||
player.achievementPoints = reader.GetUInt32(18);
|
||||
player.playTime = reader.GetUInt32(19);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue