-
Posts
2,298 -
Joined
-
Days Won
113
Everything posted by Dutchman101
-
Delete the contents of Program Files > MTA San Andreas 1.5\server\mods\deathmatch\resources\[editor] and after doing so, re-install MTA from https://nightly.multitheftauto.com/?mtasa-1.5-rc-latest (make sure to keep the default installation type, don't customize any components you're installing) Alternatively, press F8 while it's failing to load and post the editor console output in this topic, or take a look and spot the problem yourself.
-
like I posted on your other topic @Behnam; Also locking this topic, you can try again when you think you can post scripting questions in the appropiate fashion. Conduct guidelines - The Scripting section is not meant for those unwilling to learn, whose only intent is to try get others to finish the scripts they need, line by line. Don't lean back and wait for others to finish your script line-by-line, without any efforts of your own, because Scripting section isn't a free scripter service. *Note: any scripters writing something from scratch without the topicstarter's cooperation, are encouraging laziness and leading other beginner scripters to think this is acceptable, or even make it more likely that non-scripters will start posting here because they need something. You're not doing a valuable job by writing their code on demand in this section.
-
like I posted on your other topic @Behnam; Also locking this topic, you can try again when you think you can post scripting questions in the appropiate fashion. Conduct guidelines - The Scripting section is not meant for those unwilling to learn, whose only intent is to try get others to finish the scripts they need, line by line. Don't lean back and wait for others to finish your script line-by-line, without any efforts of your own, because Scripting section isn't a free scripter service.
-
like I posted on your other topic @Behnam; Also locking this topic, you can try again when you think you can post scripting questions in the appropiate fashion. Conduct guidelines - The Scripting section is not meant for those unwilling to learn, whose only intent is to try get others to finish the scripts they need, line by line. Don't lean back and wait for others to finish your script line-by-line, without any efforts of your own, because Scripting section isn't a free scripter service.
-
Remind yourself of https://forum.multitheftauto.com/topic/94790-guidelines-and-formatting-for-this-section-read-before-posting/ Locked
-
You could also check if the This code doesn't make sense at all.. please post the part of your gamemode's code that allows players to play animations, rather than writing something that tries to intercept it externally. You should simply add some checks to the code that allows setting animations.
-
CL03 means MTA is missing essential registry keys. Please don't just re-install; uninstall MTA using the uninstaller first, and then delete the complete installation directory folder and re-install from https://nightly.multitheftauto.com/?mtasa-1.5-rc-latest. If that doesn't work, then after MTA is installed again, rightclick the installation directory and go to "security" tab. Ensure your user account, the "Users", "Administrators", "All application packages" and TrustedInstaller (note: just any of them that are present) have full folder rights permission (Full control). Now re-install MTA again and try. Not solved yet? hit start > run > and type 'regedit'. Navigate to registry location Computer\HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Multi Theft Auto: San Andreas All as shown below; Now right-click the "folder" to the left and click "permissions" (actually perform these steps for all MTA-related folders found there); \ Set all users found there to have full control ("Allow" on everything). As I indicated before, do this for all subfolders of the MTA San Andreas registry key folders, and then click Apply & OK. Now, re-install MTA one last time and see if it's resolved. If it's still not, run a full antivirus scan and ensure nothing on your PC is modifying or corrupting registry keys & settings. Run the MTA installer "As administrator" and make sure your Windows user account is full admin. @Madrufix
-
CC23 (connection timed out) can be fixed in most occasions using one or multiple of the below steps; (go to the next step if one doesn't resolve it) 1) Make sure no firewall or antivirus/malware software is blocking MTA (Multi Theft Auto.exe or components; whitelist in firewall apps list.. likewise for GTA install dir > gta_sa.exe & proxy_sa.exe) or blocking its connections on demand for 'suspicious' traffic (like some heuristic and pro-active antimalware suites like malwarebytes may do). Try disabling all your security products first to determine whether or not any of them is the culprit. 2) Create a new text file, paste in the below code and click file > "Save As" > "All files" > netfix.bat. (make sure of the extension .bat). After that, rightclick the newly saved file and select "Run as Administrator". Once it's done, restart your PC. :: Reset networking interface @echo on netsh online netsh winsock reset netsh winhttp reset proxy netsh interface ipv4 reset netsh interface ipv6 reset netsh int ip reset c:\resetLog.txt netsh interface tcp reset netsh interface portproxy reset netsh interface httpstunnel reset netsh rpc reset netsh http flush logbuffer netsh winsock reset all netsh int 6to4 reset all netsh int ipv4 reset all netsh firewall delete netsh int ipv6 reset all netsh advfirewall reset netsh int httpstunnel reset all netsh int isatap reset all netsh int portproxy reset all netsh int tcp reset all netsh int teredo reset all netsh int tcp set global autotuninglevel=normal netsh interface tcp set heuristics disabled Reset Winsock control netsh branchcache reset netsh branchcache flush fsutil resource setautoreset true C:\ fsutil resource setautoreset true ipconfig /flushdns Alternatively, download the premade file containing this script here; https://www.dropbox.com/s/8kyfbievryrmyz1/netfix.bat?dl=1 3) If all of that doesn't work, rightclick your network icon on taskbar and go to Networking center (or go there from Windows control panel), click your active connection and "details" in its tab, and find the DHCP server / Standard gateway address. Take this address (IP) and paste it in your web browser as if you were navigating to a regular site, and hit enter. Login to your router configuration as it loads up, most often you can login with username & password "admin", leaving pass blank with username admin, or leaving everything blank. (If you can't login, check the bottom of your router/modem for login details or model number, then google the default login credentials for said model). After logging in, find something like "Firewall" or DMZ zone settings. If you locate firewall, disable the internal router firewall or lower its strictness level. If you find DMZ, you can add your local PC MAC (locate the mac in same network center details tab as previously mentioned) as DMZ host, or use other router settings pages to give your PC a static local IP and then enter that IP as DMZ host. (Using DMZ is not recommended because of "opening yourself up to the internet", security perspective, I'd advise you use it to probe if the issue is related to your router/ISP and until the issue is finally fixed as temporary solution, but if you're a heavy gamer it may be useful permanently). If DMZ solves it and firewall level changing doesn't, I'd recommend you contacting your ISP or find other related router configuration settings, especially if the issue started out of the blue some day. I also recommend backing up your network configuration incase you feel it may be custom (for example, take a printscreen of the active connection details in networking center before running the .bat, so you can manually re-config it later incase it won't automatically detect & assign the proper working settings afterwards.. Windows firewall is the culprit in lots of CC23 error cases, you can either backup your current firewall policy or remove "netsh advfirewall reset" from the batch script just incase). I recommend just backing it up and watching the effects, because you may miss out on the solution otherwise. The ways Firewall can go wrong isn't limited to custom app white/blacklisting, this is just the easiest way to instruct you. If you don't want to restore policy, you may benefit from setting "block incoming connections that do not match a rule" to Allow, and the same for outgoing if not already set so. (For all network types; private, domain, and public) and check for existing app rules on the MTA executables/files and gta_sa/proxy_sa.exe, and making sure it's set to allow all connections for them (or just delete the rule). @ArthurMTA1.5
-
My Friend Got Banned Permantly from MTA
Dutchman101 replied to x1Father,_)'s topic in Ban appeals archive
No, we won't allow anyone to use MTA to commit crimes, using MTA to facilitate spreading viruses around hits a zero-tolerance policy. There'll be no unban anywhere soon, he may try again in a considerable amount of time (months) EDIT: ban set to expire in 3 months- 1 reply
-
- 5
-
Patching your 1.01 or 2.00 version of gta_sa.exe
Dutchman101 replied to darkdreamingdan's question in Client
The error message describes exactly why; "unknown version". You must have one of these versions for the patcher to work, if you have another custom gta_sa.exe (like you do) then you should restore it to default, for example by re-installing GTA from disk. -
The closest you can get is using intepreters such as http://codepad.org/ or https://www.tutorialspoint.com/execute_lua_online.php, although just because something is syntax-error free and executable LUA doesn't mean it will work as intended on MTA. Essentially, there's no way to know if your script functions without bugs and as intended without testing the resulting script, you can't even know its behaviour only from ingame debugscript or intepreters/compilers. This should be obvious, to the extent that scripting for MTA without the ability to properly test (on the go) is almost impossible, unless you've got so much experience that you can identify potential failure by a glance over the code or 'imagine' how it would run.. I have known a few individuals with this capability, but it requires proof-reading your code intensively and a very fine knownledge about the behaviour and details of each scripting function used, aswell as envisioning the placement of elements by coordinates, etcetera. Any scripter should know that coding without access to the game is a no-go, unless you have someone to test it consequently and supply you with feedback, or it's such a small job that not much can go wrong and you can ensure it works by a few looks over the code. @TPF
-
This forum section ("Modelling" subforum) is intended to discuss any GTA modelling-related subject, ranging from seeking advice/help from fellow modellers (like model troubleshooting or issues encountered while 3D modelling), sharing of knowledge, and casual discussion. To keep this section organized, please be so kind to follow these posting guidelines (tags in topic title): [QUESTION] How can I do/achieve something with modelling? Why does this happen? [ISSUE] / [BUG] Why do I experience this specific issue with my model? [BEGINNER] How do I create or start working on a model of this type/to fit these specific requirements? [KNOWLEDGEBASE] Topics with aggregated useful information, reversal, or known issues you've encountered and want to inform others about how to avoid. If something is a step-to-step guide aimed at completing one specific task, it should go into Modelling > Tutorials instead. Example types of 'modelling' work that can be discussed in this section: - DFF (3D) modelling - COL (collision) modelling - TXD (texture) & material stuff General forum rules also apply to this section, but aside that we would like to ask you to treat everyone with respect, regardless of their skill in modelling. If someone posts content or questions that you think are trivial or low quality, please remember that you have also been a novice modeller once. Real skill is gained over time, so everyone should have a chance to learn. If you are a more experienced modeller and put effort into helping others or even taught them how to model up from the beginning, you can have a potentially great impact on the individual's future as modeller as you are shaping their foundation. Your work will be appreciated, and others will be ready to help you out if you ever need it.
-
- 1
-
- modelling
- model crash
-
(and 7 more)
Tagged with:
-
This should work; https://ufile.io/ii4ne (modified .txd). It doesn't error anymore, but if its not loading the texture onto the model, make sure that in 3DS the .dff has the following material bitmaps added on each element: metall.tga wood.tga gold.tga These materials should be added on each respective surface you want said texture to apply on. In 3DS Max, press "M" and in the material viewer, the icon so you can click each surface and get the right material ID to edit. Any texture in the TXD has to be added as [texturename].tga in the DFF material selector, regardless of format. Before modifying your TXD, it errored. I found no single TXD converter that was able to import it without throwing errors; fourCC or a bunch of warnings without resulting usable textures. Even the FourCC identification tool didn't understand the format of textures inside, what I think is that you added wrongly encoded texture files or those of a format TXD doesnt support, in some way. So if it still doesn't load as intended, it may be that some textures were lost, and that the named 3 aren't supposed to be the only ones. In that case, re-import your image files but don't load them in ambigious formats, save them as PNG or TGA before adding them to the TXD, preferably with a tool like Paint.NET. Adding them to the TXD is preferably to be done using Magic TXD. *Note: if you still can't get it to work, please upload your DFF file so we can help you troubleshoot (the modellers amongst us). @UDC
-
Why would you use a typical client installation on Windows server? Download the installer, and select only to install the "server" package (custom installation) and point it to a folder on your desktop. After that try again, if it still fails to load the module then please show us a printscreen composed of all directories in desktop/server.
- 4 replies
-
- windows server 2008
- windows
-
(and 1 more)
Tagged with:
-
There's a problem with fonts on your PC. In order for me to help you troubleshoot; Please download and run MTADiag and follow the instructions. Post any Pastebin URL MTADiag gives you in this topic. @OMXQN
-
This specific resource was suspended because it wasn't a true resource, just contained a bunch of paid links; Violations of https://forum.multitheftauto.com/topic/98514-community-regulations-guidelines/ such as this (using revenue links to point to the actual script; in this case it even didn't tho) can lead to suspension or removal. @Ted Claberling
-
I can't see the kind of lag I expected from reading your topic.. it's very likely either you, or the players being spectated, are laggers. Have you looked at your own ping or packetloss (while spectating)? Otherwise, ask the server owner as it could be a server (connection or script) issue.
-
The decompilation key for level 1 obfuscation (as listed on https://luac.multitheftauto.com) has been circulating in certain hacking groups for a while because it had previously been compromised. In response to level 1 obfuscation becoming insecure, we created level 2 - "More" option. While level 2 obfuscation is a way stronger level of obfuscation, nothing is completely secure. Every single time the current highest level of obfuscation gets cracked, we try to implement a new one as fast as possible. Everything can be breached. So to keep your scripts as safe as possible, you should always use the highest level of obfuscation that https://luac.multitheftauto.com offers, and perhaps also take measures like someone else posted directly above me. Generally speaking, only scripts still obfuscated with the previous, outdated level encryption are susceptible, we advise a re-compile whenever you see that luac.multitheftauto.com starts offering a new level of obfuscation. As I said, nothing is secure. Whenever our latest obfuscation level is cracked, we will take our best efforts to implement a new (tougher) level to replace it for those who want heightened security. Please note that it takes both people that wouldn't usually spend their time playing games (but use their cracking skills for darker purposes) to crack each new generation of obfuscation, and quite some resources to achieve that. Also, alot of people on MTA contend that securing your resources with compiling is a matter of "best effort" (atleast preventing very easy theft, a first layer of defense) and might even be unnecesary/useless for various reasons. However, as I wrote earlier, we take it seriously to continuously offer you the most secure options to aid you in that quest. While nothing related to the possibilities we offer for compilation is completely breach-proof, there's some reasons why the chance you and your scripts become a victim is low, and also why decompiled scripts are often renderred largely useless (thus dealing no harm to you as creator), are pretty low; (open the spoiler)
-
[SOLVED] CC23 Error while connecting to one server
Dutchman101 replied to Freezak's question in Client
https://mirror.multitheftauto.com/mtasa/utils/servicing.bat Follow the same instructions as him. If it still doesn't work after that, then please create your own topic in Client section linking the same MTADiag log. For now, it's most likely it will be resolved after running the file (make sure, as per the instructions, to rightclick > Run as Administrator, let it finish on its own without closing it, and then reboot. It can take a while and may even appear to hang, which it's not). If that solved it, please let me know in here. -
I don't think there's a limit like that, altho ofcourse you're probably going to hit a SA engine limit if you go into insane lenghts, like 1000 textures. Read more about material (ID)'s here: https://forum.multitheftauto.com/topic/105227-question-applying-custom-textures-to-3ds-max-objects/?do=findComment&comment=907329 I think for anything more than that, you're better off at a dedicated modelling or GTA modding forum. Hope this helped though, @StaceyBeeGTA
-
As others have said, it was an issue with the "superman" script. Due to its popularity and the known prevalence of this bug's abuse, we decided to patch the resource. You can download the updated version of superman which contains a fix for this bug. https://community.multitheftauto.com/index.php?p=resources&s=details&id=220 @Khadeer143
-
I solved it for you on Teamviewer, just noting the final solution as others may encounter the same issue. It had to do with preferred sound device in Windows sound settings (but for the same sound card, more like output channel), Realtek HD audio has atleast 2 sound outputs: Speakers ("Realtek" High Definition Audio) and "Realtek Digital Output", in his case MTA only launched after setting it to "Realtek Digital Output" once, this is not a final solution though as depending on your configuration that may stop sound from being heard, so after noticing this we went to the regular windows "Sound" configuration panel (start menu > type "Sound", or control panel > "Sound"), rightclicked "Speakers" (HD audio) and "set as Default Device" and after that also as default communication device (not sure if essential to the fix). The initial fix that told us where it was related to (selecting Digital Output) kept it working (MTA launching, not neccesarily sound outputting) after setting it back to Speakers (HD audio) where it was at before, so it means something just flipped off and bugged the configuration so as for this to happen. This is probably a Windows 10 update, as the step of re-selecting output channel was done through the modern Windows 10 settings > system > sound pane.
- 5 replies
-
- 1
-
- device manager
- control panel
- (and 13 more)
-
It looks like there's some general OS instability issues and your audio driver may have not been installed properly as a result. Please download https://mirror.multitheftauto.com/mtasa/utils/servicing.bat and then rightclick this file > "Run as Administrator". Make sure it finishes, as it should close itself and may take a while. After it completes, restart your PC. Once booted back up, install these drivers; - http://12244.wpc.azureedge.net/8012244/drivers/rtdrivers/pc/audio/0009-64bit_Win7_Win8_Win81_Win10_R282.exe - https://downloadmirror.intel.com/20775/eng/SetupChipset.exe After that, generate a new MTADiag log and provide it to me, and try out whether the issue is resolved or not.
- 5 replies
-
- 1
-
- device manager
- control panel
- (and 13 more)
-
Please download and run MTADiag and follow the instructions. Post any Pastebin URL MTADiag gives you in this topic.
-
Please stay on-topic, and I recommend you to read the section guidelines: https://forum.multitheftauto.com/topic/94790-guidelines-and-formatting-for-this-section-read-before-posting/ Be more specific than just stating "please debug my resource", explain the problem and provide code snippets of related parts rather than a resource link. To better understand how to make a post that will likely receive attention for you to get help, the guidelines are useful. @NeverPro