Habe Das Reparing Map objects tutorial von https://www.altisliferpg.com/topic/4785-rep…ts-tutorial-50/ eingefügt und folgendes problem
Mein rpt spuckt das aus: 11:24:19 Warning Message: File mpmissions\__cur_mp.Altis\config\Config_Master.hpp, line 218: '/Toxic_Repair_Config.': ' ' encountered instead of '='
Und Line 218 in der Config master sieht so aus:
Spoiler anzeigen
class Toxic_Repair_Config {
Cop_Repairing = false; //Allow cops to repair objects
Medic_Repairing = true; //Allow medics to repair objects
Civ_Repairing = false; //Allow civs to repair objects
class Civilian {
Repair_Reward = 100; //How much they get per object they repair
Cooldown = true; //If you want to have a cooldown on the repairing
Cooldown_Time = 60; //Time is seconds for the cooldown between repairing
};
class Cop {
Repair_Reward = 100; //How much they get per object they repair
Cooldown = true; //If you want to have a cooldown on the repairing
Cooldown_Time = 60; //Time is seconds for the cooldown between repairing
};
class Medic {
Repair_Reward = 300; //How much they get per object they repair
Cooldown = true; //If you want to have a cooldown on the repairing
Cooldown_Time = 10; //Time is seconds for the cooldown between repairing
};
};
#include "Config_Clothing.hpp"
#include "Config_Licenses.hpp"
#include "Config_Vehicles.hpp"
#include "Config_vItems.hpp"
#include "Config_Weapons.hpp"
#include "Config_Gather.hpp"
#include "Config_SpawnPoints.hpp"
#include "Config_Process.hpp"
Es ist ebenfalls ausserhalb der class Life_Settings {}; wo alle anderen dinge eingetragen sind
Kann wer helfen?