Jump to content

Shady1

Members
  • Posts

    906
  • Joined

  • Last visited

  • Days Won

    61

Everything posted by Shady1

  1. Эта проблема связана с сервером, с которым вы столкнулись. Пожалуйста, свяжитесь с администраторами сервера, с которым у вас возникли проблемы.
  2. You cannot use resource files that have been downloaded on another server.
  3. Shady1

    bozuk dosyalar

    selam foruma hoşgeldiniz, bozuk dosyalar demek eğer GTA:SA dosyalarını değiştirdiyseniz yada MTA:SA bu yüzden oyun hata vermiş olabilir, bunun için ilk olarak ekran görüntüsü paylaşabilirmisiniz, ilk önce GTA:SA komple silin ve modsuz temiz bir klasöre tekrar kurulum yapınız aynı şekilde MTA içinde geçerli
  4. this looks fun, good luck mate
  5. <script src="blabla.lua" type="client" cache="false"/> Scripts are preserved with "cache" a player can take a screenshot and edit the picture thanks to photoshop and get it,but if you want to keep your lua scripts use cache tag in meta.xml
  6. Delete your GTA:SA and MTA:SA files and install GTA:SA to a clean file again,Install GTA:SA files unmodified
  7. hi @alex17", I think it would be better to update it every time the model changes instead of using onPlayerSpawn. local styles = { [280] = 128, [84] = 121, } addEventHandler("onPlayerSpawn", root, function() local model = getElementModel(source) if (styles[model]) then setPedWalkingStyle(source, styles[model]) end end ) addEventHandler("onElementModelChange", root, function(_, newModel) if(getElementType(source) ~= "player") then return end if (styles[newModel]) then setPedWalkingStyle(source, styles[newModel]) end end )
  8. hello @plmqq , I have created a code according to your request, you can try local PLAYER_WALKSTYLE = 22 --add a walking style you want addEventHandler("onPlayerSpawn", root, function() setPedWalkingStyle(source, PLAYER_WALKSTYLE) end ) and use meta.xml <meta> <info type="script"/> <min_mta_version server="1.5" client="1.5" /> <script src="skills.lua" type="server"/> </meta>
  9. hello @josedisla , I have created a code according to your request, you can try local PLAYER_WALKSTYLE = 122 --add a walking style you want addEventHandler("onPlayerSpawn", root, function() setPedWalkingStyle(source, PLAYER_WALKSTYLE) end ) and use meta.xml <meta> <info type="script"/> <min_mta_version server="1.5" client="1.5" /> <script src="skills.lua" type="server"/> </meta>
  10. Shady1

    Client problem

    Gta:SA Re-install, you must install correctly
  11. Shady1

    Kicked: VF #2

    I'm happy if your problem is fixed,you can like my comment. have a nice day.
  12. If I helped in solving your problem, you can like the comment, have a nice day
  13. Shady1

    Error

    You're welcome, have a nice day
  14. Hello welcome to forum, Delete GTA:SA and MTA:SA completely and download the link I will send you,Install GTA:SA cleanly and without mods,then download MTA:SA from this link... https://nightly.mtasa.com/mtasa-1.5.9-rc-21510-20230102.exe
  15. Shady1

    Loader.dll Eror

    hello @ardaqx welcome to the forum,I have an answer for your question,Error 126 : If you have a Loader.dll problem, you should download and install MTA again from the link I will send you,The root cause of this issue is due to the new version of MTA every night, MTA team is currently making fixes for this issue,but for now install MTA from the link I sent you.... https://nightly.mtasa.com/mtasa-1.5.9-rc-21476-20221225.exe
  16. Shady1

    Kicked: VF #2

    hello @Stardust welcome to forum, i would like to explain about your problem,An MTA team made a statement about this issue, I want to explain it to you. VF #2 kicks by Anti-cheat are usually because your PC is infected with a virus or malware. There are 2 potential reasons: - Something external (like a virus or cheat, perhaps for another game) is trying to write to the memory of GTA or MTA data files - GTA or MTA data files (DLL) have unauthorized mods or are corrupted. In most cases, DLL files have simply been modified by a virus, resulting in failed MTA integrity checks. Note: 99% of the cases are caused by viruses and malware.. this is no joke, take it seriously Instructions: 1) Run a full anti-virus and malware scan. Clean anything that it finds. 2) Re-install MTA and GTA San Andreas with a clean, unmodded version. This ensures files are not modified in ways that will kick you, and that changes to (or quarantaining of) DLL files made by a virus that you now removed with a scanner are reversed. 3) Do not run any dodgy software that you can imagine may try to hook, or write memory to, any DLL files it can search and finds interesting; this is characteristic for viruses that want to infect any suitable files on your PC, but it can also be a PUP (Potentially Unwanted Program) or anything that relies heavily on tampering with execution of other software to function, so-called intrusive software.. imagine stuff like overlays or software that claims it can help you do something with any other software. You can end processes of software (or disable them) one by one to find out the culprit if the problem persists after following all of these instructions. If the problem persists, we also advise using multiple scanners, and also malware/PUP/rootkit scanners.
  17. Shady1

    Error

    i think this appeared after the new update,MTA team will inform you as soon as possible.. but you can temporarily download the version 1 week ago https://nightly.mtasa.com/mtasa-1.5.9-rc-21476-20221225.exe delete old MTA files
  18. Shady1

    Error

    hello welcome to the forum, i will give an explanation about your problem,download the link i will send,and waiting for your message back https://nightly.mtasa.com/mtasa-1.5.9-rc-21507-20230101.exe
  19. it's a really good decision, now MTA players understand that they should never do anything malicious again,it's a gift to them, happy new year everyone..
  20. THIS TOPIC is the first topic of 2023, have a nice day
  21. first of all hi guys, I want to announce that we need the team for our MTA DayZ server,i have finished many coding and scripts, but i need team mate (Staff/Scripter/Developer) I am alone and looking for a volunteer friend to deal with problems we can have our conversations on discord : Shady1#8980
  22. hello welcome to the forum, I am sorry to tell you that the loader.dll in the MTA nightly version is currently facing a problem,i got workaround for this and i want to share it with you... click for MTA download 1) delete MTA files. 2) download and install the MTA link I sent you. (click for MTA download) 3) run a MTA 4) finally good games...
  23. Hello again @JeViCoI did some research and here's what I have to say : The picture may be getting corrupted because you are reading it as a string,it might be losing bit depth,Why don't you read this as a file?
×
×
  • Create New...