Author Topic: "Respawning in " function call?  (Read 1710 times)

When you die, it says "Respawning in blah seconds...", is there a function that calls it?

on the client side or server side?

Client sided:
handleYourDeath(%msgType, %deathMsg, %killedName, %killerName, %respawnTime)

If you're trying to set custom respawn times, use this: http://greek2me.us/code/Support_RespawnTime.cs

If you're trying to set custom respawn times, use this: http://greek2me.us/code/Support_RespawnTime.cs

Code: [Select]
if(%isMini = isObject(%mini))

Code: [Select]
if(%isMini = isObject(%mini))
Shorthand for:
Code: [Select]
%isMini = isObject(%mini);
if(%isMini)
    ...
Then %isMini is used again later.