08.03.2011, 18:15
Actually OnPlayerUpdate gets called 100+ times a sec.
You can make an EX update
later, replace your OnPlayerUpdate with this
You can make an EX update
pawn Код:
public OnPlayerConnect( playerid )
{
SetTimerEx( "OnPlayerUpdateEx", 1000, 1, "i", playerid );
return 1;
}
pawn Код:
forward OnPlayerUpdateEx( playerid );
public OnPlayerUpdateEx( playerid )
{
// Your OnPlayerUpdate code.
return 1;
}

