Drackom Posted March 17, 2023 Share Posted March 17, 2023 Necesito saber como puedo ejecutarlo en mi propio servidor: Lo que hace es eliminar absolutamente todos los modelos en el mapeo. for i=550,20000 do i=550,20000 do removeWorldModel(i,10000,0,0,0) endend setOcclusionsEnabled(false) -- Also disable occlusions when removing certain models setWaterLevel(-5000) -- Also hide the default water as it will be full of holes Intenté crearlo como un resource agregándole el meta.xml pero no me funcionó. Fuente: https://wiki.multitheftauto.com/wiki/RemoveWorldModel Créditos: https://forum.multitheftauto.com/profile/44464-ryuto/ Link to comment
AndresTVz Posted May 26, 2023 Share Posted May 26, 2023 server.lua addCommandHandler('rw', function(player, cmd, world) for i = 550, 19999 do removeWorldModel(i, 10000, 0, 0, 0) end setOcclusionsEnabled(false) setWaterLevel(-5000) end) 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