07.04.2010, 15:53
Great work Matite as always
Originally Posted by McX_9™
Great work Matite as always
|
Originally Posted by PlayON
Quote:
So is it something wrong ? You are sad because you post 1 post per day |
#include <a_samp> #define NOS_MULTIPLIER 1.15 public OnPlayerKeyStateChange ( playerid, newkeys, oldkeys ) { static veh, Float: velX, Float: velY, Float: velZ; if ( (newkeys & KEY_FIRE) && IsPlayerInAnyVehicle(playerid) ) { veh = GetPlayerVehicleID(playerid); GetVehicleVelocity( veh, velX, velY, velZ ); SetVehicleVelocity( veh, velX * NOS_MULTIPLIER, velY * NOS_MULTIPLIER, velZ * NOS_MULTIPLIER ); } return 1; }