Jump to content

MisterQuestions

Members
  • Posts

    460
  • Joined

  • Last visited

Posts posted by MisterQuestions

  1. I think this has been awnsered quite enough times, but well, isn't that simple.

    You need a way to handle gamemodes and players, a custom map manager that will load maps just for x gamemode players and this its just a poor description of everything required.

  2. Has tu mapa normal e incluye un script así, no lo he probado.

    addEventHandler("onResourceStart",resourceRoot,
        function()
            for _,element in pairs(getElementChildren(resourceRoot)) do
                setElementDimension(element,tuDimension)
        end
    )

     

  3. Its actually complex if you have no experience at all.

    You have to generate individual maps for only certain clients on each arena (a custom map manager), individual gamemode states, etc.

    Generating map in client-side will make that map load for only that client, you also have to download map files and start map scripts which is another issue.

  4. Some metatable knowledge may help on this, I'm not really sure if Bonsai's wrapper its secure at all. Anyways, using __index and __newindex keys on environment meta should make it work once you try variable capturing.

    There exists some explained way already, which is really efficient.

    Thats how all my multigamemodes handle map script(s) load/execute.

    • Like 1
×
×
  • Create New...