Jump to content

Search the Community

Showing results for tags 'error'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Multi Theft Auto: San Andreas 1.x
    • Support for MTA:SA 1.x
    • User Guides
    • Open Source Contributors
    • Suggestions
    • Ban appeals
  • General MTA
    • News
    • Media
    • Site/Forum/Discord/Mantis/Wiki related
    • MTA Chat
    • Other languages
  • MTA Community
    • Scripting
    • Maps
    • Resources
    • Other Creations & GTA modding
    • Competitive gameplay
    • Servers
  • Other
    • General
    • Multi Theft Auto 0.5r2
    • Third party GTA mods
  • Archive
    • Archived Items
    • Trash

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Member Title


Gang


Location


Occupation


Interests

  1. alexeypro04

    Crash MTA

    Version = 1.5.6-release-14334.0.000 Time = Sat Sep 15 20:51:55 2018 Module = C:\Program Files (x86)\MTA San Andreas 1.5\mods\deathmatch\client.dll Code = 0xE06D7363 Offset = 0x003470D8 EAX = 0028F568 EBX=D76FFE14 ECX = 00000003 EDX = 00000000 ESI = 60C670F4 EDI = 0028F5D0 EBP = 0028F5B8 ESP = 0028F568 EIP = 76F6C54F FLG = 00200212 CS = 0023 DS = 002B SS = 002B ES = 002B FS = 0053 HELP PLEASE?
  2. Whenever I go to do a dx panel this error appears ... What can I do to correct? "ERROR: Server triggered clientside event "eventoabrir", but event is not added clientside" -------------------CLIENT-------------------------- function abrir (_,state) if painel == false then showCursor(true) addEventHandler("onClientRender", root, Pdx) painel = true else showCursor(false) removeEventHandler("onClientRender", root, Pdx) painel = false end end addEvent("abrir", true) addEventHandler("abrir", root , abrir) ------------------SERVER-------------------------- local abrir = "painel" function showPanellr(thePlayer) triggerClientEvent(root, "abrir", thePlayer) end addEventHandler("onMarkerHit", mrkInicio, showPanellr)
  3. me tira error al iniciar el juego, "error 1392" y cuando estoy instalando el launcher del mta me dice que no se ha detectado una versión valida de windows para la instalacion AYUDA
  4. Hola bueno quería pedirles si me pueden ayudar con este script que ise lo que pasa es que ya funciona todos los botones y eso pero al momento de logearme me sale que esta mal la contraseña o no existe y al momento de registrarme me sale que ya existe queria saber si me ayudan a repararlo no se si es un problema de algun evento grid o algo por favor llevo todo el dia intentando y no me sale que podra ser el error cliente: GUIEditor = { button = {}, window = {}, edit = {}, staticimage = {}, label = {} } zero = "" two = "" GUIEditor.window[1] = guiCreateWindow(0.38, 0.31, 0.22, 0.32, "Login", true) guiWindowSetSizable(GUIEditor.window[1], false) showCursor(true) logon = guiCreateButton(0.03, 0.82, 0.46, 0.15, "Login", true, GUIEditor.window[1]) guiSetFont(logon, "default-bold-small") GUIEditor.button[2] = guiCreateButton(0.52, 0.82, 0.46, 0.15, "Registro", true, GUIEditor.window[1]) guiSetFont(GUIEditor.button[2], "default-bold-small") GUIEditor.staticimage[1] = guiCreateStaticImage(0.02, 0.06, 0.96, 0.26, ":guieditor/images/plus.png", true, GUIEditor.window[1]) GUIEditor.label[1] = guiCreateLabel(0.41, 0.34, 0.20, 0.08, "Usuario", true, GUIEditor.window[1]) guiSetFont(GUIEditor.label[1], "default-bold-small") guiLabelSetHorizontalAlign(GUIEditor.label[1], "center", false) guiLabelSetVerticalAlign(GUIEditor.label[1], "center") GUIEditor.label[2] = guiCreateLabel(0.41, 0.55, 0.20, 0.08, "contraseña", true, GUIEditor.window[1]) guiSetFont(GUIEditor.label[2], "default-bold-small") guiLabelSetHorizontalAlign(GUIEditor.label[2], "center", false) guiLabelSetVerticalAlign(GUIEditor.label[2], "center") GUIEditor.edit[1] = guiCreateEdit(0.28, 0.42, 0.47, 0.11, "", true, GUIEditor.window[1]) GUIEditor.edit[2] = guiCreateEdit(0.28, 0.65, 0.47, 0.10, "", true, GUIEditor.window[1]) guiEditSetMasked ( password, true ) usuario = guiGetText ( GUIEditor.edit[1] ) guiGetText ( GUIEditor.edit[2] ) function onregister ( ) triggerServerEvent("rg",getLocalPlayer(),usuario,contra) end addEventHandler ( "onClientGUIClick", GUIEditor.button[2], onregister) function onlogin ( ) triggerServerEvent("lg",getLocalPlayer(),usuario,contra) end addEventHandler ( "onClientGUIClick", logon, onlogin) function ocu ( ) guiSetVisible( GUIEditor.window[1], false ) showCursor(false) end addEvent ( "ocultar", true ) addEventHandler ( "ocultar", getLocalPlayer(), ocu) button = guiCreateButton( 0.7, 0.1, 0.2, 0.1, "OK", true ) --Create an edit box and define it as "editBox". editBox = guiCreateEdit( 0.3, 0.1, 0.4, 0.1, "", true ) guiEditSetMaxLength ( editBox, 128 ) --the max chatbox length is 128, so force this --setup our function to output the message to the chatbox function outputEditBox () local text = guiGetText ( editBox )--get the text from the edit box outputChatBox ( contra ) --output that text end addEventHandler ( "onClientGUIClick", button, outputEditBox ) y servidor function rg(usuario,contra) if (addAccount(usuario,contra)) then triggerClientEvent(source,"ocultar",source) logIn (source,getAccount(usuario,contra),contra) else outputChatBox("la cuenta ya existe") end end addEvent("rg",true) addEventHandler("rg",getRootElement(), rg) function lg(usuario,contra) cuenta = getAccount(usuario,contra) if (cuenta) then triggerClientEvent(source,"ocultar",source) logIn (source,getAccount(usuario,contra),contra) outputChatBox("te logeaste correctamente") setCameraTarget(source) else outputChatBox("la cuenta no existe o la contraseña esta mal") end end addEvent("lg",true) addEventHandler("lg",getRootElement(), lg) addEventHandler ( "onPlayerJoin", getRootElement(),function () triggerClientEvent(source,"abrir",source) end) function setCameraOnPlayerJoin() -- slowly fade the camera in to make the screen visible fadeCamera(source, true, 5) -- set the player's camera to a fixed position, looking at a fixed point setCameraMatrix(source, -1568, 540, 80, -400000, 10000000, 99.881813049316) end addEventHandler("onPlayerJoin", root, setCameraOnPlayerJoin) addEventHandler ( "onResourceStart", getRootElement(), setCameraOnPlayerJoin )
  5. me tira error al iniciar el juego, "error 1392" y cuando estoy instalando el launcher del mta me dice que no se ha detectado una versión valida de windows para la instalacion AYUDA
  6. me tira error al iniciar el juego, "error 1392" y cuando estoy instalando el launcher del mta me dice que no se ha detectado una versión valida de windows para la instalacion AYUDA I get an error when starting the game, "error 1392" and when I'm installing the mta launcher it tells me that a valid windows version has not been detected for the installation. HELP
  7. Hi, I'm new to the forum and I hope you give me the answer to also use MTADiag and this is what means https://pastebin.mtasa.com/749116153 When I enter the game it takes me out sometimes and I get to play but then it takes me out I hope you give me the answer to this
  8. Hello, i am having a problem with MTA. I am not able to connect to the server shown on the screenshot, yet there is no problem to connect with any other server I have tried re-installing both GTA and MTA, also moving them to another disk. Does anyone know how to fix it, thank you in advance for any helpful replies.
  9. function walkstyle(thePlayer) setPedWalkingStyle(localPlayer,128) end function walk ( thePlayer ) elseif isObjectInACLGroup("user."..walk, aclGetGroup("Console")) then walkstyle(thePlayer) end end addCommandHandler("walk", walk) I couldn't fix it. How can i fix this code.
  10. <catalog type="vehicle"> <group name="Latające"> <group name="Helikoptery"> <vehicle id="548" name="Cargobob" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="417" name="Leviathan" /> <vehicle id="487" name="Maverick" /> <vehicle id="488" name="News Chopper" /> <vehicle id="497" name="Policyjny Maverick" /> <vehicle id="563" name="Raindance" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="469" name="Sparrow" /> </group> <group name="Samoloty"> <vehicle id="1" name="Zablokowane" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="511" name="Beagle" /> <vehicle id="512" name="Cropduster" /> <vehicle id="593" name="Dodo" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="553" name="Nevada" /> <vehicle id="476" name="Rustler" /> <vehicle id="519" name="Shamal" /> <vehicle id="460" name="Skimmer" /> <vehicle id="513" name="Stuntplane" /> </group> </group> <group name="Jednoślady"> <group name="Motory"> <vehicle id="581" name="BF-400" /> <vehicle id="462" name="Faggio" /> <vehicle id="521" name="FCR-900" /> <vehicle id="463" name="Freeway" /> <vehicle id="523" name="HPV1000" /> <vehicle id="522" name="NRG-500" /> <vehicle id="461" name="PCJ-600" /> <vehicle id="448" name="Pizza Boy" /> <vehicle id="468" name="Sanchez" /> <vehicle id="586" name="Wayfarer" /> <vehicle id="471" name="Quadbike" /> </group> <group name="Rowery"> <vehicle id="509" name="Miejski" /> <vehicle id="481" name="BMX" /> <vehicle id="510" name="Górski" /> </group> </group> <group name="Łodzie"> <vehicle id="472" name="Łódź Straży" /> <vehicle id="473" name="Dinghy" /> <vehicle id="493" name="Jetmax" /> <vehicle id="595" name="Łódź Wojskowa" /> <vehicle id="484" name="Jacht 2" /> <vehicle id="430" name="Łódź Policyjna" /> <vehicle id="453" name="Reefer" /> <vehicle id="452" name="Speeder" /> <vehicle id="446" name="Squalo" /> <vehicle id="454" name="Jacht 1" /> </group> <group name="Samochody"> <group name="Sportowe"> <vehicle id="602" name="Alpha" /> <vehicle id="429" name="Banshee" /> <vehicle id="402" name="Buffalo" /> <vehicle id="541" name="Bullet" /> <vehicle id="415" name="Cheetah" /> <vehicle id="480" name="Comet" /> <vehicle id="562" name="Elegy" /> <vehicle id="587" name="Euros" /> <vehicle id="565" name="Flash" /> <vehicle id="411" name="Infernus" /> <vehicle id="559" name="Jester" /> <vehicle id="603" name="Phoenix" /> <vehicle id="560" name="Sultan" /> <vehicle id="506" name="Super GT" /> <vehicle id="451" name="Turismo" /> <vehicle id="558" name="Uranus" /> <vehicle id="555" name="Windsor" /> <vehicle id="477" name="ZR-350" /> </group> <group name="Lowridery"> <vehicle id="536" name="Blade" /> <vehicle id="575" name="Broadway" /> <vehicle id="518" name="Buccaneer" /> <vehicle id="419" name="Esperanto" /> <vehicle id="534" name="Remington" /> <vehicle id="567" name="Savanna" /> <vehicle id="535" name="Slamvan" /> <vehicle id="576" name="Tornado" /> <vehicle id="412" name="Voodoo" /> </group> <group name="2-Drzwi"> <vehicle id="496" name="Blista Compact" /> <vehicle id="401" name="Bravura" /> <vehicle id="527" name="Cadrona" /> <vehicle id="542" name="Clover" /> <vehicle id="533" name="Feltzer" /> <vehicle id="526" name="Fortune" /> <vehicle id="474" name="Hermes" /> <vehicle id="545" name="Hustler" /> <vehicle id="517" name="Majestic" /> <vehicle id="410" name="Manana" /> <vehicle id="436" name="Previon" /> <vehicle id="475" name="Sabre" /> <vehicle id="439" name="Stallion" /> <vehicle id="549" name="Tampa" /> <vehicle id="491" name="Virgo" /> </group> <group name="4-Drzwi"> <vehicle id="445" name="Admiral" /> <vehicle id="438" name="Cabbie" /> <vehicle id="507" name="Elegant" /> <vehicle id="585" name="Emperor" /> <vehicle id="466" name="Glendale" /> <vehicle id="492" name="Greenwood" /> <vehicle id="546" name="Intruder" /> <vehicle id="551" name="Merit" /> <vehicle id="516" name="Nebula" /> <vehicle id="467" name="Oceanic" /> <vehicle id="426" name="Premier" /> <vehicle id="547" name="Primo" /> <vehicle id="405" name="Sentinel" /> <vehicle id="580" name="Stafford" /> <vehicle id="409" name="Stretch" /> <vehicle id="550" name="Sunrise" /> <vehicle id="566" name="Tahoma" /> <vehicle id="420" name="Taxi" /> <vehicle id="540" name="Vincent" /> <vehicle id="421" name="Washington" /> <vehicle id="529" name="Willard" /> </group> </group> <group name="Służbowe"> <vehicle id="416" name="Ambulans" /> <vehicle id="433" name="Barracks" /> <vehicle id="427" name="Ciężarówka SWAT" /> <vehicle id="490" name="FBI" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="407" name="Straż Pożarna" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="596" name="Policja (LS)" /> <vehicle id="598" name="Policja (LV)" /> <vehicle id="597" name="Policja (SF)" /> <vehicle id="599" name="Jeep Policyjny" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="1" name="Zablokowane" /> </group> <group name="Ciężkie"> <group name="=Służbowe"> <vehicle id="524" name="Ciężarówka z Cementem" /> <vehicle id="578" name="Ciężarówka 1" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="455" name="Ciężarówka 2" /> <vehicle id="530" name="Wózek Widłowy" /> <vehicle id="403" name="Ciężarówka 3" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="515" name="Duża Ciężarówka" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="514" name="Ciężarówka 4" /> <vehicle id="525" name="Holownik" /> <vehicle id="408" name="Śmieciarka" /> <vehicle id="1" name="='Zablokowane" /> </group> <group name="Przyczepy"> <vehicle id="1" name="Zablokowane" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="537" name="Pociąg" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="584" name='Przyczepa 1" /> <vehicle id="1" name="Zablokowane" /> <vehicle id="435" name="Przyczepa 2" /> <vehicle id="450" name="Przyczepa 3" /> <vehicle id="591" name="Przyczepa 4" /> </group> <group name="Ciężarówki"> <vehicle id="499" name="Benson" /> <vehicle id="609" name="Black Boxville" /> <vehicle id="422" name="Bobcat" /> <vehicle id="498" name="Boxville" /> <vehicle id="414" name="Mule" /> <vehicle id="600" name="Picador" /> <vehicle id="543" name="Sadler" /> <vehicle id="428" name="Securicar" /> <vehicle id="478" name="Walton" /> <vehicle id="456" name="Yankee" />żż <vehicle id="554" name="Yosemite" /> </group> <group name="Vany"> <vehicle id="1" name="Zablokowane" /> <vehicle id="482" name="Burrito" /> <vehicle id="483" name="Camper" /> <vehicle id="508" name="Journey" /> <vehicle id="418" name="Moonbeam" /> <vehicle id="582" name="News van" /> <vehicle id="413" name="Pony" /> <vehicle id="440" name="Rumpo" /> </group> <group name="Jeepy"> <vehicle id="589" name="Club" /> <vehicle id="579" name="Huntley" /> <vehicle id="400" name="Landstalker" /> <vehicle id="500" name="Mesa" /> <vehicle id="470" name="Patriot" /> <vehicle id="404" name="Perennial" /> <vehicle id="489" name="Rancher" /> <vehicle id="479" name="Regina" /> <vehicle id="442" name="Romero" /> <vehicle id="495" name="Sandking" /> <vehicle id="458" name="Solair" /> <vehicle id="561" name="Stratum" /> </group> </catalog>
  11. Hi ! I just downloaded a simple script that puts NOS into cars when u hold fire. I wanted to make it so it only works for selected serials but now i get this error : ERROR : Loading script failed: nos\nitro.lua:17: unexpected symbol near ')' Please help ! Attached code bellow Engedelyezettserial means AllowedSerials engedelyezettserial = { [""]=true, -- NoOne [""]=true, -- Mili ["9BC41DB2DB129348886FB6A5603433F2"]=true, -- Jani } g_Me = getLocalPlayer( ); g_Root = getRootElement( ); g_ResRoot = getResourceRootElement( ); addEventHandler( "onClientResourceStart", g_ResRoot, function( ) if engedelyezettserial[getPlayerSerial(thePlayer)] then bindKey( "vehicle_fire", "both", toggleNOS ); bindKey( "vehicle_secondary_fire", "both", toggleNOS ); end ) function toggleNOS( key, state ) local veh = getPedOccupiedVehicle( g_Me ); if engedelyezettserial[getPlayerSerial(thePlayer)] then if veh and not isEditingPosition then if state == "up" then removeVehicleUpgrade( veh, 1010 ); setControlState( "vehicle_fire", false ); else addVehicleUpgrade( veh, 1010 ); end end end
  12. Hello When I get inside some servers, I'll face the following: you were kicked from game (SD #28 cxj) this server does not alow wine Please help me solve this problem and I can play on Linux
  13. Hello. I have a problem with the game. When logging in to the server and when working in the Map Editor crashes with error File error reading gta3.img. From the beginning put MTA with the modified GTA SA -> Start to fly out with the same error. I put a clean GTA, installed MTA there and also changed the path to GTA SA during the installation. I go to play and the same mistake. On the Internet, I really did not find a solution to the problem. The title of the window with an error: Disconnect [CD48]. Help me please.
  14. Enju12

    Error

    Error:local isWorking = exports.CIGbusiness:getPlayerWorkingStatus(player) or false function: function viewMyJobInfo(player, key) if (getResourceFromName("CIGjobs") and getResourceState(getResourceFromName("CIGjobs")) == "running") then if (exports.CIGjobs:getPlayerJob(player) == "Pilot") then return end if (exports.CIGjobs:getPlayerJob(player) == "Trucker") then return end if (exports.CIGbusiness:getPlayerJob(player) == "Criminales") then return end if (exports.CIGbusiness:getPlayerJob(player) == "Serial Killer") then return end if (exports.CIGjobs:getPlayerJob(player) == "Farmer") then return end end if (isPedDead(player)) then return end local account = getPlayerAccount(player) if (not account) then return end local update = not key local accName = tostring(getAccountName(account)) local playerJob = exports.CIGbusiness:getPlayerJob(player) local isWorking = exports.CIGbusiness:getPlayerWorkingStatus(player) or false local jobHunt = false local bus = getBusUserData(player) if (bus) then busdata = getBusinessData(bus[1]) busStr = "Business Name: "..tostring(bus[1]).." | Employees: "..tostring(busdata[1]).." | Total Worth: "..tostring(busdata[2]) else bus = {"", 0} busStr = "Business Name: N/A | Employees: N/A | Total Worth: N/A" end local invite = getPlayerBusinessInvite(player) local changes = prepareBusinessMessages(bus[1]) local tasks = getPlayerTasks(player) if (not playerJob) then playerJob = "N/A" end triggerClientEvent(player, "CIGbusiness.viewMyInfo", player, accName, playerJob, isWorking, jobHunt, busStr, update, bus[2] > 0, bus[2] == 2 or bus[2] == 3, bus[2] == 3, invite, changes, tasks) end function beginViewMyJobInfo() viewMyJobInfo(client, "F3") end addEvent("CIGbusiness.vmji", true) addEventHandler("CIGbusiness.vmji", root, beginViewMyJobInfo)
  15. I have a problem, I tried to make a local blip for each player, that is, if you are a business owner on the server (in my case), then only you have a note of where your business is. Errors in the console are not any no, it's completely clean. ----------------------------------------------------- this is server.lua function dbCreateBusinessesCallback(queryHandle) local sql = dbPoll(queryHandle, 0) if sql and #sql > 0 then for index, sqlRow in ipairs(sql) do local pos = split(sqlRow["bPos"], ",") local bMarker = createMarker(pos[1], pos[2], pos[3], "corona", 1.5, settings["business.markerColor"][1], settings["business.markerColor"][2], settings["business.markerColor"][3], settings["business.markerColor"][4]) setElementInterior(bMarker, pos[4]) setElementDimension(bMarker, pos[5]) local timer = setTimer(businessPayout, sqlRow["bPayoutCurTime"] , 1, bMarker) setElementData(bMarker, "bData", {sqlRow["bID"], sqlRow["bName"], sqlRow["bOwner"], sqlRow["bCost"], sqlRow["bPayout"], sqlRow["bPayoutTime"], sqlRow["bPayoutOTime"], sqlRow["bPayoutUnit"], sqlRow["bBank"], timer}) local bData = getElementData(bMarker, "bData") local id, name, owner, cost, payout, payoutTime, payoutOTime, payoutUnit, bank, timer = unpack(bData) if settings["business.blip"] ~= false then if sqlRow["bOwner"] == "For Sale" then addEventHandler( 'onPlayerLogin', root, function(getPlayerAccount) setElementData( source, 'account', getAccountName(getPlayerAccount(player))); triggerClientEvent(source,"createBizBlips", source) end); end end addEventHandler("onMarkerHit", bMarker, onBusinessMarkerHit) addEventHandler("onMarkerLeave", bMarker, onBusinessMarkerLeave) local timer = setTimer(businessPayout, sqlRow["bPayoutCurTime"] , 1, bMarker) setElementData(bMarker, "bData", {sqlRow["bID"], sqlRow["bName"], sqlRow["bOwner"], sqlRow["bCost"], sqlRow["bPayout"], sqlRow["bPayoutTime"], sqlRow["bPayoutOTime"], sqlRow["bPayoutUnit"], sqlRow["bBank"], timer}) end end end ---------------------------------------------------- this is client.lua ---------------this is bind bindKey( 'i', 'both', function( key, keyState ) if keyState == 'down' then for k, v in ipairs ( getElementsByType( 'marker', getResourceRootElement() ) ) do if getElementData( v, 'bOwner' ) and getElementData( v, 'bOwner' )[7] then if getElementData( v, 'bOwner' )[7] ~= '' then else createBlipAttachedTo( v, 52 ); end; end; end; else for k, v in ipairs( getElementsByType( 'marker', getResourceRootElement() ) ) do if getElementData( v, 'bOwner' ) then for k, elem in ipairs( getAttachedElements( v ) ) do if getElementType( elem ) == 'bBlip' then destroyElement( elem ); end; end; end; end; createBlips() end; end ); ------------------------ And this is the second part function getPlayerByAccountName( name ) for i, v in ipairs( getElementsByType( 'player' ) ) do if getElementData( v, 'account' ) == name then return v; end; end; return false; end; function creatbBlips() local account = getAccount(owner) for k, v in ipairs ( getElementsByType( 'marker', getResourceRootElement() ) ) do if getElementData( v, 'bOwner' ) and getElementData( v, 'bOwner' )[7] then if getElementData( v, 'bOwner' )[7] == getElementData( localPlayer, account) then createBlipAttachedTo( v, 52 ); end; end; end; end addEvent("createBizBlips",true) addEventHandler("createBizBlips",root,createBlips) createBlips() help me pleas :3 so, then I'm a terrible perplexity
  16. Saludos a todos. Hace dos días que tengo el mismo problema y no puedo solucionarlo.. Resulta que tengo dos ordenadores, uno lo utilizo para mis creaciones y testear el servidor (PC sobremesa) Y el otro lo utilizo unicamente como host para el servidor. Dentro del ordenador de testeo todo funciona bien y sin errores. Pero al momento de transladar el servidor al ordenador que utilizo como host, aparece el siguiente error: ERROR: DayZ\Vehicle_spawns.lua:1805: attemp to call global 'getvehicleMaxFuel' <a nil value> Sé que es un error conocido por muchos, se forma cuando intentas spawnear un vehiculo desde el panel de admin (P) Esto genera que se malogre la base de datos del servidor (Internal.db) El problema es que como dije antes, en el servidor de testeo todo funciona perfectamente. Entonces, ¿Porque me aparece este error solo en el ordenador que utilizo como Host? He intentado con Eliminar, reemplazar y hasta reparar el Internal.db, pero hasta ahora nada ha funcionado, el error sigue apareciendo .. ¿Alguna idea?
  17. Hello guys, I am wondering if you can help me with this issue please, I am running windows 10 with mta 1.5 When I launch it I get this: then windows asks to grant permissions, if I click No I get this: Here, https://wiki.multitheftauto.com/wiki/Error_Codes I can read that Error Code CL01 Associated strings MTA:SA could not complete the following task:\n\n '%s'\n Multi Theft Auto: San Andreas File:LineNumber Client\loader\CInstallManager.cpp:350 How can I solve this? If I click on Yes when windows asks to grant permissions, mta launches; but I rather have a permanent fix please, i am sure there is something wrong otherwise i would not get those windows I am showing you.
  18. il0veass2

    HELP PLEASE BROS.

    Guys,Whenever i try to connect to a specific server ( PUBG Servers) and start downloading,after downloading some MBs i get disconnected from the server and this error is there "Download error: Error downloading requested files. Couldn't connect to server. [Failed to connect to 79.137.97.42 port 24005: Connection refused] [pb_models/data/714f17.pb] & "Download error: Error downloading requested files. Timeout was reached. [Connection timed out after 10000 milliseconds] [pb_models/data/3418ad.pb]" Please Help bros.I need a solution asap,Thanks. PS:Im new here just signed up,idk whether its a right place to post this error.
  19. hi i 've created my first menu with Guieditor and i've scripted it but after i want to test it it didn't work and i found this Error: as you can see it on the image and this is the script GUIEditor = { button = {}, window = {}, edit = {} } addEventHandler("onClientResourceStart", resourceRoot, function() GUIEditor.window[1] = guiCreateWindow(519, 260, 344, 304, "", false) guiWindowSetSizable(GUIEditor.window[1], false) GUIEditor.edit[1] = guiCreateEdit((344 - 199) / 2, (304 - 20) / 2, 199, 20, "", false, GUIEditor.window[1]) GUIEditor.button[1] = guiCreateButton(280, 256, 55, 26, "‗הב", false, GUIEditor.window[1]) GUIEditor.edit[2] = guiCreateEdit(507, 146, 0, 110, "", false, GUIEditor.window[1]) GUIEditor.edit[3] = guiCreateEdit(17, 196, 245, 86, "", false, GUIEditor.window[1]) end ) local key = "F3" bindkey(key, "down", function() guiSetVisible(GUIEditor.window[1])) showCursor(guiGetVisible(GUIEditor.window[1])) end ) addEventHandler("onClienGUIClick",root, if (source == GUIEditor.button[1]) guiSetVisible(GUIEditor.window[1],false) showCursor(false) end end what do i do to fix this??
  20. Hi, I am new to MTA in general and i encountered a problem when i tried to play for the first time. Yeah, as you may already know those battle royale games are one of the most played games right now, and i have a laptop that isn't good for those games. And one day when i saw that MTA has this genre and people keept playing on it and they keep saying that it is fun, i downloaded it and installed it. Now when i first joined i got this CC23 problem, and couldn't fix it (NO SERVER WORKS). After a while i found the thing that caused the problem. I have a WIFI router that is connected to another WIFI router (basically to my uncle one, the one who gets the network by the cable). So, when i am connected in my network this error shows up, but when i am connected on my uncle WIFI it works (there is no error and i played a bit). The problem is that the network isn't good from there because its a bit far. Now , if someone can help me to make it work on my WIFI router i would greatly appreciate it. Thanks in advance (Sorry for the long post).
  21. Hello, good afternoon, I would like to know how I can correct this error, which is quite annoying, because when the mta is playing or playing, the message of Direct3D Reset device error appears. which closes the game in full game. https://pastebin.mtasa.com/391451704
  22. What wrong with this script? Error: script.lua:1: unexpected symbol near '?' How to fix this?
  23. Hola tengo problema y nececita su ayuda, resulta que yo juego con unos amigos en un sv de pubg squad y cuando entro me hecha o por el error de ''se ha perdido la conexion con el servidor (cd19) o que me kickean'' no se que hacer nececito un español que le haya pasado es muy molesto y yo en verdad queiro jugar pls muchas gracias
  24. Hello people, I need your help. I was getting "Attempting to index global (nil value)" a lot in past, but i have solved them, somehow. I really don't know why those errors appear. I even separated each event to single files, doesn't help anyway. Code: function loadWeaponsOnSpawn() local ped = source local account = getPlayerAccount(source) local weapon0 = getAccountData(account,"weapon0") local weapon1 = getAccountData(account,"weapon1") local weapon2 = getAccountData(account,"weapon2") local weapon3 = getAccountData(account,"weapon3") local weapon4 = getAccountData(account,"weapon4") local weapon5 = getAccountData(account,"weapon5") local weapon6 = getAccountData(account,"weapon6") local weapon7 = getAccountData(account,"weapon7") local weapon8 = getAccountData(account,"weapon8") local weapon9 = getAccountData(account,"weapon9") local weapon10 = getAccountData(account,"weapon10") local weapon11 = getAccountData(account,"weapon11") local weapon12 = getAccountData(account,"weapon12") local ammo0 = getAccountData(account,"ammo0") local ammo1 = getAccountData(account,"ammo1") local ammo2 = getAccountData(account,"ammo2") local ammo3 = getAccountData(account,"ammo3") local ammo4 = getAccountData(account,"ammo4") local ammo5 = getAccountData(account,"ammo5") local ammo6 = getAccountData(account,"ammo6") local ammo7 = getAccountData(account,"ammo7") local ammo8 = getAccountData(account,"ammo8") local ammo9 = getAccountData(account,"ammo9") local ammo10 = getAccountData(account,"ammo10") local ammo11 = getAccountData(account,"ammo11") local ammo12 = getAccountData(account,"ammo12") local cloth1 = getAccountData(account,"cloth1") local cloth2 = getAccountData(account,"cloth2") local cloth3 = getAccountData(account,"cloth3") local cloth4 = getAccountData(account,"cloth4") local cloth5 = getAccountData(account,"cloth5") local cloth6 = getAccountData(account,"cloth6") local cloth7 = getAccountData(account,"cloth7") local cloth8 = getAccountData(account,"cloth8") local cloth9 = getAccountData(account,"cloth9") local cloth10 = getAccountData(account,"cloth10") local cloth11 = getAccountData(account,"cloth11") local cloth12 = getAccountData(account,"cloth12") local cloth13 = getAccountData(account,"cloth13") local cloth14 = getAccountData(account,"cloth14") local cloth15 = getAccountData(account,"cloth15") local cloth16 = getAccountData(account,"cloth16") local cloth17 = getAccountData(account,"cloth17") if (weapon0) and (weapon1) and (weapon2) and (weapon3) and (weapon4) and (weapon5) and (weapon6) and (weapon7) and (weapon8) and (weapon9) and (weapon10) and (weapon11) and (weapon12) and (ammo0) and (ammo1) and (ammo2) and (ammo3) and (ammo4) and (ammo5) and (ammo6) and (ammo7) and (ammo8) and (ammo9) and (ammo10) and (ammo11) and (ammo12) then giveWeapon(source,weapon0,ammo0) giveWeapon(source,weapon1,ammo1) giveWeapon(source,weapon2,ammo2) giveWeapon(source,weapon3,ammo3) giveWeapon(source,weapon4,ammo4) giveWeapon(source,weapon5,ammo5) giveWeapon(source,weapon6,ammo6) giveWeapon(source,weapon7,ammo7) giveWeapon(source,weapon8,ammo8) giveWeapon(source,weapon9,ammo9) giveWeapon(source,weapon10,ammo10) giveWeapon(source,weapon11,ammo11) giveWeapon(source,weapon12,ammo12) setPedClothes(ped, 4, cloth4) setPedClothes(ped, 5, cloth5) setPedClothes(ped, 6, cloth6) setPedClothes(ped, 7, cloth7) setPedClothes(ped, 8, cloth8) setPedClothes(ped, 9, cloth9) setPedClothes(ped, 10, cloth10) setPedClothes(ped, 11, cloth11) setPedClothes(ped, 12, cloth12) setPedClothes(ped, 13, cloth13) setPedClothes(ped, 14, cloth14) setPedClothes(ped, 15, cloth15) setPedClothes(ped, 16, cloth16) setPedClothes(ped, 17, cloth17) end end addEventHandler("onPlayerSpawn",root,loadWeaponsOnSpawn) Any help appreciated. Thanks I have more scripts like that, nothing helped and I'm not sure what's :Oing cause of this :Oing bull:~ error. ):-( error: [17:24:16] ERROR: [gamemodes]/[play]/play/save2.lua:29: attempt to call global 'getPedClothesID' (a nil value) [17:24:21] ERROR: [gamemodes]/[play]/play/save1.lua:61: attempt to call global 'setPedClothes' (a nil value) Note: It works on death, even after error message, that's what's even more weird
  25. Hi Friends! Help me plz.. Help me solve this error [2017-12-18 23:28:42] WARNING: [ServerNG]\NGTeam\kill.lua:518: Bad argument @ 'getPlayerTeam' [Expected player at argument 1, got nil] function isPlayerInTeam(src, TeamName) local team = getPlayerTeam(src) ----Line 518 if team then if getTeamName(team) == TeamName then return true else return false end end end
×
×
  • Create New...