Depot Posted November 16, 2010 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)
Depot Posted November 17, 2010 Author Posted November 17, 2010 I need command change dimension interior and save!
Static-X Posted November 18, 2010 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
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