I'm guessing get their spawnpoints in ResetHUD and save them, then use that?
Code:
register_event("ResetHUD", "GetSpawnOrigin", "b");
// ...
new g_iOrigin[33][3];
public GetSpawnOrigin( id )
{
get_user_origin(id, g_iOrigin[id], 0);
}
__________________