Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- /*------------------------------[ Infinitife Nitro ]-----------------------------------
- This filterscript is made by bert aka boemeles
- Vehicle with nos check made by [Fackin']Luke.
- How does it work: simply press and hold the left mousebutton (or any other key you
- defined for start nos and keep the fun going :D
- ---------------------------------------------------------------------------------------*/
- public OnFilterScriptInit()
- {
- print("\n-----------------------------------");
- print("Infinite nitro by Bert aka boemeles"); //me!
- print("-----------------------------------\n");
- SetTimer("NitroReset", 3000, 1);
- return 1;
- }
- forward NitroReset();
- public NitroReset()
- {
- for(new i = 0; i<MAX_PLAYERS; i++)
- {
- if(!IsPlayerInInvalidNosVehicle(i,GetPlayerVehicleID(i))) //ty @ [fackin'] luke //notice the "!"
- {
- new vehicle = GetPlayerVehicleID(i);
- AddVehicleComponent(vehicle, 1010);
- }
- }
- }
- //-------------------------[ IsPlayerInValidNosVehicle ]-------------------------------
- IsPlayerInInvalidNosVehicle(playerid,vehicleid)
- {
- #define MAX_INVALID_NOS_VEHICLES 29
- new InvalidNosVehicles[MAX_INVALID_NOS_VEHICLES] =
- {
- 581,523,462,521,463,522,461,448,468,586,
- 509,481,510,472,473,493,595,484,430,453,
- 452,446,454,590,569,537,538,570,449
- };
- vehicleid = GetPlayerVehicleID(playerid);
- if(IsPlayerInVehicle(playerid,vehicleid))
- {
- for(new i = 0; i < MAX_INVALID_NOS_VEHICLES; i++)
- {
- if(GetVehicleModel(vehicleid) == InvalidNosVehicles[i])
- {
- return true;
- }
- }
- }
- return false;
- }
- // end of it!
Advertisement
Add Comment
Please, Sign In to add comment