Skip to content
thomas edited this page May 23, 2018 · 4 revisions

On Round start all players are invisible with godmode, every 5 seconds all players become visible & lose godemode for 3 seconds, after that become invisible again. and so on.

Commands

sm_setghosts - Allows the Admin or Warden to set Ghosts
sm_ghosts - Allows players to vote for a Ghosts"
  
set your own custom command. take a look at "sm_ghosts_cmds_***"

ConVars

// 0 - disabled, 1 - enable this MyJailbreak SourceMod plugin
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_enable "1"

// Set your chat prefix for this plugin.
// -
// Default: "[{green}MyJB.Ghosts{default}]"
sm_ghosts_prefix "[{green}MyJB.Ghosts{default}]"

// Set your custom chat command for Event voting(!ghosts (no 'sm_'/'!')(seperate with comma ', ')(max. 12 commands))
// -
// Default: "ghostwar, invisiblewar"
sm_ghosts_cmds_vote "ghostwar, invisiblewar"

// Set your custom chat command for set Event(!setghosts (no 'sm_'/'!')(seperate with comma ', ')(max. 12 commands))
// -
// Default: "sghosts, sghostwar, sg"
sm_ghosts_cmds_set "sghosts, sghostwar, sg"

// 0 - disabled, 1 - allow warden to set ghosts round
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_warden "1"

// 0 - disabled, 1 - allow admin/vip to set ghosts round
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_admin "1"

// Set flag for admin/vip to set this Event Day.
// -
// Default: "g"
sm_ghosts_flag "g"

// 0 - disabled, 1 - allow player to vote for ghosts
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_vote "1"

// 0 - T teleport to CT spawn, 1 - cell doors auto open
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_spawn "1"

// When admin set event (!setghosts) = 0 - start event next round, 1 - start event current round
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_begin_admin "1"

// When warden set event (!setghosts) = 0 - start event next round, 1 - start event current round
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_begin_warden "1"

// When users vote for event (!ghosts) = 0 - start event next round, 1 - start event current round
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_begin_vote "0"

// When warden/admin start eventday voting (!sm_voteday) and event wins = 0 - start event next round, 1 - start event current round
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_begin_daysvote "0"

// 0 - start event in current round from current player positions, 1 - teleport players to spawn when start event on current round(only when sm_*_begin_admin, sm_*_begin_warden, sm_*_begin_vote or sm_*_begin_daysvote is on '1')
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_teleport_spawn "0"

// Rounds to play in a row
// -
// Default: "1"
// Minimum: "1.000000"
sm_ghosts_rounds "1"

// Round time in minutes for a single ghosts round
// -
// Default: "5"
// Minimum: "1.000000"
sm_ghosts_roundtime "5"

// Time in seconds until the beacon turned on (set to 0 to disable)
// -
// Default: "240"
// Minimum: "0.000000"
sm_ghosts_beacon_time "240"

// Time in seconds players can't deal damage
// -
// Default: "30"
// Minimum: "0.000000"
sm_ghosts_trucetime "30"

// Time in seconds players are invisible & immortal
// -
// Default: "6.0"
// Minimum: "1.000000"
sm_ghosts_invisible_time "6.0"

// Time in seconds players are visible & mortal
// -
// Default: "2.0"
// Minimum: "1.000000"
sm_ghosts_visisble_time "2.0"

// Rounds cooldown after a event until event can be start again
// -
// Default: "3"
// Minimum: "0.000000"
sm_ghosts_cooldown_day "3"

// Rounds until event can be start after mapchange.
// -
// Default: "3"
// Minimum: "0.000000"
sm_ghosts_cooldown_start "3"

// 0 - disabled, 1 - ignore the cooldown when admin/vip set ghosts round
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_cooldown_admin "1"

// 0 - disabled, 1 - enable sounds
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_sounds_enable "1"

// Path to the soundfile which should be played for a start.
// -
// Default: "music/MyJailbreak/start.mp3"
sm_ghosts_sounds_start "music/MyJailbreak/start.mp3"

// 0 - disabled, 1 - enable overlays
// -
// Default: "1"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_overlays_enable "1"

// Path to the start Overlay DONT TYPE .vmt or .vft
// -
// Default: "overlays/MyJailbreak/start"
sm_ghosts_overlays_start "overlays/MyJailbreak/start"

// 0 - disabled, 1 - enable LR for last round and end eventday
// -
// Default: "0"
// Minimum: "0.000000"
// Maximum: "1.000000"
sm_ghosts_allow_lr "0"

Files

/addons/sourcemod/plugins/MyJailbreak/ghosts.smx
/addons/sourcemod/scripting/MyJailbreak/ghosts.sp
/addons/sourcemod/translation/MyJailbreak.Ghosts.phrases.txt

Clone this wiki locally