Jump to content

ccw

MTA Team
  • Posts

    4,030
  • Joined

  • Days Won

    26

Everything posted by ccw

  1. Thanks. According to the log, your last connection succeeded: 2015-03-12 20:30 Connected to 134.255.217.210:2649 Did you run MTADiag on the correct computer? Are you launching the correct program? It should be: C:\Program Files (x86)\MTA San Andreas 1.4\Multi Theft Auto.exe
  2. Try this one: https://nightly.multitheftauto.com/files/MTADiag.zip
  3. What error do you get? Have you tried running a full virus scan recently?
  4. Please download and run MTADiag and follow the instructions. If MTADiag doesn't launch, please install Visual C++ 2012 runtimes (download and install vcredist_x86.exe) and try again. Press 'n' when asked. Post any Pastebin URL MTADiag gives you.
  5. Run cmd and show the output of these commands: ping 167.114.119.145 tracert 167.114.119.145
  6. Ask in the scripting section: https://forum.multitheftauto.com/viewforum.php?f=91
  7. ccw

    I can't join my server

    What is the message? Does this work in your web browser?: http://server ip:22005
  8. onClientResourceStart is attached to root, which means it will be triggered for every starting resource. Check all your scripts and ensure they use resourceRoot for onResourceStart/Stop and onClientResourceStart/Stop Also, use 'debugscript 3' and fix all warnings.
  9. Try this: 1) Rename the 'mods/deathmatch/resources' directory to 'mods/deathmatch/aaa' 2) Start the MTA server 3) Rename 'mods/deathmatch/aaa' back to 'mods/deathmatch/resources' 4) In the MTA server console, type the command: refresh This will display the time it takes to load each resource. Show the content of server log.
  10. ccw

    "Entering the game" problem

    Run MTADiag again, press 'n' if asked, and post the pastebin url here
  11. ccw

    Server problem

    How much RAM is being used?
  12. ccw

    Blue screen

    Try this: Settings->Advanced->Progress animation->Off
  13. Connecting to 22014 works, but it is the same server as 22015, which is strange. What Linux OS are using using? Show me the output of these Linux commands: iptables -L iptables -t nat -L netstat -u -n -l
  14. What is the server ip/port? (Make sure it is running so we can do some tests)
  15. Run this Linux command: tcpdump -c 1000 'tcp port 22005' > mta22005.log And upload mta22005.log to http://upload.mtasa.com/ If tcpdump is not found, install it with: yum install tcpdump
  16. I'm sorry, the ban will not expire early.
  17. You're not setting BlurStrength or UVSize. Add something like this: dxSetShaderValue( myShader, "BlurStrength", 1 ); dxSetShaderValue( myShader, "UVSize", screenWidth/8, screenHeight/8 );
  18. unpredictable, how did you convert it?
  19. Server seems to be OK now. How did you fix it?
  20. How many player do you have when the problem occurs?
  21. ccw

    My MTA Bugged

    The install is incorrect. Go here and press the 'Download' button and re-install MTA: https://www.multitheftauto.com/ If MTA still doesn't work, give another MTADiag log
  22. ccw

    My MTA Bugged

    Please download and run MTADiag and follow the instructions. If MTADiag doesn't launch, please install Visual C++ 2012 runtimes (download and install vcredist_x86.exe) and try again. Press 'n' when asked. Post any Pastebin URL MTADiag gives you.
  23. What is the new screen resolution? What was the old screen resolution? What is Settings->Video->Aspect Ratio set to?
  24. The problem is dbPoll(..,-1), as that will freeze the server until the query has completed. Fix it by using the callback option in dbQuery. I suspect your 'checkdata' function is the cause of the Network Trouble, as it will be calling dbPoll(..,-1) many times, so update that function first.
×
×
  • Create New...