Jump to content

Jusonex

Retired Staff
  • Posts

    507
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Jusonex

  1. Einstellungen --> Erweitert --> Geschwindigkeit des Serverbrowsers --> Langsam/Sehr langsam auswählen Für englisches UI: Settings --> Advanced --> Browse speed --> Slow/very slow
  2. Das eigenständige, aber inoffizielle, deutsche MTA Forum ist verfügbar unter http://mta-sa.org Solltet ihr also hier nicht schnell genug eine Antwort bekommen, werft am besten einen Blick auf mta-sa.org.
  3. Jusonex

    MTA keeps crashing

    It seems to be related to sounds. Install MTADiag to see what's wrong and post the pastebin link here: viewtopic.php?f=104&t=31668 Press 'n' when asked.
  4. Are you sure that there isn't running another server on port 22008 (gameserver port)?
  5. Multi-Threading isn't something you can integrate in a few lines of code. Instead, the entire game design and concept must be multi-threaded and GTA was never intended to be multi-threaded (most processors were singlecores when GTA had been released). Thus, patching GTA to use multi-threading effeciently would take years (we do not have GTA's sourcecode!). So I can say for sure that this will never happen.
  6. Nicht ganz. Eine Resource ist ein Ordner, der eine Datei namens meta.xml enthält. In dieser Datei sind alle nötigen Dateien aufgelistet, von denen z.B. ein Teil beim Betreten des Servers heruntergeladen wird (z.B. Bilder, Sounds und clientseitige Scripts). Da die Soundfunktionen clientseitig sind, brauchst du demzufolge ein clientseitiges Script. Für die meta.xml ergebt sich also folgendes: <meta> <script src="hitsound.lua" type="client"/> <file src="hitmarker-sound.wav"/> </meta> (Der Code im ersten Post ist dann in hitsound.lua zu finden). Für die Zukunft empfehle ich dir Fragen auf mta-sa.org zu stellen, weil du dort deutlich schneller eine Antwort bekommst als in der deutschen Sektion des offiziellen Forums.
  7. Try updating MTA: https://nightly.multitheftauto.com/?mtasa-1.4-latest
  8. SAAT ist ein Tool, mit dem du Sounds der lokalen GTA Installation ersetzen kannst und Cleo wird von MTA aus Sicherheitsgründen nicht unterstützt. Damit führen beide Lösungen zu keinem Ergebnis, sodass die einzige Möglichkeit Lua bleibt. Das Script an sich sollte in Ordnung sein. Zum Einfügen musst du es jedoch zu einer Ressource zusammenschnüren.Wie das funktioniert, kannst du hier nachlesen: https://wiki.multitheftauto.com/wiki/Resources (im Wiki findest du außerdem alles, was du für den Start wissen musst).
  9. getDistanceBetweenPoints3D returns a distance in GTA Units and 1 GTA Unit is approximately 1 meter (you can't equate fictional units with real-world units utterly). More about GTA Units: http://gta.wikia.com/Unit
  10. Switching to CEF is almost done now. You can download new installers here: https://jusonex.net/public/mta/cef/ There are a few Lua API changes, but I'll document them soon on https://wiki.multitheftauto.com/wiki/User:Jusonex or separate wiki pages. In case you find any issues or you are lacking any feature, feel free to write me a PM or contact me via IRC (#mta.cef)
  11. Jusonex

    MTA Server

    The stats system was disabled a long time ago.
  12. Try removing the following files from your GTA directory (E:\GTA San Andreas\): d3d9.dll, d3dx9_35.dll, d3dx9_42.dll
  13. Try installing ia32-libs: apt-get install ia32-libs lib32readline5 lib32ncursesw5
  14. Since there is no suitable event, the only way you can do it is calling https://wiki.multitheftauto.com/wiki/IsElementInWater within short intervalls.
  15. https://community.multitheftauto.com/index.php?p= ... s&id=10075 Malware linked in description DONE
  16. I am gonna think about choosing local/remote mode automatically based upon the protocol in the URI. You mean why it is not implemented in a current release? It is a feature branch yet which will probably be merged as soon as it is stable. Yes, you need both custom server and client. You can download the latest version here: http://jusonex.net/public/mta/awesomium/full-r6798.exe
  17. I guess the PHP script outputs $_SERVER['REMOTE_ADDR']. Upload the following PHP script and change the url passed to callRemote: <?php echo $_SERVER['REMOTE_ADDR']; ?>
  18. Class information are stored in the Lua registry internally. There are two ways to access __get/__set: 1.) Use the userdata (element) instead of the class: debug.getmetatable(element) 2.) Use the registry local classInfo = debug.getregistry().mt local getFunctions = classInfo.Account.__get
  19. http://bugs.mtasa.com/view.php?id=6571
  20. https://wiki.multitheftauto.com/wiki/Us ... ow_to_test I added an installer a while ago. It has already been implemented, but needs a lot of testing yet. So, if you want to speed it up, it would help a lot if you'd find remainig bugs or especially issues with the URL filter. btw: New build available: http://jusonex.net/public/mta/awesomium/full-r6798.exe
  21. It's the cursor icon ID: https://wiki.multitheftauto.com/wiki/Us ... nex#Events
  22. Install this: http://www.microsoft.com/en-us/download ... x?id=40784 (the x86 package)
  23. You can find the exact path in the registry (--> regedit) at: 64-Bit: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Multi Theft Auto: San Andreas All\Common 32-Bit: HKEY_LOCAL_MACHINE\SOFTWARE\Multi Theft Auto: San Andreas All\Common
  24. They are stored in the first resources folder you started MTA from after the update. That means if you started MTA 1.3 first, the resources will be stored in C:\Program Files (x86)\MTA San Andreas 1.3\mods\deathmatch\resources.
  25. To make things easier, I compiled an installer now: http://jusonex.net/public/mta/awesomium/full-r6657.exe (you have to run it as admin manually). Most of the work is done now which means it's time to test it carefully. For this purpose I started a public testserver: mtasa://windows.jusonex.net If Adobe Flash doesn't work, you'll have to install "Adobe Flash Player for other browsers" (--> http://get.adobe.com/flashplayer/)
×
×
  • Create New...