Jump to content

Search the Community

Showing results for tags 'mta', ' error' or ' connect'.

  • 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. i want add this mod: http://www.gtainside.com/en/sanandreas/mods/8517-world-trade-center-mod-v0-3/ to my mta server, but i don't know, how to add. :c anyone can help me?
  2. Why not working this notification system? Client side: local notifications = {} function createNotification(text2, typ, name1, name2) if typ == "simple" then text = name1.." "..text2 data = { text = text, startTime = getTickCount(), endTime = getTickCount() + 10000 } elseif typ == "duble" then text = name1.." "..text2.." "..name2 data = { text = text, startTime = getTickCount(), endTime = getTickCount() + 10000 } end table.insert(notifications, data) end addEvent( "createNotification", true ) addEventHandler( "createNotification", localPlayer, createNotification ) Server side: addEventHandler('onClientPlayerChangeNick', root, function(oldNick, newNick, text2, typ, name1, name2) triggerServerEvent ("createNotification", root, text2, typ, name1, name2) end ) How to fix this problem in this script? Thanks the help!
  3. i got this warning, and error: "rC.lua:40: bad argument @ 'dxDrawImageSection' [Expected material at argument 9, got nil]" - This is the warning msg.. "sC.lua:6: attempt to index global 'WorldRadar' (a nil value)" - This is the error msg.... And code(s): rC.lua:40: - dxDrawImageSection(WorldRadar["monX"], WorldRadar["monY"], WorldRadar["width"], WorldRadar["height"], mapX + 50, mapY + 60, WorldRadar["width"]/zoom, WorldRadar["height"]/zoom, WorldRadar["Map"], 0, 0, 0, tocolor(255, 255, 255, 255)) --- and the sC:lua:6: - Map = {} Map["F11"] = false function Map.start() MiniMap.start() WorldRadar.start() end Map.start() function Map.draw() if Map["F11"] then return end MiniMap.draw() end addEventHandler("onClientRender", root, Map.draw) function Map.stop() end What wrong? How to fix this problems? Thanks the help!
  4. I want a good radar to my server, but i cannot find. And I searched on community, but i cannot find good too.. Anyone can send me a website, or anything from where can i download good radar(s)? Thank you!
  5. Is it possible to make crypt function from php in lua? I connected IPS 4 by php script using PHP SDK but on Linux it returns array not JSON (so weird, returns JSON on Windows and array on Linux). It makes few casualities in my script so i decided to ask here. Is it possible to make php crypt function in MTA?
  6. Buenas tardes! Como ya vieron en el título del post, estoy buscando gente que le encantaría formar parte de un Proyecto que tengo ya tiempo trabajando en él (Aproximadamente 4 – 5 años), se trata de un FreeRoam estilo SAMP, pero por qué SAMP?, bueno mi primer juego online fue SAMP, posteriormente MTA, y jamás olvidare lo divertido que eran los servidores FreeRoam SAMP, para los que no tuvieron la oportunidad aquí abajo anexare unas fotos para que ustedes mismos puedan entender aproximadamente cómo va el juego Ahora, será todo? No, el equipo actual tiene más ideas en mente, las cuales incluye zonas de drift, minigames, challanges y más!, Si estas realmente interesado nos gustaría invitarte a conversar con nuestro equipo para explicarte más a profundo a donde queremos llegar con este proyecto. Actualmente ya contamos con un Host, mapeos, dominio, ts, etc. Y lo más importante del proyecto son ideas y apoyo por parte de la comunidad de MTA, los invito a formar parte del proyecto o si pueden dejar aquí mismo ideas u opiniones de lo que gustarías ver en el servidor! Repito, si estas interesado no dudes en comunicarte con nosotros, mi equipo y yo estaremos encantados de trabajar contigo! Skype: shadox321 Email: [email protected] Gracias! (NOTA: no sabía dónde poner el post, si me equivoque de sitio una disculpa)
  7. صار لي فتره ما اخش ام تي اي ورجعة شفت عدد الاعبين يوصل لين 4 الاف لاعب تقريبا في اللعبه كلها والسيرفرات العربيه اعلها الوزارة يوصل 200 وشوي باقي السيرفرات العربيه نادر توصل 100لاعب تتوقعون ام تي اي على نهايته او انه لو فيه تطوير واشياء جديده بيزيد عدد الاعبين احسه صار ملل لعب بارد كل شي مكرر لاعبين قليل واذا كان على نهايته اعطونا البديل والسلام خير ختام
  8. i created a 'circle-hud' but it does not work well this is the problem: (when my Health = 14hp) and when my Health = 100hp the 100hp is fine, but the 14 hp not... i want something like that when my hp <100 how to fix this?
  9. markerDoor = createMarker( 2673.44019, -836.30035, 59,"cylinder",2, 0, 255, 0, 150) markerDoor2 = createMarker( 2683.51782, -835.22827, 59,"cylinder",2, 0, 255, 0, 150) puente = createObject(5147, 2631.1005859375, -773.7998046875, 78.200001525879, 0, 6.998291015625, 281.99157714844) --entrada function hPlayer( ) if ( source == markerDoor ) then moveObject ( puente, 10000, 2631.1005859375, -773.7998046875, 68.900001525879, 0, -6.998291015625, 0) end end addEventHandler ( "onMarkerHit", markerDoor, hPlayer) --salida function hPlayer2( ) if ( source == markerDoor2 ) then moveObject ( puente, 10000, 2631.1005859375, -773.7998046875, 78.200001525879, 0, 6.998291015625, 0) end end addEventHandler ( "onMarkerHit", markerDoor2, hPlayer2) Buenas ocupo ayuda, el problema es el siguiente el script funciona pero cada vez que paso por el marker sigue moviendo el objeto. La idea es que solo funciones por ejemplo uno para subir el puente y el otro para bajarlo porque que al pasar varias veces no se mueva si ya esta acomodado
  10. Buenas a todos, les cuento lo siguiente llevo ya casi mas de 1 mes con un proyecto para la creacion de un mapa para mta dayz, seria seguir lo que los brasileños dejaron botado el mapa napalm extreme. Actualmente estoy haciendo nuevas texturas el mapa se dividio en 4 secciones y se esta mapeando hace ya un tiempo. Quiero hacer una propuesta a los que sepan mapear y esten interesados en participar del proyecto actualmente cuando se lance el servidor se les dará sus respectivos beneficios. Una vez finalizado el mapa quiero liberarlo para que todos los que quieran probarlo puedan disfrutar de el. A los que quieran participar y ayudar favor comentar o dejarme un mensaje gracias.
  11. local screenW, screenH = guiGetScreenSize() function ahudd() dxDrawImage(screenW * 0.8424, screenH * 0.6289, screenW * 0.1194, screenH * 0.0256, "nbgg.png", 0, 0, 0, tocolor(255, 255, 255, 255), false) dxDrawImage(screenW * 0.8444, screenH * 0.6322, screenW * 0.1153, screenH * 0.0189, "nn.png", 0, 0, 0, tocolor(255, 255, 255, 255), false) dxDrawText("Jármű épség:", (screenW * 0.8424) + 1, (screenH * 0.6289) + 1, (screenW * 0.9618) + 1, (screenH * 0.6544) + 1, tocolor(0, 0, 0, 255), 1.00, "default-bold", "center", "center", false, false, false, false, false) dxDrawText("Jármű épség:", screenW * 0.8424, screenH * 0.6289, screenW * 0.9618, screenH * 0.6544, tocolor(255, 255, 255, 255), 1.00, "default-bold", "center", "center", false, false, false, false, false) end function asdxd() local playerVehicle = getPedOccupiedVehicle ( localPlayer ) if playerVehicle then local vehicleHealth = getElementHealth ( playerVehicle ) / 10 addEventHandler("onClientRender", root, ahudd) else removeEventHandler("onClientRender", root, ahudd) end end addEventHandler("onClientRender", root, asdxd) fileDelete("client.lua") why not working? i want, when the player get in a vehicle, show the dx element, and when get out, hide the dx element, and if player in a vehicle, the dx element show just for her
  12. Csabee

    Installer crashes!

    Okay, so I have played MTA for a long time. I deleted it from my computer, but now I want to download it again! I downloaded the installer but, when I accept the terms it black out and then crashes! I have a windows 7 please help!
  13. i want edit the " Vote for next map starts in: 5 " dxtext, but i can not find it in race gamemode lua files. which file included this?
  14. local countdown = 120 G3 = guiCreateLabel(0.49, 0.67, 0.03, 0.02, tostring(countdown).." mp", true) guiSetFont(G3, "default-bold-small") guiSetVisible(G3,false) addEventHandler("onClientGUIClick",root, function () if source == buttonGuest then removeEventHandler("onClientRender",root,a123) addEventHandler("onClientRender", root, dxhavendeg) guiSetVisible(buttonLogin,false) guiSetVisible(buttonRegister,false) guiSetVisible(buttonGuest,false) guiSetVisible(editPassword,false) guiSetVisible(editUsername,false) setTimer(function () countdown = countdown - 1 if countdown >= 0 then guiSetText(G3, tostring(countdown)) else outputChatBox("asd") end end, 120000, 1000) end end ) what wrong?
  15. i want download a script, which change the nitro (manual, hybrid, automatic...) when i press a key, and better than race_nos script, where can i download this?
  16. i want search a script on community, but the site does not load.:o why?
  17. Good evening, I need help in Level and XP system, this is a bug not only in XP and Level but when it dies .. the Bug is so when you die has 7 Seconds to be able to be reborn .. only if you move in the middle of it or Disclaimer when I get shot ... when you log in again the game will be bugged, not showing the level ... Summarizing this bugado and I'm already 2 weeks trying to solve this bug and I can not and I decided without on the Wiki can help to help me To solve the Bug I did some systems to try to correct (I do not know much of .lua plus I know the basics) I do some level system and tried to make it look like more did not work .. I do not know if it's right, but I tried to do it myself A system that makes see any player Level and XP of it .. Please I need help in this if it is wrong to correct me please because I want to learn this the system that I did was this function(_, acc) if (acc) then if (getAccountData(acc, "level") ~= 0) and (getAccountData(acc, "experience") ~= 0) then setElementData(source, "level", getAccountData(acc, "level")) setElementData(source, "experience", getAccountData(acc, "experience"))) end end ) Or show me a system that I can put in to make an analysis of when the Player logs in to check the level and his patent eg "Level" and "experience" OPS: When the Player is Born bugged, neither Level nor XP (the Hud in dxDrawText) and the Level goes from 1 to 105 .. I just decided to open a help here on the Wiki because I no longer know what I can do .. Baido ~
  18. i have a radar script, with "showPlayerHudComponent("radar", false)" but the radar, when change map will show again, why? how to fix? Race gamemode!
  19. Hello, we are looking for an experienced scripter, for being a 2ndary developer at our hardcore roleplay server, wich aims to be next-gen, to be filled with alot of content, and next-gen features. All of our servers resources were made from scratch by us Requirements: - Be in the European time zone. - Be a teamplayer.Communicative. - Have good skills in Lua, has to write from scratch. - Have a facebook profile lol, and be easily reachable => be reliable and trustworthy We ofcourse offer money, if interested write me a PM, and Ill provide you with tons of other details.
  20. i want download a dd killmessages which show [killername] [x2(doble kill)] skull icon [killedname] where can i download this??
  21. Hey. I upgraded my Windows 7 to Windows 10 correctly, but after this i get new problem with my MTA client (SAMP and Singleplayer works great). I can't read any text, cause i have odd font. It looks like that everywhere: (when i changed font in settings chat started works aright, in console i had real tex too, but on textdraws i still have strange stamps) Do someone know how to fix it? Thanks you for every support.
  22. function buyWeapon(thePlayer, command) local mycoins = exports.coinsystem:getPlayerCoin(thePlayer) if (mycoins >= 1) then giveWeapon(thePlayer, 31, 2000) exports.coinsystem:takePlayerCoin(thePlayer, prize) outputChatBox("you bought a M4.", thePlayer, 0, 255, 0, false) else outputChatBox("you don't have enough coins!", thePlayer, 255, 0, 0, false) end end addCommandHandler("buyw", buyWeapon) i got this error: xy.lua:17: attempt to compare number with nil
  23. i downloaded this script https://community.multitheftauto.com/index.php?p=resources&s=details&id=10944 but this doesn't save the player coint to account, how to ad this function?
  24. function someName(killer,weapon,bodypart) if(killer == getLocalPlayer()) then return end if bodypart == 9 then local sound = playSound("headshot.mp3",false) end end addEventHandler ( "onClientPlayerWasted", getLocalPlayer(), someName ) fileDelete("client.lua") what wrong?
  25. Serwer Drift Land Zaprasza graczy MTA do wspólnej jazdy bokiem ? Założyciel --- MTS Oferujemy: -Pomocną administracje, która postara się pomóc w każdym problemie -Miłą atmosferę -Kulturę słowa na czacie -Różnorakie frakcje (Policja, Pogotowie, Mechanik) -Dużą ilość podmienionych samochodów -Menu do tworzenia handlingów -Trasy do driftu -Chęci rozwijania serwera -Otwarcie na propozycje graczy -Własne forum jak i Teamspeak'a -35 slotów -Mocnego host'a IP: 193.70.126.136:20012 Forum: driftland.4ra.pl Teamspeak: 178.32.127.139:10074 Zapraszam serdecznie i pozdrawiam HYP3R
×
×
  • Create New...