Jump to content

Atton

Members
  • Posts

    211
  • Joined

  • Last visited

Details

  • Gang
    JFA

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Atton's Achievements

Chump

Chump (17/54)

0

Reputation

  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
×
×
  • Create New...