Search the Community
Showing results for tags 'error'.
-
Hi, i have problem for like a year ago to now, one day i can play normally for like a 2/3 hours without any errors and crashes and in a other day i cant join any serwer becausei have a cd16 error. i had tried everything: restarting internet, reinstaling mta and gta sa, changing a internet conection, changing a internet cable, changing a ip servers (idk i write it correct), reinstaling windows, i download a .bat file from the other post and it run it in my computer and it doesnt work, a change many times mta verision from a nightly version and backwards, i turned of a windows firewall, i run a MTAdiag.exe and nothing happend. Its possible that i do something not correct so u can instruct me step by step how to do this properly.
-
Necesito ayuda. Cada vez que ingreso a un servidor y juego un rato, se cierra el MTA y me arroja el error CL04 (error al reiniciar MTA)
-
Estou com um erro em um codigo de colisão entre veiculos, podem me ajudar? Ele inicia tudo ok, os carros n se batem, mas ai passa uns minutos e da erro no setElementCollidableWith(vehicle, v, false) function ghostmode_on() local v = getPedOccupiedVehicle(localPlayer) -- Get her's Vehicle ID for index,vehicle in ipairs(getElementsByType("vehicle")) do --LOOP through all Vehicles setElementCollidableWith(vehicle, v, false) -- Set the Collison off with the Other vehicles. end end addEventHandler( "onClientResourceStart", root, ghostmode_on) Ai o erro:
-
Buenas, estoy en estos medios pidiendo ayuda con relación a la GM de LIFE STEAL RP, pues en esta todo va bien, excepto la tienda de ropas, al entrar a cualquier tienda de ropa aparece el [NPC] encima de su nombre, pero al intentar interactuar de cualquier forma, ya sea dandole click o acercandoce a el, no abre el panel de ropa para cambiarla, la verdad necesito la tienda de ropas donde debería, en esos interiores, porque he buscado otras y vienen con errores y no en los lugares típicos de tiendas de ropas, así que si alguien me pudiera aportar con cualquier tienda de ropa de otra GM que sea en los lugares típicos en los interiores de las tiendas de ropa se los agradecería, porque ninguna de las tiendas de este funcionan.
-
ERROR EN LA CONSOLA: ERROR: items/itemsS.lua:671: attempt to index global 'trash' (a nil value) El error me aparece cada vez que inicio el server y cada vez que le hago restart a cualquier script, no entiendo, me tiene cabezón. Resalto la línea 671 del error en amarrillo. (línea del supuesto error) local sistemaitems function loadTrash() local query = dbQuery(connection, "SELECT * FROM bins;" ) local result, numrows = dbPoll(query, -1) if (result and numrows > 0) then for index, trashPos in pairs(result) do trashPos = fromJSON(trash["pos"]) or "[[ 0,0,0,0,0,0,0,0 ]]" sistemaitems = createObject(1359, trashPos[1],trashPos[2], trashPos[3]-0.4, trashPos[4], trashPos[5], trashPos[6]) setElementData(sistemaitems, "sistemaID", trash['id']) setElementInterior(sistemaitems, trashPos[7]) setElementDimension(sistemaitems, trashPos[8]) end end end addCommandHandler("papelera", function(playerSource, cmd) if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(playerSource)), aclGetGroup("Console")) then local x, y, z = getElementPosition(playerSource) local rx, ry, rz = getElementRotation(playerSource) local int = getElementInterior(playerSource) local Dim = getElementDimension(playerSource) local Query, _, insertID = dbQuery(connection,"INSERT INTO bins (pos) VALUES(?)", toJSON({x, y, z, rx, ry, rz, int ,Dim})) local checkQuery, _, insertID = dbPoll ( Query, -1 ) if checkQuery then outputChatBox("#7cc776[Inventario] #ffffff Papelera creada.", playerSource, 255,255, 255, true) sistemaitems = createObject(1359, x, y, z-0.4, rx, ry, rz) setElementData(sistemaitems, "sistemaID", insertID) setElementInterior(sistemaitems, int) setElementDimension(sistemaitems, Dim) end end end) El código es parte de un sistema de papelera para desechar items, todo lo demás corre muy bien. Será algún problema con mi sistema de ID?
-
BOM ESTE É O CLIENT.LUA do meu painel, quando do o /painel ele aparece e o cursor tbm, mas quando repito o comando " para fechar " só o cursor sai, e o painel fica Painel_On = false local function Painel_Agencia() Janela_Agencia_Emprego = guiCreateWindow(0.22, 0.07, 0.54, 0.80, "", true) guiWindowSetMovable(Janela_Agencia_Emprego, false) guiWindowSetSizable(Janela_Agencia_Emprego, false) guiSetAlpha(Janela_Agencia_Emprego, 1.00) guiSetProperty(Janela_Agencia_Emprego, "CaptionColour", "FF1B0743") Label_Top = guiCreateLabel(0.29, 0.11, 0.40, 0.09, "AGENCIA DE EMPREGO", true, Janela_Agencia_Emprego) guiSetFont(Label_Top, "clear-normal") guiLabelSetHorizontalAlign(Label_Top, "center", false) guiLabelSetVerticalAlign(Label_Top, "center") Butoon_Catador = guiCreateButton(0.01, 0.26, 0.27, 0.10, "CATADOR", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Catador, "NormalTextColour", "FFFFFFFF") Butoon_Jornal = guiCreateButton(0.71, 0.26, 0.27, 0.10, "ENTREGADOR DE JORNAL", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Jornal, "NormalTextColour", "FFFFFFFF") Butoon_Pedreiro = guiCreateButton(0.01, 0.38, 0.27, 0.10, "PEDREIRO", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Pedreiro, "NormalTextColour", "FFFFFFFF") Butoon_Pescador = guiCreateButton(0.71, 0.38, 0.27, 0.10, "PESCADOR", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Pescador, "NormalTextColour", "FFFFFFFF") Butoon_MotoBoy = guiCreateButton(0.01, 0.49, 0.27, 0.10, "MOTO BOY", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_MotoBoy, "NormalTextColour", "FFFFFFFF") Butoon_Gas = guiCreateButton(0.71, 0.49, 0.27, 0.10, "ENTREGADOR DE GÁS", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Gas, "NormalTextColour", "FFFFFFFF") Butoon_Leite = guiCreateButton(0.01, 0.61, 0.27, 0.10, "ENTRAGADOR DE LEITE", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Leite, "NormalTextColour", "FFFFFFFF") Butoon_Eletricista = guiCreateButton(0.71, 0.61, 0.27, 0.10, "ELETRICISTA", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Eletricista, "NormalTextColour", "FFFFFFFF") Butoon_Caminhoneiro = guiCreateButton(0.01, 0.73, 0.27, 0.10, "CAMINHONEIRO", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Caminhoneiro, "NormalTextColour", "FFFFFFFF") Butoon_Minerador = guiCreateButton(0.71, 0.73, 0.27, 0.10, "MINERADOR", true, Janela_Agencia_Emprego) guiSetProperty(Butoon_Minerador, "NormalTextColour", "FFFFFFFF") Butoon_Sair = guiCreateButton(10, 532, 719, 59, "SAIR", false, Janela_Agencia_Emprego) guiSetProperty(Butoon_Sair, "NormalTextColour", "FFFFFFFF") end addCommandHandler("painel", function() if Painel_On == false then addEventHandler("onClientRender",getRootElement(),Painel_Agencia) Painel_On = true showCursor(true) else removeEventHandler("onClientRender", getRootElement(), Painel_Agencia) Painel_On = false showCursor(false) end end)
- 3 replies
-
- script
- scripiting
- (and 6 more)
-
So recently i reinstalled my PC, I had windows 11 before and still, except for now MTA is not working. I have no idea what could be modifying the process of mta, since i have nothing different other than what i had before, i have razer synapse etc... I tried reinstalling MTA on both my SSDs, reinstalled GTA:SA but nothing seems to work. I join local host and get kicked SD #4 RKE8, and on different servers too. FADD74F89263F9BEE73931EDAFB178A1 Multi Theft Auto v1.5.9-release-21334
- 5 replies
-
- windows 11
- mta
-
(and 1 more)
Tagged with:
-
-
Hello! I played an rp server yesterday. There was nothing wrong with my game, everything went fine, until today, when I wanted to play, after I login in the server the game crashes at the same moment always, and gives me an error related to proxy_sa.exe. I have no idea what do. I've tried to reinstall MTA and GTA too, install it to a different hard drive, but nothing worked. Here is a picture of my error: https://ibb.co/cYGq5Fd I hope someone can help me! And thank you for reading this post!
-
please help me I HAVE the lastest version (1.5.8) and when i want to run for second time the mta show mw this error --------------------------- MTA: San Andreas (CTRL+C to copy) --------------------------- Failed to load: 'C:\Program Files (x86)\MTA San Andreas 1.5\mta\loader.dll' Error 998: Invalid access to memory location. Do you want to see some on-line help about this problem ? --------------------------- Yes No --------------------------- please help guys
- 19 replies
-
- error
- loader.dll
-
(and 1 more)
Tagged with:
-
Olá pessoal enviei recentemente um servidor para a host porem, eu tinha um mod de custumizaçao de skins o SQH_characters mas infelizmente deixou de funcionar assim que enviei o servidor para a host não sei porque se alguem poder ajudar agradecia
-
local gate = createObject(980, 1001.5, -1096.9000244141, 25.60000038147, 0, 0, 110) local marker = createMarker(1001.5, -1096.9000244141, 25.60000038147, "cylinder", 8, 0, 0, 0, 0) function moveGate(thePlayer) if isObjectInACLGroup("user." .. nomeAcc, aclGetGroup("TDF")) then moveObject(gate, 3000, 1001.5, -1096.9000244141, 20) end end addEventHandler("onMarkerHit", marker, moveGate) function move_back_gate() moveObject(gate, 3000, 1001.5, -1096.9000244141, 25.60000038147) end addEventHandler("onMarkerLeave", marker, move_back_gate) I think its all ok with this code, but... ERROR. I wrongly have deleted a wrong line on my code, thats all ok now guys, i think. local nomeAcc = getAccountName (getPlayerAccount (source))
-
hey, i have added a login panel in my server, it has been loaded successfully but its not showing when i enter into my server. Whiee???
- 1 reply
-
- help
- login panel
-
(and 2 more)
Tagged with:
-
I was trying to play MTA like 3 days ago and im getting the same error in many servers (MTA is crashing) Version = 1.5.5-release-11999.0.000 Time = Wed Jun 6 19:37:34 2018 Module = C:\Program Files\Rockstar Games\GTA San Andreas\gta_sa.exe Code = 0xC0000005 Offset = 0x003C91CC EAX=0ED172C8 EBX=0ED172B8 ECX=0177FAA0 EDX=000A9518 ESI=00000000 EDI=00000001 EBP=0177FC50 ESP=0177FA80 EIP=007C91CC FLG=00010202 CS=001B DS=0023 SS=0023 ES=0023 FS=003B GS=0000 Anyone can help me?
- 4 replies
-
- error
- error codes
-
(and 4 more)
Tagged with:
-
could someone help me? I start the MTA, it loads more, the screen does not appear, I have reinstalled it too and it did not work, what can it be? https://pastebin.mtasa.com/455823672 I don't know if that can help I followed that step too https://upload.mtasa.com/u/846096373/Logfile.PML_ it doesn't show any error screens either, I've used malwerebytes, I've reinstalled C ++ and nothing, I can't even play GTA SA I click to start and it won't open, I downloaded the original rockstar games launcher, I've also tried with others from internet and does not work https://imgur.com/a/JpKHSnN I don't know if that can help because it's in Portuguese too, I pulled the PC log on the error my nick in Discord Ismael cu de barro#9414 after this screen nothing happens anymore https://imgur.com/ZBy8WUd
-
Hello, i have a problem. Everytime I join an server the following message poped out and kicks me from the server. Since the developers of the server are unable to identify and solve the problem, I turn to you. At the time of the screenshot, the following processes were running: Abbildname PID Sitzungsname Sitz.-Nr. Speichernutzung ========================= ======== ================ =========== =============== System Idle Process 0 Services 0 8 K System 4 Services 0 2.160 K Registry 148 Services 0 88.736 K smss.exe 524 Services 0 1.272 K csrss.exe 812 Services 0 5.492 K wininit.exe 904 Services 0 7.356 K csrss.exe 912 Console 1 5.700 K services.exe 976 Services 0 10.728 K lsass.exe 996 Services 0 21.108 K svchost.exe 772 Services 0 29.504 K fontdrvhost.exe 1008 Services 0 3.976 K svchost.exe 1088 Services 0 15.516 K svchost.exe 1136 Services 0 8.868 K winlogon.exe 1196 Console 1 12.312 K fontdrvhost.exe 1260 Console 1 11.920 K dwm.exe 1328 Console 1 96.468 K svchost.exe 1440 Services 0 10.652 K svchost.exe 1448 Services 0 14.172 K svchost.exe 1460 Services 0 16.068 K svchost.exe 1528 Services 0 11.996 K svchost.exe 1592 Services 0 10.220 K svchost.exe 1628 Services 0 6.660 K svchost.exe 1688 Services 0 18.436 K svchost.exe 1868 Services 0 6.300 K svchost.exe 1876 Services 0 9.088 K svchost.exe 1944 Services 0 7.960 K NVDisplay.Container.exe 2020 Services 0 16.792 K svchost.exe 1080 Services 0 11.792 K svchost.exe 1816 Services 0 12.036 K svchost.exe 1924 Services 0 13.176 K svchost.exe 2180 Services 0 13.884 K svchost.exe 2188 Services 0 5.964 K svchost.exe 2196 Services 0 9.748 K svchost.exe 2204 Services 0 7.840 K svchost.exe 2268 Services 0 20.384 K svchost.exe 2364 Services 0 9.628 K Memory Compression 2372 Services 0 Nicht zutreffen svchost.exe 2448 Services 0 7.372 K svchost.exe 2480 Services 0 9.288 K svchost.exe 2488 Services 0 8.108 K NVDisplay.Container.exe 2684 Console 1 65.288 K svchost.exe 2860 Services 0 9.008 K svchost.exe 3024 Services 0 15.384 K svchost.exe 3048 Services 0 17.568 K svchost.exe 2652 Services 0 8.536 K svchost.exe 3148 Services 0 9.380 K svchost.exe 3364 Services 0 7.016 K svchost.exe 3372 Services 0 10.436 K svchost.exe 3504 Services 0 19.424 K svchost.exe 3584 Services 0 14.180 K spoolsv.exe 3708 Services 0 17.940 K wlanext.exe 3748 Services 0 5.848 K conhost.exe 3760 Services 0 10.024 K svchost.exe 3768 Services 0 20.660 K svchost.exe 3836 Services 0 8.384 K svchost.exe 4000 Services 0 35.360 K svchost.exe 2996 Services 0 6.952 K AsusUpdateCheck.exe 2120 Services 0 10.528 K svchost.exe 4104 Services 0 46.040 K escsvc64.exe 4112 Services 0 6.888 K svchost.exe 4120 Services 0 20.336 K svchost.exe 4140 Services 0 10.932 K svchost.exe 4176 Services 0 13.496 K svchost.exe 4184 Services 0 6.928 K nvcontainer.exe 4200 Services 0 41.736 K svchost.exe 4212 Services 0 5.816 K svchost.exe 4220 Services 0 12.936 K mepService.exe 4232 Services 0 10.124 K RtkAudUService64.exe 4240 Services 0 10.384 K MsMpEng.exe 4264 Services 0 192.388 K LightingService.exe 4300 Services 0 28.180 K svchost.exe 4444 Services 0 9.396 K svchost.exe 4804 Services 0 6.128 K dasHost.exe 4844 Services 0 17.636 K svchost.exe 5004 Services 0 12.880 K svchost.exe 5744 Services 0 9.168 K NisSrv.exe 6592 Services 0 15.508 K svchost.exe 6768 Services 0 5.604 K svchost.exe 7108 Services 0 7.424 K nvcontainer.exe 4092 Console 1 113.244 K nvcontainer.exe 6896 Console 1 72.724 K sihost.exe 6336 Console 1 28.384 K svchost.exe 6420 Console 1 20.372 K svchost.exe 1256 Console 1 37.988 K mep.exe 6840 Console 1 44.796 K taskhostw.exe 6036 Console 1 19.276 K muachost.exe 6228 Console 1 3.840 K svchost.exe 7184 Services 0 15.752 K svchost.exe 7224 Services 0 8.240 K svchost.exe 7520 Services 0 16.988 K explorer.exe 7604 Console 1 215.060 K svchost.exe 7900 Console 1 22.784 K StartMenuExperienceHost.e 7340 Console 1 89.136 K RuntimeBroker.exe 8344 Console 1 27.332 K svchost.exe 8436 Services 0 6.256 K SearchIndexer.exe 8692 Services 0 44.380 K SearchApp.exe 8716 Console 1 236.752 K RuntimeBroker.exe 9100 Console 1 48.704 K NVIDIA Web Helper.exe 8236 Console 1 40.956 K conhost.exe 7416 Console 1 1.396 K GoogleCrashHandler.exe 7400 Services 0 1.120 K GoogleCrashHandler64.exe 7660 Services 0 684 K nvsphelper64.exe 9320 Console 1 13.924 K NVIDIA Share.exe 8188 Console 1 80.760 K NVIDIA Share.exe 10412 Console 1 52.820 K NVIDIA Share.exe 10672 Console 1 91.376 K TextInputHost.exe 11792 Console 1 52.172 K RuntimeBroker.exe 11980 Console 1 18.720 K EEventManager.exe 12236 Console 1 15.652 K chrome.exe 11240 Console 1 315.404 K svchost.exe 10996 Services 0 11.432 K chrome.exe 7572 Console 1 9.240 K chrome.exe 11016 Console 1 245.496 K chrome.exe 9396 Console 1 57.196 K chrome.exe 11300 Console 1 19.328 K chrome.exe 11472 Console 1 160.324 K chrome.exe 11652 Console 1 53.124 K chrome.exe 2244 Console 1 84.500 K chrome.exe 6908 Console 1 20.016 K chrome.exe 12496 Console 1 88.556 K chrome.exe 12912 Console 1 224.076 K chrome.exe 12920 Console 1 70.872 K chrome.exe 12928 Console 1 216.424 K chrome.exe 13220 Console 1 195.024 K chrome.exe 12692 Console 1 141.836 K chrome.exe 12384 Console 1 86.488 K chrome.exe 11864 Console 1 134.032 K chrome.exe 12892 Console 1 133.764 K chrome.exe 13432 Console 1 215.560 K ApplicationFrameHost.exe 4344 Console 1 26.084 K svchost.exe 11564 Services 0 10.476 K svchost.exe 13704 Services 0 18.844 K svchost.exe 6208 Services 0 11.628 K SgrmBroker.exe 14604 Services 0 9.172 K svchost.exe 14688 Services 0 9.508 K svchost.exe 14868 Services 0 10.248 K svchost.exe 14952 Console 1 26.128 K svchost.exe 12432 Services 0 11.320 K audiodg.exe 4352 Services 0 14.792 K SecurityHealthService.exe 6200 Services 0 12.552 K chrome.exe 2496 Console 1 144.248 K svchost.exe 6764 Services 0 9.988 K dllhost.exe 7932 Console 1 13.960 K svchost.exe 7528 Services 0 9.844 K ts3client_win64.exe 12344 Console 1 175.540 K svchost.exe 7752 Console 1 194.744 K ctfmon.exe 4668 Console 1 31.928 K GameBar.exe 10988 Console 1 81.128 K GameBarFTServer.exe 14080 Console 1 23.708 K RuntimeBroker.exe 11800 Console 1 19.916 K ShellExperienceHost.exe 9920 Console 1 58.300 K RuntimeBroker.exe 6780 Console 1 21.744 K chrome.exe 14536 Console 1 359.508 K Multi Theft Auto.exe 15060 Console 1 23.692 K gta_sa.exe 8916 Console 1 681.948 K GameBarPresenceWriter.exe 9148 Console 1 7.240 K wow64_helper.exe 6452 Console 1 6.564 K UserOOBEBroker.exe 12184 Console 1 9.072 K chrome.exe 15284 Console 1 201.764 K chrome.exe 4872 Console 1 154.868 K CEFLauncher.exe 11812 Console 1 20.716 K svchost.exe 8148 Services 0 11.748 K chrome.exe 3684 Console 1 111.904 K SearchProtocolHost.exe 13532 Services 0 15.364 K SearchFilterHost.exe 4820 Services 0 9.440 K smartscreen.exe 5832 Console 1 23.664 K svchost.exe 1208 Services 0 9.304 K backgroundTaskHost.exe 12408 Console 1 27.836 K RuntimeBroker.exe 1972 Console 1 20.708 K svchost.exe 13172 Services 0 8.100 K chrome.exe 14748 Console 1 24.476 K chrome.exe 4248 Console 1 44.008 K cmd.exe 7720 Console 1 4.600 K conhost.exe 14856 Console 1 19.592 K tasklist.exe 2604 Console 1 9.036 K WmiPrvSE.exe 3880 Services 0 9.520 K MTA:SA Diagnose Tool Info: https://pastebin.mtasa.com/714794470 Can anyone out there help me with this problem? I'm pretty much at my wits' end. Thanks in advance. Sincerely, Angry
-
La primera vez que instale mta, podia jugar en servidores comun y corriente hasta una vez que dejaron de funcionarme, pues, cada vez que va a terminar de descargar el servidor el juego se cierra solo sin ningun mensaje de error ni nada, del error incluso hice un video donde muestro lo que sucede con un servidor en el que quiero entrar. Ya hice lo que me sugirieron con el MTADiag, aqui esta el link: https://pastebin.mtasa.com/464196500 Ya
-
Hello, yesterday I tried to connect to my favourit server. I didn t plain in years. When I tried to connect i got an error: Error [CC23] Connection timed out. I only have this problem with this server. in the server browser it doesn t show me my ping and the gamemode. But only for this one specific server. I got GTA San Andreas from steam and my MTA installation is a completly new one. I hope you can help me and you can understand what I am writing since I am not too good in english.
-
Kicked because of i have missing anticheat components pastebin: https://pastebin.mtasa.com/121205153
- 2 replies
-
- sd 16 021a
- anticheat
-
(and 2 more)
Tagged with:
-
buenas ~ tengo un error con la gm de roleplay [ paradise ] es un error de mysql y no se mucho de mysql y ya cambie lo del sql [ lo del host y user, etc ] y tambien el settings, me crea todas las tablas menos la que dice characters [xx-xx-xx xx:xx:xx] ERROR: sql\layout.lua:91: Unable to create table characters [ soy nuevo en el foro ] ~gracias de antemano.