1. Colored messages:
http://forums.alliedmods.net/showthr...ght=color+chat
2. Use a task: in "public Gravity_Handler", after the switch statement:
Code:
set_task( 30.0, "normal_gravity", id );
// - - -
public normal_gravity( id )
{
if( !is_user_alive( id ) )
return 0;
fm_set_user_gravity( id, 1.0 );
return 1;
}
Quote:
|
and the speed manager doesent work why?
|
You have to set the speed not only in that function... CurWeapon for instance.
__________________