View Single Post
Re: introducing... BotAim 2!
Old
  (#36)
sPlOrYgOn
<-- He did it.
 
sPlOrYgOn's Avatar
 
Status: Offline
Posts: 1,558
Join Date: Jan 2004
Location: Los Angeles, California, USA, North America, Earth, Solar System, Milky Way.
Default Re: introducing... BotAim 2! - 06-03-2005

hmm
Code:
   // is the plugin disabled ?
   if (!botaim_enabled)
      return; // then don't do anything
should rather be
Code:
   // is the plugin disabled ?
   if (!botaim_enabled)
      RETURN_META (MRES_IGNORED); // then don't do anything
or else you get flooded by metamod saying it didn't set a metaresult..
[edit]
some good settings I've noticed are
botaim_damper_coefficient_x 0.001
botaim_damper_coefficient_y 0.001
botaim_notarget_slowdown_ratio 0.5
and rest on default

but they do shoot above the head a lot..
[/edit]
[edit2]
they also can't aim with nade or shoot breakables.
[/edit2]

Last edited by sPlOrYgOn; 06-03-2005 at 05:22..
  
Reply With Quote