help with creating a plugin
I need a plugin is simple to revive at T who commit suicide this is for my server zp already try everything to solve this error or if anyone save the cause of error would be helpful to me XD
this is the. cfg zp
// Deathmatch
// ----------
zp_deathmatch 2 // Deathmatch mode, respawn as: [0-disabled // 1-human // 2-zombie // 3-randomly // 4-balance]
zp_spawn_delay 5 // Delay before respawning on deathmatch mode in seconds
zp_spawn_protection 0 // Spawn protection time for deathmatch in seconds [0-disabled]
zp_respawn_on_suicide 1 // Respawn players if they commited suicide
zp_respawn_after_last_human 0 // Respawn players if only the last human is left
zp_infection_allow_respawn 1 // Allow respawning on infection rounds
zp_nem_allow_respawn 0 // Allow respawning on nemesis rounds
zp_surv_allow_respawn 0 // Allow respawning on survivor rounds
zp_sniper_allow_respawn 0 // Allow respawning on sniper rounds
zp_assassin_allow_respawn 0 // Allow respawning on assassin rounds
zp_swarm_allow_respawn 0 // Allow respawning on swarm rounds
zp_plague_allow_respawn 0 // Allow respawning on plague rounds
zp_respawn_zombies 1 // Whether to respawn killed zombies
zp_respawn_humans 1 // Whether to respawn killed humans
zp_respawn_nemesis 1 // Whether to respawn killed nemesis
zp_respawn_survivors 1 // Whether to respawn killed survivors
zp_respawn_snipers 1 // Whether to respawn killed snipers
zp_respawn_assassins 1 // Whether to respawn killed assassins
zp_lnj_allow_respawn 1 // Allow respawning on armageddon rounds
zp_lnj_respawn_surv 1 // On Armageddon round when a survivor respawns, should he be turned into a survivor again ?
zp_lnj_respawn_nem 1 // On Armageddon round when a nemesis respawns, should he be turned into a nemesis again ?
help with creating a plugin
// CVARS - Deathmatch
cvar_deathmatch = register_cvar("zp_deathmatch", "1")
cvar_spawndelay = register_cvar("zp_spawn_delay", "5")
cvar_spawnprotection = register_cvar("zp_spawn_protection", "0")
cvar_respawnonsuicide = register_cvar("zp_respawn_on_suicide", "1")
cvar_respawnafterlast = register_cvar("zp_respawn_after_last_human", "1")
cvar_allowrespawninfection = register_cvar("zp_infection_allow_respawn", "1")
cvar_allowrespawnnem = register_cvar("zp_nem_allow_respawn", "0")
cvar_allowrespawnsurv = register_cvar("zp_surv_allow_respawn", "0")
cvar_allowrespawnswarm = register_cvar("zp_swarm_allow_respawn", "0")
cvar_allowrespawnplague = register_cvar("zp_plague_allow_respawn", "0")
cvar_respawnzomb = register_cvar("zp_respawn_zombies", "1")
cvar_respawnhum = register_cvar("zp_respawn_humans", "1")
cvar_respawnnem = register_cvar("zp_respawn_nemesis", "1")
cvar_respawnsurv = register_cvar("zp_respawn_survivors", "1")
cvar_allowrespawnsniper = register_cvar("zp_sniper_allow_respawn", "0")
cvar_respawnsniper = register_cvar("zp_respawn_snipers", "1")
cvar_allowrespawnassassin = register_cvar("zp_assassin_allow_respawn", "0")
cvar_respawnassassin = register_cvar("zp_respawn_assassins", "1")
cvar_allowrespawnlnj = register_cvar("zp_lnj_allow_respawn", "0")
cvar_lnjrespsurv = register_cvar("zp_lnj_respawn_surv", "0")
cvar_lnjrespnem = register_cvar("zp_lnj_respawn_nem", "0")
i probe and removing all plugins in case one would create conflict, but as usual any help is very welcome and sorry for my English
este plugin sera muy util para muchos
|