View Single Post
Alka
AMX Mod X Plugin Approver
Join Date: Dec 2006
Location: malloc(null)
Old 05-21-2007 , 13:29   Re: WalkGuard - V1.1
Reply With Quote #20

change in source (.sma) this
Code:
  if (is_user_bot(player))
  {
   user_slap(player, get_pcvar_num(pcv_botdamage), 1)
  } else
  {
   user_slap(player, get_pcvar_num(pcv_damage), 1)
  }
->
Code:
  if (is_user_bot(player))
  {
   user_slap(player, get_pcvar_num(pcv_botdamage), 0)
  } else
  {
   user_slap(player, get_pcvar_num(pcv_damage), 0)
  }
__________________
Still...lovin' . Connor noob! Hello
Alka is offline