Hallo Zusammen
Ich habe heute mal wieder für mich angefangen ein bisschen an nem Server rum zu spielen und habe jetzt folgendes Problem, im Spawnmenü werden keine Spawnpunkte mehr angezeigt egal bei welcher fraktion. Hat jemand deine Idee? Die Map ist Lakeside.
LG
ThatsAlpha
Config_SpawnPoints.hpp
Code
/*
* Format:
* 3: STRING (Conditions) - Must return boolean :
* String can contain any amount of conditions, aslong as the entire
* string returns a boolean. This allows you to check any levels, licenses etc,
* in any combination. For example:
* "call life_coplevel && license_civ_someLicense"
* This will also let you call any other function.
*
*/
class CfgSpawnPoints {
class Lakeside_Country {
class Civilian {
class Lakeside {
displayName = "Lakeside";
spawnMarker = "civ_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
conditions = "!license_civ_rebel";
};
};
};
class Cop {
class Lakeside {
displayName = "Lakeside HQ";
spawnMarker = "cop_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
conditions = "";
};
};
class Medic {
class Lakeside {
displayName = "Krankenhaus";
spawnMarker = "med_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
conditions = "";
};
};
};
Alles anzeigen