Jump to content
    1. Welcome to GTAForums!

    1. GTANet.com

    1. GTA Online

      1. Los Santos Drug Wars
      2. Updates
      3. Find Lobbies & Players
      4. Guides & Strategies
      5. Vehicles
      6. Content Creator
      7. Help & Support
    2. Red Dead Online

      1. Blood Money
      2. Frontier Pursuits
      3. Find Lobbies & Outlaws
      4. Help & Support
    3. Crews

    1. Grand Theft Auto Series

      1. Bugs*
      2. St. Andrews Cathedral
    2. GTA VI

    3. GTA V

      1. Guides & Strategies
      2. Help & Support
    4. GTA IV

      1. The Lost and Damned
      2. The Ballad of Gay Tony
      3. Guides & Strategies
      4. Help & Support
    5. GTA San Andreas

      1. Classic GTA SA
      2. Guides & Strategies
      3. Help & Support
    6. GTA Vice City

      1. Classic GTA VC
      2. Guides & Strategies
      3. Help & Support
    7. GTA III

      1. Classic GTA III
      2. Guides & Strategies
      3. Help & Support
    8. Portable Games

      1. GTA Chinatown Wars
      2. GTA Vice City Stories
      3. GTA Liberty City Stories
    9. Top-Down Games

      1. GTA Advance
      2. GTA 2
      3. GTA
    1. Red Dead Redemption 2

      1. PC
      2. Help & Support
    2. Red Dead Redemption

    1. GTA Mods

      1. GTA V
      2. GTA IV
      3. GTA III, VC & SA
      4. Tutorials
    2. Red Dead Mods

      1. Documentation
    3. Mod Showroom

      1. Scripts & Plugins
      2. Maps
      3. Total Conversions
      4. Vehicles
      5. Textures
      6. Characters
      7. Tools
      8. Other
      9. Workshop
    4. Featured Mods

      1. Design Your Own Mission
      2. OpenIV
      3. GTA: Underground
      4. GTA: Liberty City
      5. GTA: State of Liberty
    1. Rockstar Games

    2. Rockstar Collectors

    1. Off-Topic

      1. General Chat
      2. Gaming
      3. Technology
      4. Movies & TV
      5. Music
      6. Sports
      7. Vehicles
    2. Expression

      1. Graphics / Visual Arts
      2. GFX Requests & Tutorials
      3. Writers' Discussion
      4. Debates & Discussion
    1. Announcements

    2. Support

    3. Suggestions

Happy Holidays from the GTANet team!

Coding to delete car for gta5


defiantx
 Share

Recommended Posts

this is the code im trying to change…i want to change:
VEHICLE.SET_VEHICLE_DOORS_LOCKED(playerVehicle, 2)
or delete the car after locked doors happen
to delete the (random) car off the map…im using another mod that creates cars to steal but it doesn’t delete them so when i deliver the car and get the cash the car stays parked at the delivery spot, blocking further attempts to deliver more cars.

function carsals.tick()
	local playerPed = PLAYER.PLAYER_PED_ID()
	local player = PLAYER.GET_PLAYER_PED(playerPed) 
	local location = ENTITY.GET_ENTITY_COORDS(playerPed, nil)
	local playerVehicle = PED.GET_VEHICLE_PED_IS_USING(playerPed)
	local veh = PED.GET_VEHICLE_PED_IS_IN(playerPed, true)
	
	
	if ( carsals.playerIsAtStation(location) and VEHICLE.IS_THIS_MODEL_A_CAR(ENTITY.GET_ENTITY_MODEL(veh))) then
	    
		carsals.drawText("Press Right on the D-pad to sell car!", 0.5, 0.5, 0.75)
		if (VEHICLE.IS_THIS_MODEL_A_CAR(ENTITY.GET_ENTITY_MODEL(playerVehicle)) and get_key_pressed(carsals.key.use) or CONTROLS.IS_CONTROL_PRESSED(2, 74)) then
			
			
			if (PED.IS_PED_MODEL(playerPed, GAMEPLAY.GET_HASH_KEY("player_zero"))) then model = 0
			elseif (PED.IS_PED_MODEL(playerPed, GAMEPLAY.GET_HASH_KEY("player_one"))) then model = 1                                         
			elseif (PED.IS_PED_MODEL(playerPed, GAMEPLAY.GET_HASH_KEY("player_two"))) then model = 2 end
			local statname = "SP"..model.."_TOTAL_CASH"
			local hash = GAMEPLAY.GET_HASH_KEY(statname)
			local bool, val = STATS.STAT_GET_INT(hash, 0, -1)
			
			local BB = - (VEHICLE.GET_VEHICLE_ENGINE_HEALTH(playerVehicle) - 1000) 
			
			math.randomseed(os.time())
			local payMe = math.random (50, 1000)
			local payMe2 = math.random (50, 3000)
			local money = payMe + payMe2  
			local money2 = BB * 100
			local finmoney = money - money2
			
			if ( BB < 10 ) then				
			
			VEHICLE.SET_VEHICLE_UNDRIVEABLE(playerVehicle, true)
			CAM.DO_SCREEN_FADE_OUT(2500)
			wait(2500)
			carsals.createPickup("PICKUP_MONEY_SECURITY_CASE", -71.0, -1827.834, 26.943, finmoney)
			carsals.createPickup("PICKUP_MONEY_SECURITY_CASE", -350.0, -115.357, 38.6966, finmoney)
			wait(2500)
			TIME.ADD_TO_CLOCK_TIME(0, 10, 0)
			CAM.DO_SCREEN_FADE_IN(2500)
			AI.TASK_LEAVE_VEHICLE(playerPed, playerVehicle, 0)
			VEHICLE.SET_VEHICLE_DOORS_LOCKED(playerVehicle, 2)
			wait(1000)
			AUDIO.PLAY_MISSION_COMPLETE_AUDIO("MICHAEL_BIG_01")
			carsals.notify("Thanks for the delivery!")
			else
				carsals.notify("Sorry, this car is too wrecked.")
				AUDIO.PLAY_SOUND_FRONTEND(-1, "ROBBERY_MONEY_TOTAL", "HUD_FRONTEND_CUSTOM_SOUNDSET", false)	
			end
		end
	end
end
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.