Depot Posted November 16, 2010 Share Posted November 16, 2010 I would like to know if there was any kind of script or anyway to change the dimention inside the game. (HOUSES IN MTA:PARADISE) Link to comment
ChaseOquinn Posted November 16, 2010 Share Posted November 16, 2010 Use the setElementDimension function Link to comment
greacius Posted November 17, 2010 Share Posted November 17, 2010 Use MYSQL.. What do you mean? Link to comment
Depot Posted November 17, 2010 Author Share Posted November 17, 2010 I need command change dimension interior and save! Link to comment
Static-X Posted November 18, 2010 Share Posted November 18, 2010 mysql maybe not good for a beginner ( if you are one ), use setAccountData. afaik, you want to change a player's interior and dimension and make it save, so it would probably be/like SET DIMENSION: -- SERVERSIDED addCommandHandler("setdimen",function(player,cmd,id) if not id then outputChatBox("You need to enter an dimension id! (0-65535)",player,255) elseif id >=65535 then outputChatBox("Specific dimension doesn't exists! use (0-65535)",player,255) else setElementDimension(player,id) outputChatBox("You teleported to dimension: "..id,0,255) end end ) Here for interior, https://wiki.multitheftauto.com/wiki/SetElementInterior, As mentioned in first line, you can use setAccountData for saving Link to comment
Depot Posted November 18, 2010 Author Share Posted November 18, 2010 Thx all, perfect Link to comment
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