bigjohn863 Posted October 29, 2016 Share Posted October 29, 2016 ENTITY_COORDS doesn't teleport ped's on ps3 console since Version 1.16. Does anyone have an up to date solution for teleporting a ped to my current coordinates in the game? Apparently rockstar patched the function, however there is many mod menus available that have updated and now have the feature working again. I would like to implement this change in my menu as well. NETWORK::NETWORK_REQUEST_CONTROL_OF_ENTITY(ClientID); if (!NETWORK::NETWORK_HAS_CONTROL_OF_ENTITY(ClientID)) { NETWORK::NETWORK_REQUEST_CONTROL_OF_ENTITY(ClientID); SYSTEM::WAIT(0); } NETWORK::NETWORK_REQUEST_CONTROL_OF_NETWORK_ID(NETWORK::NETWORK_GET_NETWORK_ID_FROM_ENTITY(ClientID)); if ( !NETWORK::NETWORK_HAS_CONTROL_OF_NETWORK_ID(NETWORK::NETWORK_GET_NETWORK_ID_FROM_ENTITY(ClientID)) ) { NETWORK::NETWORK_REQUEST_CONTROL_OF_NETWORK_ID(NETWORK::NETWORK_GET_NETWORK_ID_FROM_ENTITY(ClientID)); SYSTEM::WAIT(0); } ENTITY::SET_ENTITY_COORDS(ClientID, MyPosition.x, MyPosition.y, MyPosition.z, false, false, false, true); drawNotification("~b~Teleported To You!"); Any assistance in the right direction would be a blessing. Link to comment Share on other sites More sharing options...
unknown modder Posted October 30, 2016 Share Posted October 30, 2016 Seems to me like you're trying to mod on gta online on a console. so you'll get no such help from here Link to comment Share on other sites More sharing options...
bigjohn863 Posted October 30, 2016 Author Share Posted October 30, 2016 You are exactly right and i did not know it was against the terms of service on this website to request such help. My apologizes. Link to comment Share on other sites More sharing options...
unknown modder Posted October 30, 2016 Share Posted October 30, 2016 You are exactly right and i did not know it was against the terms of service on this website to request such help. My apologizes. One little tip though you cannot request control of another players ped Link to comment Share on other sites More sharing options...
bigjohn863 Posted November 4, 2016 Author Share Posted November 4, 2016 You are exactly right and i did not know it was against the terms of service on this website to request such help. My apologizes. One little tip though you cannot request control of another players ped Thank You, I did figure it out .. got it working good! 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