Jump to content

myonlake

Members
  • Posts

    2,312
  • Joined

  • Days Won

    40

Everything posted by myonlake

  1. myonlake

    MTA doesn't turn on

    Ok, servicing sounds like a good idea. It seems there is something off but I cannot point to the problem with my low knowledge. For example tasklist errored and returned no tasks, which is not normal.
  2. myonlake

    MTA doesn't turn on

    Please try running system scan to find potential corruption. Step 1: Run Command Prompt as administrator Step 2: Type sfc /scannow into the window and hit Enter to begin system scan
  3. myonlake

    MTA doesn't turn on

    Please try running GTA:SA once and try running MTA:SA again. If still doesn't work, try installing the latest nightly from https://nightly.multitheftauto.com/mtasa-1.5.8-rc-20833-20210224.exe
  4. myonlake

    MTA doesn't turn on

    Please run MTADiag using the instructions provided here and provide the link to the result.
  5. Please try installing the latest nightly from here: https://nightly.multitheftauto.com/mtasa-1.5.8-rc-20833-20210224.exe
  6. myonlake

    MTA doesn't turn on

    Have you tried re-installing MTA on your PC?
  7. The next MediaWiki update will have VisualEditor extension built-in. We're looking to update the Wiki by June.
  8. Try editing https://github.com/multitheftauto/mtasa-blue/blob/master/Client/core/CMainMenu.cpp#L21 to match the full height, which would be 1024px. Make sure your new image is 1280x1024px.
  9. The image is probably not correct size. Check the size of the original image and crop the new image to fit it. Latest news seems to be here: https://github.com/multitheftauto/mtasa-blue/blob/master/Client/core/CMainMenu.cpp#L216
  10. Okay. Make sure you have saved the JSON to the right file in the right place, restarted the resource and tried renaming the name temporarily for example.
  11. You can see your MTA:SA client version by typing the "ver" command into the F8 console. Same goes for the server console.
  12. I am not able to reproduce this in Multi Theft Auto v1.5.5-release-13804. What is your MTA version and have you tried running the latest nightly? Perhaps it's a bug in your code.
  13. myonlake

    [HELP] Interior Bug

    We don't offer support for leaked scripts.
  14. As far as I know you can't remove them as world objects. You can use https://wiki.multitheftauto.com/wiki/SetInteriorFurnitureEnabled
  15. You can officially only run a single client at a time.
  16. You need to use getElementsByType as described in the link (see the examples section). Try this. function addKeyInBlinkers() for _, player in pairs(getElementsByType("player")) do if (not isKeyBound(player, ",")) and (not isKeyBound(player, ".")) then bindKey(player, ",", "down", "lleft") bindKey(player, ".", "down", "lright") bindKey(player, "/", "down", "warn") end end end addEventHandler("onResourceStart", resourceRoot, addKeyInBlinkers)
  17. Show the code on how you're doing it now.
  18. What is CafeTable.hesap? zaman is probably returning a nil because it is not set correctly.
  19. What is KumarhaneTable.hesap? The error says that ciro is a boolean.
  20. BindKey takes in a player element as the first argument. Loop through all players and bind them that way. Your isKeyBound is currently using "source", which is the resource. This is not right. You should move that into the for loop and then use the player element as the first argument there as well.
×
×
  • Create New...