07.01.2011, 17:16
Quote:
Don't forget to add swimming detection... You don't wana swim with a laser sticked 1ft away from your arm.
|
Add this
Код:
if(IsPlayerSwimming(playerid)) return 1;
Код:
if(IsPlayerInAnyVehicle(playerid)) return 1;
Код:
stock IsPlayerSwimming(playerid) { new animation = GetPlayerAnimationIndex(playerid); if(animation == 1538 || animation == 1539) return 1; return 0; }