Hab eben mal das Sash System eingebaut und hab gemerkt dass es an einer Stelle besonders mit meinem WEAPON_COSTUME sich ueberschneidet in der GameType.h.
C
- // 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
Code
- #ifdef ENABLE_NEW_EQUIPMENT_SYSTEM
- #ifdef ENABLE_COSTUME_WEAPON
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 22;
- #else
- const DWORD c_New_Equipment_Start = c_Equipment_Start + 21; //HIER
- #endif
- const DWORD c_New_Equipment_Count = 3;
- const DWORD c_Equipment_Ring1 = c_New_Equipment_Start + 0;
- const DWORD c_Equipment_Ring2 = c_New_Equipment_Start + 1;
- const DWORD c_Equipment_Belt = c_New_Equipment_Start + 2;;
- #endif
- #ifdef ENABLE_COSTUME_WEAPON
- const DWORD c_Costume_Slot_Weapon = c_Costume_Slot_Start + 1;
- const DWORD c_Costume_Slot_Count = 3;
- #else
- const DWORD c_Costume_Slot_Count = 2; //hier
- #endif
nun da kommt folgender Fehlermeldung:
Bitte melden Sie sich an, um dieses Bild zu sehen.
Wie kann ich dieses beheben ? Hab versucht die Werte zu erhoehen erfolgslos: