myonlake
Members-
Posts
2,312 -
Joined
-
Days Won
40
Everything posted by myonlake
-
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.
-
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
-
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
-
Please run MTADiag using the instructions provided here and provide the link to the result.
-
Please try installing the latest nightly from here: https://nightly.multitheftauto.com/mtasa-1.5.8-rc-20833-20210224.exe
-
Have you tried re-installing MTA on your PC?
-
Visual Editor for Wiki
myonlake replied to turret001's topic in Site/Forum/Discord/Mantis/Wiki related
The next MediaWiki update will have VisualEditor extension built-in. We're looking to update the Wiki by June. -
Good job everyone! Next up 1.6!
-
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.
-
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
-
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.
-
How do you use Locales.load?
-
What's your JSON?
-
You can see your MTA:SA client version by typing the "ver" command into the F8 console. Same goes for the server console.
-
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.
-
As far as I know you can't remove them as world objects. You can use https://wiki.multitheftauto.com/wiki/SetInteriorFurnitureEnabled
-
You can officially only run a single client at a time.
-
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)
-
Show the code on how you're doing it now.
-
What is CafeTable.hesap? zaman is probably returning a nil because it is not set correctly.
-
What is KumarhaneTable.hesap? The error says that ciro is a boolean.
-
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.