Hey,
vielleicht kann mir einer hier helfen..
Möchte in meine Files, wo bereits das Waffenkostüm verbaut ist, das Schulterband System noch einfügen.
Doch in der Binary in der GameType,h komme ich leider nicht weiter.
Hier ist meine GameType.h (clean)
Bitte melden Sie sich an, um diesen Link zu sehen.
und da müsste jetzt nur dieser Part von Schulterband hinzugefügt werden:
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 21;
- #ifdef ENABLE_SASH_SYSTEM
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 21 + 1;
- #else
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 21;
- #endif
- const DWORD c_Costume_Slot_Hair = c_Costume_Slot_Start + 1;
- #ifdef ENABLE_SASH_SYSTEM
- const DWORD c_Costume_Slot_Sash = c_Costume_Slot_Start + 2;
- #endif
- const DWORD c_Costume_Slot_Count = 2;
- #ifdef ENABLE_SASH_SYSTEM
- const DWORD c_Costume_Slot_Count = 3;
- #else
- const DWORD c_Costume_Slot_Count = 2;
- #endif
Alles anzeigen
Vielen dank für eure Hilfe