Graefal Posted June 17, 2016 Share Posted June 17, 2016 How can i completely make gta v world clean with scripthookv ? I've tried but still found vehicle sound, vehicle moving from far, michael car and family. Link to comment Share on other sites More sharing options...
CliffHanger Posted June 17, 2016 Share Posted June 17, 2016 There's a topic recently created that seems to cover what you're looking for. http://gtaforums.com/topic/858007-disabling-ambient-audio/ Link to comment Share on other sites More sharing options...
aimless Posted June 18, 2016 Share Posted June 18, 2016 For the moving vehicles. Function.Call((Hash)0xF796359A959DF65D, false); //Display distant vehicles Link to comment Share on other sites More sharing options...
bhavinbhai2707 Posted June 18, 2016 Share Posted June 18, 2016 actually how do u clean world just like option clean nearby roads Link to comment Share on other sites More sharing options...
jedijosh920 Posted June 18, 2016 Share Posted June 18, 2016 actually how do u clean world just like option clean nearby roads Get all the peds/vehicles in the nearby area and delete them. bhavinbhai2707 1 Link to comment Share on other sites More sharing options...
bhavinbhai2707 Posted June 18, 2016 Share Posted June 18, 2016 actually how do u clean world just like option clean nearby roads Get all the peds/vehicles in the nearby area and delete them. well thanx for the help will definitely try it Link to comment Share on other sites More sharing options...
MoMadenU Posted June 18, 2016 Share Posted June 18, 2016 My Clean All: Function.Call(Hash.SET_VEHICLE_DENSITY_MULTIPLIER_THIS_FRAME, 0f); Function.Call(Hash.SET_RANDOM_VEHICLE_DENSITY_MULTIPLIER_THIS_FRAME, 0f); Function.Call(Hash.SET_PARKED_VEHICLE_DENSITY_MULTIPLIER_THIS_FRAME, 0f); Function.Call(Hash.SET_PED_DENSITY_MULTIPLIER_THIS_FRAME, 0f); Function.Call(Hash.SET_SCENARIO_PED_DENSITY_MULTIPLIER_THIS_FRAME, 0f, 0f); Function.Call((Hash)0x2F9A292AD0A3BD89); Function.Call((Hash)0x5F3B7749C112D552); Function.Call(Hash.DELETE_ALL_TRAINS); Game.Player.WantedLevel = 0; Function.Call(Hash.DESTROY_MOBILE_PHONE); var pos = Game.Player.Character.Position; Function.Call(Hash.SET_GARBAGE_TRUCKS, 0); Function.Call(Hash.SET_RANDOM_BOATS, 0); Function.Call(Hash.SET_RANDOM_TRAINS, 0); Function.Call(Hash.CLEAR_AREA, pos.X, pos.Y, pos.Z, 9000f, 0, 0, 0, 0, 0); Function.Call(Hash.CLEAR_AREA_OF_PEDS, pos.X, pos.Y, pos.Z, 9000f, 0); Function.Call(Hash.CLEAR_AREA_OF_VEHICLES, pos.X, pos.Y, pos.Z, 9000f, 0); Function.Call(Hash.CLEAR_AREA_OF_OBJECTS, pos.X, pos.Y, pos.Z, 9000f, 0); Graefal 1 Link to comment Share on other sites More sharing options...
Graefal Posted June 18, 2016 Author Share Posted June 18, 2016 Thank y'all i'll try the solutions!! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now