Moin moin zusammen !
Wir richten derzeit einen Kerama Server ein.
Das Problem ist einfach das das Spawnen nicht funktioniert.
Man startet direkt auf der "Spawninsel" anstatt ins Spawnmenü zu kommen....
Es werden keine Fehler in der RPT ausgespuckt werde sie aber mal mit anhängen
Config_Spawnpoints.hpp ist bearbeitet worden werde sie aber nochmal dran hängen
Spoiler anzeigen
Code
/*
* Format:
* licenses: ARRAY (This is for limiting spawn to certain things)
* 0: License Name
* 1: License Check Type
* false: If license isn't set
* true: If license is set
* Example:
* licenses[] = { { "pilot", true }, { "rebel", false } }; //Shows up for players with pilot and without rebel license.
*
* level: ARRAY (This is for limiting spawn to certain things)
* 0: Variable to read from
* 1: Variable Value Type (SCALAR / BOOL / EQUAL / INVERSE)
* SCALAR: VALUE => VALUE
* BOOL: VALUE EXISTS
* EQUAL: VALUE == VALUE
* INVERSE: VALUE <= VALUE
* 2: What to compare to (-1 = Check Disabled)
*
*/
class CfgSpawnPoints {
class Kerama {
class Civilian {
class Kavala {
displayName = "Kavala";
spawnMarker = "civ_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "rebel", false } };
level[] = { "", "", -1 };
};
class Athira {
displayName = "Athira";
spawnMarker = "civ_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Pyrgos {
displayName = "Pyrgos";
spawnMarker = "civ_spawn_2";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Sofia {
displayName = "Sofia";
spawnMarker = "civ_spawn_4";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class RebelN {
displayName = "Northern Rebel Base";
spawnMarker = "Rebelop";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
class RebelS {
displayName = "Southern Rebel Base";
spawnMarker = "Rebelop_1";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
class RebelE {
displayName = "Eastern Rebel Base";
spawnMarker = "Rebelop_2";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
};
class Cop {
class Kavala {
displayName = "Kavala HQ";
spawnMarker = "cop_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Athira {
displayName = "Athira HQ";
spawnMarker = "cop_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\fuelstation_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Pyrgos {
displayName = "Pyrgos HQ";
spawnMarker = "cop_spawn_2";
icon = "\a3\ui_f\data\map\GroupIcons\badge_rotate_0_gs.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Air {
displayName = "Air HQ";
spawnMarker = "cop_spawn_4";
icon = "\a3\ui_f\data\map\Markers\NATO\b_air.paa";
licenses[] = { { "cAir", true } };
level[] = { "life_coplevel", "SCALAR", 2 };
};
class HW {
displayName = "HW Patrol";
spawnMarker = "cop_spawn_5";
icon = "\a3\ui_f\data\map\GroupIcons\badge_rotate_0_gs.paa";
licenses[] = { { "", true } };
level[] = { "life_coplevel", "SCALAR", 3 };
};
};
class Medic {
class Kavala {
displayName = "Kavala Hospital";
spawnMarker = "medic_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Athira {
displayName = "Athira Regional";
spawnMarker = "medic_spawn_2";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Pyrgos {
displayName = "Pyrgos Hospital";
spawnMarker = "medic_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
};
};
class Tanoa {
class Civilian {
class Georgetown {
displayName = "Georgetown";
spawnMarker = "civ_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "rebel", false } };
level[] = { "", "", -1 };
};
class Balavu {
displayName = "Balavu";
spawnMarker = "civ_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Tuvanaka {
displayName = "Tuvanaka";
spawnMarker = "civ_spawn_2";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Lijnhaven {
displayName = "Lijnhaven";
spawnMarker = "civ_spawn_4";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class RebelNW {
displayName = "North Western Rebel Base";
spawnMarker = "Rebelop";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
class RebelS {
displayName = "Southern Rebel Base";
spawnMarker = "Rebelop_1";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
class RebelNE {
displayName = "North Eastern Rebel Base";
spawnMarker = "Rebelop_2";
icon = "\a3\ui_f\data\map\MapControl\bunker_ca.paa";
licenses[] = { { "rebel", true } };
level[] = { "", "", -1 };
};
};
class Cop {
class NAirport {
displayName = "North Airport HQ";
spawnMarker = "cop_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\watertower_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class SWAirport {
displayName = "South Western Airport HQ";
spawnMarker = "cop_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\fuelstation_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class GeorgetownHQ {
displayName = "Georgetown HQ";
spawnMarker = "cop_spawn_2";
icon = "\a3\ui_f\data\map\GroupIcons\badge_rotate_0_gs.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class Air {
displayName = "Air HQ";
spawnMarker = "cop_spawn_4";
icon = "\a3\ui_f\data\map\Markers\NATO\b_air.paa";
licenses[] = { { "cAir", true } };
level[] = { "life_coplevel", "SCALAR", 2 };
};
class HW {
displayName = "HW Patrol";
spawnMarker = "cop_spawn_5";
icon = "\a3\ui_f\data\map\GroupIcons\badge_rotate_0_gs.paa";
licenses[] = { { "", true } };
level[] = { "life_coplevel", "SCALAR", 3 };
};
};
class Medic {
class SEHospital {
displayName = "South East Hospital";
spawnMarker = "medic_spawn_1";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class TanoukaHospital {
displayName = "Tanouka Regional";
spawnMarker = "medic_spawn_2";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
class NEAirportHospital {
displayName = "North East Airport Hospital";
spawnMarker = "medic_spawn_3";
icon = "\a3\ui_f\data\map\MapControl\hospital_ca.paa";
licenses[] = { { "", true } };
level[] = { "", "", -1 };
};
};
};
};
Alles anzeigen