mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-14 16:34:42 +02:00
Added some new work parameters. Fixed GC Packet (wrong sized data). Connected player data packets to DB. Cleaned up login code.
This commit is contained in:
parent
2bf532a6db
commit
f7702bca13
16 changed files with 209 additions and 123 deletions
28
FFXIVClassic Map Server/actors/chara/AetheryteWork.cs
Normal file
28
FFXIVClassic Map Server/actors/chara/AetheryteWork.cs
Normal file
|
@ -0,0 +1,28 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FFXIVClassic_Map_Server.dataobjects.chara
|
||||
{
|
||||
class AetheryteWork
|
||||
{
|
||||
public int iconGil;
|
||||
public short guildleveId;
|
||||
public short clearTime;
|
||||
public int missionBonus;
|
||||
public int difficultyBonus;
|
||||
|
||||
public byte factionNumber;
|
||||
public int factionBonus;
|
||||
public byte factionCredit;
|
||||
|
||||
public int glRewardItem;
|
||||
public int glRewardNumber;
|
||||
public int glRewardSubItem;
|
||||
public int glRewardSubNumber;
|
||||
|
||||
public byte difficulty;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue