Binarybunny Posted May 4, 2018 Share Posted May 4, 2018 So I just got into GTA V modding using C#. I'm new to OPENIV so I am not sure where to find a tent model. I would like to spawn it in and here is my code. if (e.KeyCode == Keys.H) { //Vector3 Holds 3 values, X, Y & Z. We're assigning the value of the players position + the forwardvector //which is .1 unit away from the character * 5; Vector3 spawnLocation = playerChar.Position + (playerChar.ForwardVector * 5); string Model_Name = "u_m_m_rivalpap"; Ped tent = GTA.World.CreatePed(Model_Name, spawnLocation); } Link to comment Share on other sites More sharing options...
TerableSpelar Posted May 10, 2018 Share Posted May 10, 2018 You can use CodeWalker to find info on props. Is this what your looking for? >>>> prop_skid_tent_01 <<<< ​ 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