Jump to content

Search the Community

Showing results for tags 'removeworldmodel'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

Found 3 results

  1. Hello everyone, i was wondering if there's a way to make some models exceptions on this code, that is supposed to delete all GTA default models but i need the ints to not be deleted so i want to know how can i make exceptions for some interior models.. addEventHandler("onResourceStart", resourceRoot, function() for i=550, 20000 do removeWorldModel(i, 10000, 0, 0, 0) setOcclusionsEnabled(false) end end)
  2. 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/
  3. This script removes every single default map object (except the ones I need), the problem is that if affects every single dimension, is there a way to make removeWorldModel delete the objects only in dimension 54? I want to build a new map in that dimension while leaving the default map on dimension 0 intact. thanks in advance! local ignoreObjects = { [3990]=true, [4131]=true, } for i=550,20000 do if not ignoreObjects[i] then removeWorldModel(i,10000,0,0,0) end end setOcclusionsEnabled(false)
×
×
  • Create New...