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:
PHP
- // 1) Search:
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 21;
- // 2) Replace with:
- #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
- // 1) Search:
- const DWORD c_Costume_Slot_Hair = c_Costume_Slot_Start + 1;
- // 2) After this make a new line and paste:
- #ifdef ENABLE_SASH_SYSTEM
- const DWORD c_Costume_Slot_Sash = c_Costume_Slot_Start + 2;
- #endif
- // 1) Search:
- const DWORD c_Costume_Slot_Count = 2;
- // 2) Replace with:
- #ifdef ENABLE_SASH_SYSTEM
- const DWORD c_Costume_Slot_Count = 3;
- #else
- const DWORD c_Costume_Slot_Count = 2;
- #endif
Vielen dank für eure Hilfe