05.08.2015, 19:12
(
Последний раз редактировалось jamesmith12; 05.08.2015 в 20:17.
)
J'S SimpleAnti Fall On Spawn

In This Filterscript it will prevent the player to fall inside the ground , like Slow object Loading when player Spawn
Here's The Timer Code You Can Change This If You Want
If the player is already unfreeze the bip sound will play
PASTE BIN

SOLID FILES

Credits to ME
Here's The Timer Code You Can Change This If You Want
PHP код:
if( GetPlayerPing ( playerid ) < 100 ) {
SetTimerEx( "ObjectFinishLoad", 5000, 0, "e", playerid );
}
else if( GetPlayerPing ( playerid ) > 100 ) {
SetTimerEx( "ObjectFinishLoad", 3000, 0, "e", playerid );
}
else if( GetPlayerPing ( playerid ) > 200 ) {
SetTimerEx( "ObjectFinishLoad", 3200, 0, "e", playerid );
}
else if( GetPlayerPing ( playerid ) > 300 ) {
SetTimerEx( "ObjectFinishLoad", 3700, 0, "e", playerid );
}
else if( GetPlayerPing ( playerid ) > 500 ) {
SetTimerEx( "ObjectFinishLoad", 4000, 0, "e", playerid );
}
else {
SetTimerEx( "ObjectFinishLoad", 5000, 0, "e", playerid );
}

PASTE BIN

SOLID FILES

Credits to ME