Jump to content

Jusonex

Retired Staff
  • Posts

    507
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Jusonex

  1. You can fix it yourself on https://translate.mtasa.com/. However, I replaced "entfernte Websites" by "externe Webseiten" to clarify it a bit. If you know a better translation, feel free to edit it.
  2. I fixed it via remote administration by copying all CEF DLLs to the CEF folder (MTA San Andreas 1.5\MTA\CEF). The DLL search path was somehow wrong, but no idea why (PATH variables looked okay, other applications seem to work flawlessly).
  3. Looks like your installation is somehow broken. Could you please contact me on IRC? Mibbit link: https://mibbit.com/?channel=%23mta.supp ... gtanet.com
  4. Some functions (e.g. updateBrowser) you're using were removed. Please use the latest 1.5 stable (https://www.mtasa.com/ --> Download) and a current example: https://wiki.multitheftauto.com/wiki/CreateBrowser (remote example)
  5. Jusonex

    bcrypt module

    https://github.com/pzduniak/ml_bcrypt/releases Yes
  6. Either Bootcamp or virtualization via VMware Fusion which is proprietary though (VirtualBox's 3D acceleration is not very good, unfortunately, but never tested it on Mac so it might be worth a try).
  7. Jusonex

    Web browser

    First, you should read the following 2 wikipages: https://wiki.multitheftauto.com/wiki/CEF_Tutorial https://wiki.multitheftauto.com/wiki/CWebBrowser Absolutely yes. The request dialog also tells you not to enter sensitive data. However, you cannot execute javascript (to read certain data from input fields) in remote browsers, but - of course - that doesn't prevent phishing, i.e. people copying websites that look like Facebook for example.
  8. Jusonex

    [HELP] Please

    Just type: start resourceName https://wiki.multitheftauto.com/wiki/Se ... our_server
  9. Please zip and upload all files from MTA San Andreas 1.4\server\dumps\private\ to https://upload.mtasa.com/ and post the link here.
  10. apt-get install ia32-libs lib32ncursesw5 lib32ncurses5 lib32readline5
  11. Jusonex

    .asi files?

    Looks like you're using an asi loader without having a backup in your GTA folder. Also, your GTA folder is full of garbage. Accordingly, I'd suggest you to try a fresh GTA installation.
  12. I added a new event named onClientBrowserResourceBlocked now. Please wait till tomorrow and download the new build from https://nightly.multitheftauto.com/?mtasa-1.5-full_rc-latest then. Documentation: https://wiki.multitheftauto.com/wiki/On ... rceBlocked
  13. Jusonex

    .asi files?

    Run the ASI remover: https://goo.gl/cBxSVz If it does not help, please run MTADiag. Press 'n' when asked and post any Pastebin URL MTADiag gives you.
  14. Try the following code: local qh = dbQuery(db, "SELECT LAST_INSERT_ID() AS `ID`") local result = dbPoll(qh, -1) local id = result[1].ID As a better alternative, you can use dbPoll's third returned value. https://wiki.multitheftauto.com/wiki/DbPoll ==> local result, affectedRows, houseId = dbPoll(dbQuery(db, "INSERT INTO housing (owner, interiorId, bla, ...) VALUES(...)"), -1)
  15. The PHP interpreter is running on the webserver and MTA as a client can thus not execute PHP. Instead, you can use Javascript to execute an event: HTML/Javascript: <script> function executeMyEvent() { // Execute MTA event mta.triggerEvent("myEvent", 1, 2, 3) end </script> <a onclick="executeMyEvent()">Click to trigger the event</a> Lua: addEvent("myEvent") addEventHandler("myEvent", myBrowser, function(a, b, c) -- The following line outputs "1, 2, 3" to the chat outputChatBox(string.format("%d, %d, %d", a, b, c)) end )
  16. It's not dangerous, but it means that the player installed many mods and uses a d3d9 mod (probably ENBSeries). More information on the AntiCheat here: https://wiki.multitheftauto.com/wiki/Anticheat
  17. https://wiki.multitheftauto.com/wiki/Changes_in_1.5 (Even though this list is incomplete yet) I don't know what you mean exactly. But in case you mean adding new IDs: No CEF/Chrome/Chromium is not supported (see here: https://appdb.winehq.org/objectManager. ... n&iId=8177). As Wine is bad in terms of the anticheat anyway, Wine support may be dropped soon entirely. Moreover, VMWare normally provides better performance than Wine anyway, so I'd suggest you to switch from Wine immediately.
  18. https://wiki.multitheftauto.com/wiki/CE ... munication No, it isn't and won't be as iframes don't isolate entirely. The difference between local and remote mode is described here: https://wiki.multitheftauto.com/wiki/CE ... emote_mode
  19. Looks like it's caused by broken mods. Do you have any vehicle/ped/object mods installed? If so, try removing them/try a fresh GTA:SA installation.
  20. Jusonex

    MTA on WINE,

    You should switch to virtualization (e.g. VMware) as Wine is not officially supported and will not work from MTA 1.5 onwards anyway.
  21. Jusonex

    mta_mysql.so

    cd /usr/lib32 && wget [url=https://nightly.multitheftauto.com/files/libmysqlclient.so.15]https://nightly.multitheftauto.com/files/libmysqlclient.so.15[/url]
  22. You need to install the MySQL module: https://wiki.multitheftauto.com/wiki/Mysql
  23. Which link did you use? Could you take a screenshot?
  24. Jusonex

    VPS Problem

    You're missing some libraries. Try this: apt-get install ia32-libs lib32ncursesw5 lib32readline5 lib32ncurses5 If it does not work, please reveal your OS and tell us the output of ldd mta-server.
×
×
  • Create New...