Jump to content

darkdreamingdan

MTA Team
  • Posts

    2,778
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by darkdreamingdan

  1. We became recently aware of this issue.  It's indeed a sad thing, and there might be an option of disabling VOIP for UAE users, but it's unclear if that will be enough.

     

    It would be nice to apply for a TRA license, but ultimately we cant afford it (applying costs 10,000 AED).  If we could get some sponsorship or donations to apply for a license, it could be an option however.

    • Thanks 3
  2. 2 minutes ago, Chase said:

    Hi, I just registered because this is the moment I've been waiting for.

    I'd love to see the limit adjuster implemented. 

    I would love to see the GTA Underground map on MTA aswell.

    I also am working on my own gamemode but I could make it a lot better with fastman92's limit adjuster. I would add more weapons, vehicles, skins, and some maps. To keep it low spec computer friendly, I would only use models and txds that are low poly and low resolution.

    I wouldn't see this as not only a new feature, but a new era of GTA multiplayer, the next big step.

    Hi Chase, thanks for visiting.

    Would you be asking your users to install a modded version of GTA? Or would you implement the whole map in MTA scripting?

  3. 15 minutes ago, Dutchman101 said:

    It would remove holdbacks from replacing SA cities with custom mapped ones, without streaming issues, and be a good replacement for the failed EIR branch that will most likely never be finished. (major pro's of EIR are found back in limit adjuster's implementation I think)

    Also it opens doors for MTA development in general as it allows manipulating internals/values that were considered fenced off for modders.

     

    2 minutes ago, CodyL said:

    Continue on my current project and improve it a lot, I would love if open limit adjuster was added, would fix so many bugs.

    Please be specific in your responses.  How are you going to use it in your server?  We need to actually know how you would implement it.

    The challenges relate to the fact that FLA requires GTASA to be restarted for each change.  I need to know specific, technical/scripting information on what is limiting you and what you were trying to achieve.

    • Like 1
  4. We don't use Geshi anymore.  We now use Google's Prettify library in both the Wiki and Forums.  It's normally quite easy to implement into a web site, you just have to add some custom JS includes and custom BBcode tags.

    I'll be releasing a Google Prettify compatible MTA syntax highlighter (the one used to link to wiki and colours) in the next few days.

    You'll need configure VBulletin or modify the source code to include the following to JS (in our forum software this is achieved by modifying the theme):

    <script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
    <script src="https://cdn.rawgit.com/google/code-prettify/master/src/lang-lua.js"></script> <!-- Lua not added by default, add it-->
    <script>
    addEventListener('load', function (event) { PR.prettyPrint() }, false);
    </script>

     

    Then you'll need to make a custom BBCode to produce the following tag (e.g. configure a [lua][/lua] bbcode):

    <pre class="prettyprint lang-lua">--LUA HERE</pre>

     

    • Like 2
  5. I've since investigated implementing MediaWiki's visual editor in depth.  It basically isn't an easy thing to add, and has a lot of moving parts.  You have to install several plugins for it to work correctly, and there were still a few bugs on our Wiki.

    We might revisit it once it becomes stable and is integrated into MediaWiki's default package.

    • Like 2
×
×
  • Create New...