Jump to content

Atton

Members
  • Posts

    211
  • Joined

  • Last visited

Everything posted by Atton

  1. There is likely one or more resources running server side that are eating the ram.
  2. Atton

    xml files

    Do yourself a favor and just leave XML files alone.
  3. Atton

    Drift Script

    I would suggest using the newest version if you have not already. If that does not help than contact the programer or try fixing the code yourself. You can find errors with /debugscript 3
  4. That is certainly true however an example if often useful not to mention decompilng is good for finding exploits.
  5. Decompiling Lua 5.1 bytecode comes with a trivial degree of complexity. This is because of the availability of effective decompilers, I have even made a video on this subject. To anyone who thinks compiling is a security measure I will refer you to this by the oxford dictionaries. "convert (a program) into a machine-code or lower-level form in which the program can be executed." As for the extra layers of protection the MTA compiler provides, figure that out yourself. Faaf, I did it for free.
  6. In many cases with older systems it would not run at all.
  7. Accelerated Massive Parallelism or AMP is a tool that allows you to use the GPU to perform mathematical operations on the GPU. From what I know the GPU is simply much better at doing this. Its standard in VS2012 and may even work with linux OpenGL, below is an example of simple addition. I would suggest consideration of this technology as it might be helpful with certain operations. https://en.wikipedia.org/wiki/C%2B%2B_AMP void CppAmpMethod() { const int size = 5; int aCPP[] = {1, 2, 3, 4, 5}; int bCPP[] = {6, 7, 8, 9, 10}; int sumCPP[size]; // Create C++ AMP objects. array_view<const int, 1> a(size, aCPP); array_view<const int, 1> b(size, bCPP); array_view<int, 1> sum(size, sumCPP); sum.discard_data(); parallel_for_each( sum.extent,[=](index<1> idx) restrict(amp) { sum[idx] = a[idx] + b[idx]; } ); // Print the results. The expected output is "7, 9, 11, 13, 15". for (int i = 0; i < size; i++) { std::cout << sum[i] << "\n"; } } Also this video might be interesting.
  8. Both C++ and Python are better documented, they are also offered as classes in schools more often than Lua. If you kinda understand the basics of C++ or Python, Lua becomes pretty easy.
  9. In that case try checking the export
  10. [quote name=..&G:..][quote name=..&G:..] using it's destroy function, I keep getting "Bad 'custom blip' argument". Well, I said that I am using the script's destroy function, but I get that Bad custom blip argument, error.. In which case find the exported function and values it takes, then write your call in accordance with it.
  11. You would need to learn some basic programming. In which case try learning some basic C++ or Python, then progress onto Lua.
  12. Atton

    where do i save?

    Read this it will give you an understanding of how it all works. https://wiki.multitheftauto.com/wiki/Sc ... troduction
  13. Atton

    [REQ]Vehicles

    In which case post your best effort in terms of you want. Also take the time to clearly explain what you want said code to do.
  14. [Refresh] will check check the server for new resources [start] will start said resources [Restart] will restart a resource [stop] will stop a resource In short read the server manual https://wiki.multitheftauto.com/wiki/Se ... 2Fgamemode
  15. Atton

    Script search

    If you use sandboxie correctly, it can work to run multiple clients on the same os. However you would need quite a lot in the way of system resources to support things like this.
  16. If i upload them what are you going to do? Look at them.
  17. Funny since you gladly made NBG's script public domain, well they will remain on github & torrent. It does not matter, you can't just waltz around and assume you're free to release other people's work without their consent. Who are you to deem whether they're not used anymore or not? Even if such were the case, that doesn't automatically give you the rights to release them. The author make the rules, not you. If the author wants it to be private, then so be it. They made it - their rules. You're not doing anyone a good deed by releasing their work publicly without permission. You're just making yourself look like a disrespectful knobhead. Whatever you say
  18. Those are a set of executable's, but upload them and we might be able to take a better look at them. http://i.imgur.com/ZuoVH77.png
  19. Atton

    [HELP]Event

    Post some code or some files.
  20. Funny since you gladly made NBG's script public domain, well they will remain on github & torrent.
  21. Its legal up the 9000th trimester, so think about it. http://www.plannedparenthood.org/learn/ ... procedures
  22. This might be worth putting under the client board or something like that.
  23. Can someone confirm if this is legit? Video proof
×
×
  • Create New...