NexusAU 35 Posted May 14, 2015 How would I go about opening up certain interiors like the Foundry for example. I'm creating a mission based mod and need access to certain interiors. This mod: https://www.gta5-mods.com/scripts/open-all-interiorsdoes exactly what I'm asking. Thanks Quote Share this post Link to post Share on other sites
FreeOffset 12 Posted May 14, 2015 (edited) Load the IPL Not sure what the Foundry is, otherwise I would look for the IPL Edited May 14, 2015 by FreeOffset Quote Share this post Link to post Share on other sites
NexusAU 35 Posted May 14, 2015 Load the IPL Not sure what the Foundry is, otherwise I would look for the IPL Thanks Quote Share this post Link to post Share on other sites
c39687 61 Posted May 14, 2015 (edited) from looking at the picture of the mod you most likely just need to unlock the doors, try this native, SET_STATE_OF_CLOSEST_DOOR_OF_TYPE(Any p0, float p1, float p2, float p3, BOOL p4, float p5, BOOL p6) documentation: http://www.gtamodding.com/wiki/SET_STATE_OF_CLOSEST_DOOR_OF_TYPE Edited May 14, 2015 by c39687 Quote Share this post Link to post Share on other sites
FreeOffset 12 Posted May 14, 2015 from looking at the picture of the mod you most likely just need to unlock the doors, try this native, SET_STATE_OF_CLOSEST_DOOR_OF_TYPE(Any p0, float p1, float p2, float p3, BOOL p4, float p5, BOOL p6) documentation: http://www.gtamodding.com/wiki/SET_STATE_OF_CLOSEST_DOOR_OF_TYPE That looks like GTA IV.... Quote Share this post Link to post Share on other sites
c39687 61 Posted May 14, 2015 oh then their website is messed up, i got that link from this page, http://www.gtamodding.com/wiki/List_of_native_functions_%28GTA_V%29 but yeah he just needs to figure out the v params Quote Share this post Link to post Share on other sites
FreeOffset 12 Posted May 14, 2015 (edited) oh then their website is messed up, i got that link from this page, http://www.gtamodding.com/wiki/List_of_native_functions_%28GTA_V%29 but yeah he just needs to figure out the v params Ahh, I see they didn't setup mediawiki with the expectations of GTAIV and GTAV having the same native names. It is basically the same in GTAV with just different door hashes, http://www.dev-c.com/nativedb/func/info/38c951a4 I will begin to play around with this Edited May 14, 2015 by FreeOffset Quote Share this post Link to post Share on other sites
c39687 61 Posted May 14, 2015 (edited) oh then their website is messed up, i got that link from this page, http://www.gtamodding.com/wiki/List_of_native_functions_%28GTA_V%29 but yeah he just needs to figure out the v params Ahh, I see they didn't setup mediawiki with the expectations of GTAIV and GTAV having the same native names. It is basically the same in GTAV with just different door hashes, http://www.dev-c.com/nativedb/func/info/38c951a4 I will begin to play around with this yeah good luck with it... I remember in IV you had to terminate some game script that locked doors (ambjimlocks iirc) so maybe the same in V. It looks like a working mod has been made (https://www.gta5-mods.com/scripts/open-all-interiors) so it should be possible. Edited May 14, 2015 by c39687 Quote Share this post Link to post Share on other sites