dkmm 0 Posted May 29, 2019 Share Posted May 29, 2019 Hello, is it possible to get the position of every prop in Radius X. As example... lets take this Ball "prop_beachball_02" I want to type a key and then it loads up all Beachballs in Radius X and creates a blip on the map. Typing a Key and creating a Blip isnt the problem tho Best Regards dkmm Link to post Share on other sites
Guest Posted May 29, 2019 Share Posted May 29, 2019 World.GetAllProps() & World.GetNearbyProps() When you are in Visual Studio, if you type something like World, Game, Vehicle etc... when you type the . after it, you should see a list of all the functions that are available. Those results can be filtered by what you type after the period. So if you type World.prop, it will show a list of all the functions involving props. If you don't find what you want in World, try Game. The more you experiment, the more you'll discover. Link to post Share on other sites