Jump to content

Search the Community

Showing results for tags 'mta'.

  • 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. Dzień Dobry Poszukuję Skryptera Który Będzie Tworzył Scrypty Na Serwer MTA Mamy Bardzo wysokie I Na Pewno ciężkie Żądania Co do scryptów Wszystkie Scrypty Które będą Działać I Będą Nam Się podobać Zapłacimy Dobrą Sumę Kontakt: [email protected] Discord: PavelYTUt#3177 Max Siekawski#1889 Hello I am looking for a Scripter Who Will Create Scripts for the MTA Server. We have very high and for sure heavy Demands on the scripts. All Scripts Which Will Work And We Will Like We Will Pay A Good Sum Contact: [email protected] Discord: PavelYTUt#3177 Max Siekawski#1889
  2. Xwaw

    Ped scripting

    Ok so recently I was thinking of reworking the police from gta san andreas to mta san andreas and making a police waves style minigame you have to survive. I have an idea how to do it but I don't know if the engine will allow me to do it. So my question is, if I want to program a ped to get to the player's position avoiding obstacles (without jumping over them) with the a* algorithm, am I able to do that? Because the last time I did this type of thing, one such npc could crash my entire game. As for the respawn of such bots, it would work more or less in the same way as in the original version of gta sa
  3. The problem is that there is a ped that runs straight, and there are also drawn lines that show how the ped is looking. And I would like to make this ped when it notices an obstacle with a given line "processOfLineSight" to paint it red from the green line. But unfortunately when the ped runs and sees an obstacle on the right side, the middle line lights up instead of the one on the right side. It's the same with the rest, the middle line, when it notices something, the left line lights up and so on. Can someone help me with this? local direction = 0 local testPed = createPed(0,2480.52344, -1649.07202, 103.77657, direction) local lineLength = -10 local distanceOfStart = 0 local color = {{255, 0, 0},{0, 255, 0}} local colorSet = 2 function drawLineFromHead(ped, angle) if isElement(ped) and getElementType(ped) == "ped" then local pedX, pedY, pedZ = getElementPosition(ped) local pedRotation = getPedRotation(ped) + angle local pedRotationRad = math.rad(pedRotation) local lineEndX = pedX + lineLength * math.sin(pedRotationRad) local lineEndY = pedY - lineLength * math.cos(pedRotationRad) dxDrawLine3D(pedX, pedY, pedZ + distanceOfStart, lineEndX, lineEndY, pedZ+ distanceOfStart, tocolor(color[colorSet][1], color[colorSet][2], color[colorSet][3]), 2) local hit = processLineOfSight(pedX, pedY, pedZ + distanceOfStart, lineEndX, lineEndY, pedZ+ distanceOfStart, true, false, false) if hit then colorSet = 1 else colorSet = 2 end end end function drawLinesForPerspective(ped) drawLineFromHead(ped, -45) drawLineFromHead(ped, 0) drawLineFromHead(ped, 45) end setPedControlState(testPed, "forwards", true) -- Main Loop addEventHandler("onClientRender", root, function() drawLinesForPerspective(testPed) local x, y, z = getElementPosition(getLocalPlayer()) end)
  4. [EUROPE][Pro Chile] DayZ StandAlone[INTERNATIONAL] SERVER STATUS : ONLINE SERVER IP : mtasa://79.143.188.114:22003 Everybody is wellcome!! Features: Clothing System On Login Panel English GPS System with code Group System Zombie System Helmet and armor protection International BASES & FREE BASES FOR 5 MEMBERS NO LAG Airdrops 60+ Weapons Staffs: Admin: Exodus Server needs couple moderators. _________________________________________________________________________________________________________________________________________________________________________
  5. hi guys How can I move a car without a player in that car?
  6. hi guys i want create gui like this to show the car inside How should I do this? image link https://ibb.co/87hYNKF
  7. This happened during a Captains Cup Pro Match around 2017, when uDka Racing server had a "achat" feature, that you could literally say Text To Speech on the chat. Funny trolling captured on the recording
  8. Приветствую, Администрация MTA! Я так понимаю, что меня забанило за запущенный авто-кликер. Он был запущен 5 секунд, после чего вылетела ошибка MTA на сервере. Я выключил авто-кликер и больше его не использовал. Мой серийный номер диска: A9E7AB17A46418D0DB309A6BE1F2475E . Прошу понять меня и простить, использовал дополнительное ПО единожды, и то не удачно. Приложение не распространялось и не продавалось. https://imgur.com/a/sVRCKyf
  9. 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
  10. hi guys I created a reporter camera but it has a problem When the person holding the camera turns, the camera does not turn with the person this is my code ``` x,y,z = getElementPosition(localPlayer) local camera = createObject(367,x, y, z) function updatePed() setElementBoneRotation(localPlayer,22,0, -60, 0) setElementBoneRotation(localPlayer,23,90, -100, 80) setElementBoneRotation(localPlayer,24,80, 30, 0) setElementBoneRotation(localPlayer,32,0, -85, 10) setElementBoneRotation(localPlayer,33,-70, -108, -30) updateElementRpHAnim (localPlayer) addEventHandler ("onClientPedsProcessed", getRootElement(), updatePed) end addCommandHandler("setanim1",updatePed) function dadancamera() setElementData(camera,"startlive",true) triggerServerEvent("messagelive",root) exports.bone_attach:attachElementToBone(camera,localPlayer,1, 0.15, 0.25, -0.1, 0, 0, 90) end addCommandHandler("setanim1",dadancamera) function updatePed2() removeEventHandler("onClientPedsProcessed", getRootElement(), updatePed) destroyElement(camera) end addCommandHandler("setanim2",updatePed2) function didanlive() if getElementData(camera,"startlive") == true then addEventHandler ( "onClientRender", root, didanlive ) x,y,z = getElementPosition(localPlayer) x2,y2,z2 = getElementPosition(camera) x4,y4,z4 = getElementRotation(camera) x3,y3,z3 = getElementRotation(localPlayer) setCameraMatrix(x2,y2,z2,x,y,z2,0,0) end end addCommandHandler("live",didanlive) function camset() setCameraTarget(localPlayer) removeEventHandler ( "onClientRender", root, didanlive ) end addCommandHandler("ended",camset) ```
  11. da rapaziada, gostaria de saber como faço para modificar um do lados do retangulo, tipo deixar um dos lados dele um pouco na diagonal, tipo assim " / ", poderiam me ajudar?
  12. hi guys i want call marker from another function like this code local hidemark = createMarker(10,50,5,"cylinder",1,0,255,0) function mark(theplayer) markerveh =createMarker(0,0,5,"cylinder",1,0,255,0) end addEventHandler("onMarkerHit",marker1,mark) function job1(theplayer) setElementVisibleTo(markerveh,root,false)-- for here end addCommandHandler("hidemark",job1)
  13. EVENT I'm inviting you to participate in a event on uDka Racing Server (mtasa://37.25.106.213:22043) - we're going to play maps from the previous editions of Captains Cup tournament, that was held in 2016! This mode before, involved PRO teams picking / banning maps. We're not going to use Captains Mode for that matter, because we're re-building the map pool for a pro game that will be held on that particular mode, however we just are going to play maps with normal CW script. For future events you can add the server to your favourites on the server browser, we usually make them on Saturday / Sunday, starting from 16-18CET hour, however if you added to favourites and still dont see it - just search uDka and you should see the server with gamemode: RACE LITE. DATE: 3rd June 2023 18:00 CET EU 11 maps Normal points system Max.: players to start the event: 4 (if less, will be canceled) Time after finish: 60sec (increased from 40 sec) I hope you'll join, and enjoy the event! There are no country restrictions for joining the server so if you're a casual player you can join too, and have fun
  14. ييي https://a.top4top.io/p_270405i281.png
  15. This part of Starfish Island, was used to make the first-ever MTA:SA Race Map. Thanks to lukum, we can see how it looks like. Simply beautiful. Join the uDka Racing server and play it on there! However, this map has one pesky bug: Whenever map is ending and going back to normal SA Race maps, the collisions stops working on some roads. If somebody has a script to fix that, lukum and I would be appreciated
  16. ------- HK 417 ------- mermi = 500 id = 31 addEvent("m4al",true) addEventHandler("m4al",root,function() if getTickCount() - (tick[source] or 0) >= SECONDS * 864000 then giveWeapon(source,id,mermi) tick[source] = getTickCount() outputChatBox("[!]#ff3300 HK 417 Markalı Silahını Kuşandın.",source,0,255,0,true) else outputChatBox("[!]#ff3300 [1 Haftalık Stok] 4 Saat Sonra Tekrar Alabilirsin.",source,0,255,0,true) end end ) ------- SNIPER ------- mermi3 = 15 id3 = 34 addEvent("sniperal",true) addEventHandler("sniperal",root,function() if getTickCount() - (tick[source] or 0) >= SECONDS * 864000 then giveWeapon(source,id3,mermi3) tick[source] = getTickCount() outputChatBox("[!]#ff3300 Bora 12 Markalı Uzun Namlu'lu Silahını Kuşandın.",source,0,255,0,true) else outputChatBox("[!]#ff3300 [1 Haftalık Stok] 4 Saat Sonra Tekrar Alabilirsin.",source,0,255,0,true) end end ) Hi, I can only use one. When I try to use the other, the timer activates and prevents me from picking up the other weapon. I will be glad if you help
  17. GUIEditor = { gridlist = {}, staticimage = {} } addEventHandler("onClientResourceStart", resourceRoot, function () local screenW, screenH = guiGetScreenSize() win = guiCreateStaticImage((screenW - 554) / 2, (screenH - 477) / 2, 554, 477, "s/panel.png", false) guiSetVisible(win,false) local screenW2, screenH2 = guiGetScreenSize() PlayerList = guiCreateStaticImage((screenW2 - 342) / 2, (screenH2 - 415) / 2, 342, 415, "s/PlayerList.png", false) guiSetVisible(PlayerList,false) GridPlayer = guiCreateGridList(23, 59, 188, 346, false, PlayerList) c = guiGridListAddColumn(GridPlayer, "Player", 0.9) SendWe = guiCreateStaticImage(215, 59, 101, 32, "s/SendWe.png", false, PlayerList) Close = guiCreateStaticImage(215, 117, 101, 32, "s/Close.png", false, PlayerList) GUIEditor.staticimage[1] = guiCreateStaticImage(216, 315, 104, 90, "s/logo.png", false, PlayerList) for _,player in ipairs ( getElementsByType("player") ) do local row = guiGridListAddRow(GridPlayer) guiGridListSetItemText(GridPlayer,row,1,getPlayerName(player),false,false) end Grid = guiCreateGridList(16, 71, 277, 400, false, win) guiGridListAddColumn(Grid, "name", 0.2) guiGridListAddColumn(Grid, "id", 0.2) guiGridListAddColumn(Grid, "ammo", 0.2) guiGridListAddColumn(Grid, "price", 0.2) for k,v in ipairs(Weapons) do local row = guiGridListAddRow(Grid) guiGridListSetItemText(Grid,row,1, v[1],false,false) guiGridListSetItemText(Grid,row,2, v[2],false,false) guiGridListSetItemText(Grid,row,3, v[3],false,false) guiGridListSetItemText(Grid,row,4, v[4],false,false) guiGridListSetItemText(Grid,row,5, v[5],false,false) guiGridListSetItemText(Grid,row,6, v[6],false,false) guiGridListSetItemText(Grid,row,7, v[7],false,false) guiGridListSetItemText(Grid,row,8, v[8],false,false) guiGridListSetItemText(Grid,row,9, v[9],false,false) guiGridListSetItemText(Grid,row,10, v[10],false,false) guiGridListSetItemText(Grid,row,11, v[11],false,false) guiGridListSetItemText(Grid,row,12, v[12],false,false) guiGridListSetItemText(Grid,row,13, v[13],false,false) Close1 = guiCreateStaticImage(215, 117, 101, 32, "s/Close.png", false, win) -- I want it to close the window. I tried several ways but no result. Buy = guiCreateStaticImage(320, 95, 200, 60, "s/Buy.png", false, win) Send = guiCreateStaticImage(320, 224, 200, 60, "s/Send.png", false, win) GUIEditor.staticimage[4] = guiCreateStaticImage(352, 339, 170, 132, "s/logo.png", false, win) end end) I want it to close the window. I tried several ways but no result.
  18. Hello, I want to make a repository for groups but I am not very knowledgeable. My goal thing is a locker or warehouse where they can store weapons. I would be very happy if you help
  19. Can anyone help me make a system that changes the handler of the current car when I press shift? The goal is to create a drift shift system. But I'm a layman and I don't know where to start.
  20. Witam. W momencie wejścia na serwer 4Life, rozdzielczość w oknie z ustawionej zmniejsza mi się do 1/3 ekranu. Zostałem odesłany właśnie tutaj, jest ktoś w stanie udzielić mi odpowiedzi? Dlaczego? Nagranie poniżej. Próbowałem reinstalle, zmianę wersji. Nic nie działa! Hello. When i joining to 4Life server, resolution changes to smaller. Deafult setting changing to 1/3 window resolution. I have video, here is: https://streamable.com/25ojwi Can somebody get me reason this situation? I tried reinstall games, change MTA version.
  21. MTA SA DAYZ FRAGMOVIE & EDIT https://youtu.be/YtuRLHeSQUE
  22. Website: www.nationz.pl Server IP: play.nationz.pl:20380 Discord: https://discord.gg/N9kVMjP6zu
  23. Strona www: www.nationz.pl Adres IP: play.nationz.pl:20380 Discord: https://discord.gg/N9kVMjP6zu
  24. Hello, We are from organization 'CREED' . we are looking for create international MTA server . so we looking for a sponsor for MTA server. we have around 20+ MTA players, we need like 100 slots for server. We can advertise your company or your other business in our server If anything else you want just say it. if you interested, please contact me on e-mail. kindly regards, wiz119 (Team CREED) Email: d [email protected]
  25. Version = 1.5.9-release-21622.0.000 Time = Sun Mar 26 22:52:32 2023 Module = C:\Program Files\MTA San Andreas 1.5\mods\deathmatch\client.dll Code = 0x40000015 Offset = 0x002C0721 EAX=1996F098 EBX=1996F57C ECX=00000000 EDX=67C5BE20 ESI=00000000 EDI=67C5BE20 EBP=1996F3A8 ESP=1996F36C EIP=67B70721 FLG=00000206 CS=001B DS=0023 SS=0023 ES=0023 FS=003B GS=0000
×
×
  • Create New...