Jump to content

qaisjp

Retired Staff
  • Posts

    2,344
  • Joined

  • Days Won

    9

Everything posted by qaisjp

  1. Please can we have your mtadiag results? Thanks: https://qais.jp/mta/diag
  2. Hi! Is it laggy in the menu, ingame (on server), or both? Please can we have your MTA diag results still? https://qais.jp/mta/diag
  3. Hello. Thank you for letting us know. Do you experience this in the menu, in game (on server), or both?
  4. qaisjp

    MTA Menu Lag

    Thanks for letting us know. Please can you provide an mtadiag link? Do you lag in the server as well or is it just the menu?
  5. -- Hi both! Please can you go into more detail? When do you experience this problem? Is it when you are in the menu or is it when you are ingame (in the server)? Does FPS improve when you move your mouse? Does FPS improve when you press down on the keyboard? Please can you both provide mtadiag results? https://qais.jp/mta/diag @StanMarko mtadiag results would be good from you too
  6. When you're in fullscreen, is it only the MTA menu that lags, or is it both the menu and every server?
  7. @Emix are you also experiencing lag in the main menu? @JoeGamer screenshots would be great, thank you! is this in the menu, in game, or both?
  8. qaisjp

    whowas command

    Hello, You will need to rewrite this yourself. It will come back when admin2 releases: https://github.com/multitheftauto/mtasa-resources/issues/116
  9. ok. I've just checked and I can now confirm you own that account Can you try to reset your password again and check your spam folder?
  10. The email on that account does not match the email of your forum account
  11. What line did you try to change?
  12. One way to do this is to set the vehicle as the source of the event give a boolean value to triggerServerEvent, like this: triggerServerEvent ("Freeze", source, true) -- true will be passed to setElementFrozen Then in your freeze handler, you can add an argument and use it to freeze the vehicle: function handler(frozen) setElementFrozen(source, frozen) end Server side, you will need to make the Frozen event bind to root, rather than resourceRoot.
  13. Nope. Any elements a resource creates are automatically destroyed when the resource is stopped.
  14. like this? paste it in after the @ using ctrl+shift+v to remove formatting: @Mσнαмα∂ Hєℓιѕн
  15. You must edit the scoreboard resource.
  16. What functions are you currently using, and what extra functions do you need?
  17. Pirulax is correct. See: http://pgl.yoyo.org/luai/i/math.random
  18. Try to read the error log. A search for that error led me to this StackOverflow answer:
  19. Is this your own server? It is possible that the port 22080 is being firewalled. You also need to tell the Apache server to listen on (bind to) port 22080: https://httpd.apache.org/docs/2.4/bind.html
  20. Are you using a business account?
  21. qaisjp

    SQL Tables.

    You can do this: local rows = executeSQLQuery("SELECT name FROM sqlite_master WHERE type='table' AND name='players'") if #rows == 1 then print("Exists") else print("Does not exist") end
×
×
  • Create New...