mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-13 06:48:20 +00:00
Change from obr to tob dir, added a status doc
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
struct CharacterCreateAllocation
|
||||
{
|
||||
u32 index;
|
||||
u32 base_stats[7];
|
||||
u32 default_allocations[7];
|
||||
};
|
||||
|
||||
struct RaceClassCombo
|
||||
{
|
||||
u64 expansion_req;
|
||||
u32 race;
|
||||
u32 class;
|
||||
u32 deity;
|
||||
u32 allocation_index;
|
||||
u32 zone;
|
||||
};
|
||||
|
||||
struct Packet {
|
||||
u8 padding1;
|
||||
u32 allocation_count;
|
||||
CharacterCreateAllocation allocations[allocation_count];
|
||||
u32 race_class_combo_count;
|
||||
RaceClassCombo race_class_combos[race_class_combo_count];
|
||||
};
|
||||
|
||||
Packet p @ 0x00;
|
||||
@@ -0,0 +1,26 @@
|
||||
struct MembershipEntry
|
||||
{
|
||||
u32 purchase_id;
|
||||
u32 bitwise_entry;
|
||||
};
|
||||
|
||||
struct MembershipSetting
|
||||
{
|
||||
s8 setting_index;
|
||||
s32 setting_id; // 0 to 23 actually seen but the OP_Membership packet has up to 32
|
||||
s32 setting_value;
|
||||
};
|
||||
|
||||
struct Membership
|
||||
{
|
||||
u32 membership_setting_count;
|
||||
MembershipSetting membership_settings[membership_setting_count];
|
||||
u32 race_entry_count;
|
||||
MembershipEntry membership_races[race_entry_count];
|
||||
u32 class_entry_count;
|
||||
MembershipEntry membership_classes[class_entry_count];
|
||||
u32 exit_url_length;
|
||||
char exit_url[exit_url_length];
|
||||
};
|
||||
|
||||
Membership m @ 0x00;
|
||||
Reference in New Issue
Block a user