This won't work all time, since you're setting "100" as max value of random num. The chance to reach a value smaller than the cvar in this case, is 29%. Also, change this:
Code:
public fwHamPlayerSpawnPost(id) {
if(!is_user_connected(id))
return HAM_IGNORED
StartEvent(id)
return HAM_OVERRIDE
}
Code:
public fwHamPlayerSpawnPost(id) {
if(!is_user_alive(id))
return
StartEvent(id)
}
NOTE: return values are ignored in post forwards.
__________________