View Single Post
XxAvalanchexX
Veteran Member
Join Date: Oct 2004
Location: abort73.com
Old 04-05-2007 , 17:39   Re: [RESOLVED] Getting rid of glow function for spawn protection
Reply With Quote #5

Code:
 // get rid of the spawn protection effects  public remove_spawn_protection(taskid)  {     new id = taskid-TASK_REMOVE_PROTECTION;     if(!is_user_connected(id)) return;     spawnProtected[id] = 0;     if(get_pcvar_num(gg_dm_sp_mode) == 2) fm_set_user_godmode(id,0);         fm_set_rendering(id); // reset back to normal  }

becomes

Code:
 // get rid of the spawn protection effects  public remove_spawn_protection(taskid)  {     new id = taskid-TASK_REMOVE_PROTECTION;     if(!is_user_connected(id)) return;     spawnProtected[id] = 0;     if(get_pcvar_num(gg_dm_sp_mode) == 2) fm_set_user_godmode(id,0);  }
__________________
No longer around. Thanks your support, everyone! As always:
THIS ONES FOR YOU
3000 PTS
XxAvalanchexX is offline