23.08.2013, 21:14
PHP код:
public OnPlayerConnect ( playerid )
{
if ( GetPlayerWantedLevel ( playerid ) > 0 )
SetTimerEx ( "TirarProcura" , 1000 * 3 * 60 * GetPlayerWantedLevel ( playerid ) , false , "i" , playerid ) ;
return 1;
}
forward TirarProcura ( playerid ) ;
public TirarProcura ( playerid )
{
SetPlayerWantedLevel ( playerid , 0 ) ;
return 1;
}