ws and pruner done!!!
This commit is contained in:
parent
c5cc245e25
commit
74add408e6
34 changed files with 1455 additions and 221 deletions
|
@ -6,18 +6,23 @@ type ESSData struct {
|
|||
|
||||
type ESSEvent struct {
|
||||
EventName string `json:"event_name"`
|
||||
WorldID uint16 `json:"world_id"`
|
||||
ZoneID uint32 `json:"zone_id"`
|
||||
WorldID uint16 `json:"world_id,string"`
|
||||
ZoneID uint32 `json:"zone_id,string"`
|
||||
|
||||
CharacterID string `json:"character_id"`
|
||||
LoadoutID string `json:"loadout_id"`
|
||||
VehicleID string `json:"vehicle_id"`
|
||||
TeamID Faction `json:"team_id"`
|
||||
CharacterID string `json:"character_id"`
|
||||
|
||||
// On Death
|
||||
|
||||
VehicleID string `json:"vehicle_id"`
|
||||
TeamID Faction `json:"team_id,string"`
|
||||
CharacterLoadoutID uint16 `json:"character_loadout_id,string"`
|
||||
AttackerCharacterID string `json:"attacker_character_id"`
|
||||
AttackerLoadoutID string `json:"attacker_loadout_id"`
|
||||
AttackerLoadoutID uint16 `json:"attacker_loadout_id,string"`
|
||||
AttackerVehicleID string `json:"attacker_vehicle_id"`
|
||||
AttackerTeamID Faction `json:"attacker_team_id"`
|
||||
AttackerTeamID Faction `json:"attacker_team_id,string"`
|
||||
|
||||
ExperienceID uint32
|
||||
// On GainExperience
|
||||
|
||||
ExperienceID uint32 `json:"experience_id,string"`
|
||||
LoadoutID uint16 `json:"loadout_id,string"`
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue