Jump to content

Search the Community

Showing results for tags 'scripter'.

  • 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. Olá pessoal, tudo bom ? Coloquei um radar no meu servidor e queria saber como faço para a Area-Verde aparecer nele! Ja tenho as areas verdes criadas! Pórem quero saber como faz para elas aparecerem no radar, pois no radar elas nao aparecem. Agradeço muito se poderem tirar um tempinho pra me ajudar Script do Radar: -------------------------------------------------------------------------------------------------- -- Distributed under the Creative Commons Attribution-NonCommercial 4.0 International license -- -- Version: (release) 1.0.0 -- -- Original author: Kacper "MrTasty (aka Addon)" Stasiak -- -- Special thanks to: Doomed_Space_Marine (useful functions) -- -- robhol (useful functions) -- -------------------------------------------------------------------------------------------------- --Features local enableBlips = true local renderNorthBlip = true local alwaysRenderMap = false --true = always render map, false = only render when in interior world 0 (radar will stay, only the map will stop rendering) local alwaysRenderOxygen = false --true = always render oxygen, false = only when oxygen not full/local player in water local disableGTASAhealth = true --Disable GTASA's HUD health display local disableGTASAarmor = true --Disable GTASA's HUD armour display local disableGTASAoxygen = true --Disable GTASA's HUD oxygen display --Dimensions & Sizes local worldW, worldH = 3072, 3072 --map image dimensions - if map image changed, please edit appropriately local blip = 12 --Blip size, pixels relative to 1366x768 resolution --Colours - Notice: Health colours smoothly according it local player's HP. local healthOkayR, healthOkayG, healthOkayB = 102, 204, 102 --RGB for health which is 'okay' (50% or more) local healthBadR, healthBadG, healthBadB = 200, 200, 0 --RGB for health which is 'bad' (25%) local healthCriticalR, healthCriticalG, healthCriticalB = 200, 0, 0 --RGB for health which is 'critically low' (near/at 0%) local armorColorR, armorColorG, armorColorB = 0, 102, 255 local oxygenColorR, oxygenColorG, oxygenColorB = 255, 255, 0 ------------------------------------------------------------------------------------ --Do not modify anything below unless you're absolutely sure of what you're doing.-- ------------------------------------------------------------------------------------ local sx, sy = guiGetScreenSize() local rt = dxCreateRenderTarget(290, 175) local xFactor, yFactor = sx/1366, sy/768 local yFactor = xFactor --otherwise the radar looses it's 2:3 ratio. -- Useful functions -- function findRotation(x1,y1,x2,y2) --Author: Doomed_Space_Marine & robhol local t = -math.deg(math.atan2(x2-x1,y2-y1)) if t < 0 then t = t + 360 end; return t; end function getPointFromDistanceRotation(x, y, dist, angle) --Author: robhol local a = math.rad(90 - angle); local dx = math.cos(a) * dist; local dy = math.sin(a) * dist; return x+dx, y+dy; end function drawRadar() showPlayerHudComponent("radar", false) if disableGTASAhealth then showPlayerHudComponent("health", false) end if disableGTASAarmor then showPlayerHudComponent("armour", false) end if disableGTASAoxygen then showPlayerHudComponent("breath", false) end if (not isPlayerMapVisible()) then local mW, mH = dxGetMaterialSize(rt) local x, y = getElementPosition(localPlayer) local X, Y = mW/2 -(x/(6000/worldW)), mH/2 +(y/(6000/worldH)) local camX,camY,camZ = getElementRotation(getCamera()) dxSetRenderTarget(rt, true) if alwaysRenderMap or getElementInterior(localPlayer) == 0 then dxDrawRectangle(0, 0, mW, mH, 0xFF7CA7D1) --render background dxDrawImage(X - worldW/2, mH/5 + (Y - worldH/2), worldW, worldH, "image/mapa.jpg", camZ, (x/(6000/worldW)), -(y/(6000/worldH)), tocolor(255, 255, 255, 255)) end dxSetRenderTarget() dxDrawRectangle((10)*xFactor, sy-((200+10))*yFactor, (300)*xFactor, (200)*yFactor, tocolor(0, 0, 0, 175)) dxDrawImage((10+5)*xFactor, sy-((200+5))*yFactor, (300-10)*xFactor, (175)*yFactor, rt, 0, 0, 0, tocolor(255, 255, 255, 150)) local health = math.max(math.min(getElementHealth(localPlayer)/(0.232018558500192*getPedStat(localPlayer, 24) -32.018558511152), 1), 0) local armor = math.max(math.min(getPedArmor(localPlayer)/100, 1), 0) local oxygen = math.max(math.min(getPedOxygenLevel(localPlayer)/(1.5*getPedStat(localPlayer, 225) +1000), 1), 0) local r, g, b if health >= 0.25 then r, g, b = interpolateBetween(healthBadR, healthBadG, healthBadB, healthOkayR, healthOkayG, healthOkayB, math.floor(health*20)/10, "InOutQuad") else r, g, b = interpolateBetween(healthCriticalR, healthCriticalB, healthCriticalB, healthBadR, healthBadG, healthBadB, math.floor(health*20)/10, "InOutQuad") end local col = tocolor(r, g, b, 190) local bg = tocolor(r, g, b, 100) dxDrawRectangle((15)*xFactor, sy-(25)*yFactor, (142.5)*xFactor, (10)*yFactor, bg) dxDrawRectangle((15)*xFactor, sy-(25)*yFactor, (142.5*health)*xFactor, (10)*yFactor, col) if alwaysRenderOxygen or (oxygen < 1 or isElementInWater(localPlayer)) then dxDrawRectangle((162.5)*xFactor, sy-(25)*yFactor, (67.5)*xFactor, (10)*yFactor, tocolor(armorColorR, armorColorG, armorColorB, 100)) dxDrawRectangle((162.5)*xFactor, sy-(25)*yFactor, (67.5*armor)*xFactor, (10)*yFactor, tocolor(armorColorR, armorColorG, armorColorB, 190)) dxDrawRectangle((237.5)*xFactor, sy-(25)*yFactor, (67.5)*xFactor, (10)*yFactor, tocolor(oxygenColorR, oxygenColorG, oxygenColorB, 100)) dxDrawRectangle((237.5)*xFactor, sy-(25)*yFactor, (67.5*oxygen)*xFactor, (10)*yFactor, tocolor(oxygenColorR, oxygenColorG, oxygenColorB, 190)) else dxDrawRectangle((162.5)*xFactor, sy-(25)*yFactor, (142.5)*xFactor, (10)*yFactor, tocolor(armorColorR, armorColorG, armorColorB, 100)) dxDrawRectangle((162.5)*xFactor, sy-(25)*yFactor, (142.5*armor)*xFactor, (10)*yFactor, tocolor(armorColorR, armorColorG, armorColorB, 190)) end local rx, ry, rz = getElementRotation(localPlayer) local lB = (15)*xFactor local rB = (15+290)*xFactor local tB = sy-(205)*yFactor local bB = tB + (175)*yFactor local cX, cY = (rB+lB)/2, (tB+bB)/2 +(35)*yFactor local toLeft, toTop, toRight, toBottom = cX-lB, cY-tB, rB-cX, bB-cY for k, v in ipairs(getElementsByType("blip")) do local bx, by = getElementPosition(v) local actualDist = getDistanceBetweenPoints2D(x, y, bx, by) local maxDist = getBlipVisibleDistance(v) if actualDist <= maxDist and getElementDimension(v)==getElementDimension(localPlayer) and getElementInterior(v)==getElementInterior(localPlayer) then local dist = actualDist/(6000/((worldW+worldH)/2)) local rot = findRotation(bx, by, x, y)-camZ local bpx, bpy = getPointFromDistanceRotation(cX, cY, math.min(dist, math.sqrt(toTop^2 + toRight^2)), rot) local bpx = math.max(lB, math.min(rB, bpx)) local bpy = math.max(tB, math.min(bB, bpy)) local bid = getElementData(v, "customIcon") or getBlipIcon(v) local _, _, _, bcA = getBlipColor(v) local bcR, bcG, bcB = 255, 255, 255 if getBlipIcon(v) == 0 then bcR, bcG, bcB = getBlipColor(v) end local bS = getBlipSize(v) dxDrawImage(bpx -(blip*bS)*xFactor/2, bpy -(blip*bS)*yFactor/2, (blip*bS)*xFactor, (blip*bS)*yFactor, "image/blip/"..bid..".png", 0, 0, 0, tocolor(bcR, bcG, bcB, bcA)) end end if renderNorthBlip then local rot = -camZ+180 local bpx, bpy = getPointFromDistanceRotation(cX, cY, math.sqrt(toTop^2 + toRight^2), rot) --get position local bpx = math.max(lB, math.min(rB, bpx)) local bpy = math.max(tB, math.min(bB, bpy)) --cap position to screen local dist = getDistanceBetweenPoints2D(cX, cY, bpx, bpy) --get distance to the capped position local bpx, bpy = getPointFromDistanceRotation(cX, cY, dist, rot) --re-calculate position based on new distance if bpx and bpy then --if position was obtained successfully local bpx = math.max(lB, math.min(rB, bpx)) local bpy = math.max(tB, math.min(bB, bpy)) --cap position just in case dxDrawImage(bpx -(blip*2)/2, bpy -(blip*2)/2, blip*2, blip*2, "image/blip/4.png", 0, 0, 0) --draw north (4) blip end end dxDrawImage(cX -(blip*2)*xFactor/2, cY -(blip*2)*yFactor/2, (blip*2)*xFactor, (blip*2)*yFactor, "image/player.png", camZ-rz, 0, 0) end end addEventHandler("onClientRender", root, drawRadar) addEventHandler("onClientResourceStop", resourceRoot, function() showPlayerHudComponent("radar", true) if disableGTASAhealth then showPlayerHudComponent("health", true) end if disableGTASAarmor then showPlayerHudComponent("armour", true) end if disableGTASAoxygen then showPlayerHudComponent("breath", true) end end)
  2. Olá pessoal do forum, tenho um ''DX Money'' no meu servidor, abaixo mostrarei a imagem dele pelo print https://prnt.sc/kytkfg Eu escrevi no print, onde quero mais ou menos q ele apareça, caso possam me ajudar! No print, ele esta entre o velocimetro não sei se conseguiram ver escrito "- $799,200", eu queria que ele aparecesse mais ou menos a partir dali onde esta a seta do mta, não muito perto do hud, porque ele esta praticamente dentro do velocimetro, o script dele esta abaixo, OBS:Ele tem só´1 arquivo.lua q é o client ------------------------------------------------------------------------- Client: local playerMoney = getPlayerMoney ( localPlayer ) local messages = { } local sx, sy = guiGetScreenSize ( ) addEventHandler ( "onClientRender", root, function ( ) local tick = getTickCount ( ) if ( playerMoney ~= getPlayerMoney ( localPlayer ) ) then local pM = getPlayerMoney ( localPlayer ) if ( pM > playerMoney ) then local diff = pM - playerMoney table.insert ( messages, { diff, true, tick + 5000, 180 } ) else local diff = playerMoney - pM table.insert ( messages, { diff, false, tick + 5000, 180 } ) end playerMoney = pM end if ( #messages > 7 ) then table.remove ( messages, 1 ) end for index, data in ipairs ( messages ) do local v1 = data[1] local v2 = data[2] local v3 = data[3] local v4 = data[4] dxDrawRectangle ( sx - 220, (sy-20)-(index*25), 200, 20, tocolor ( 0, 0, 0, v4 ) ) if ( v2 ) then dxDrawText ( "+ $"..convertNumber ( v1 ), sx - 200, (sy-18)-(index*25), 50, 20, tocolor ( 0, 255, 0, v4+75 ), 1, 'default-bold' ) else dxDrawText ( "- $"..convertNumber ( v1 ), sx - 200, (sy-18)-(index*25), 50, 20, tocolor ( 255, 0, 0, v4+75 ), 1, 'default-bold' ) end if ( tick >= v3 ) then messages[index][4] = v4-2 if ( v4 <= 25 ) then table.remove ( messages, index ) end end end end ) function convertNumber ( number ) local formatted = number while true do formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2') if ( k==0 ) then break end end return formatted end
  3. Boa tarde, alguem sabe o nome desse mod? usam ele em todos os servidores praticamente. LINK DA IMAGEM DELE ABAIXO: https://imgur.com/a/fXq0oRK
  4. I want to respond quickly about the game , I want to change my computer system from Windows to Linux and I am a fan and addicted to the game and I do not want to dispense with them. Is there game files in the Linux system means there is a game in the Linux system I want to respond quickly from the developers of the game or someone knows
  5. What we'll be working on : A battle royale server with new ideas, the managment team is experienced and so will the scripters/builders be. We'll apply new ideas to attract visitors and keep them interested in the server. -How much are you willing to pay? Message me your offer. -Why should I trust you paying me? If you're a known and trusted scripter/builder, I'll pay you half the amount before you even start working. -What will the server be about? It'll be a battle royale server, but not like any battle royale server out there, I'm planning to work a lot on it and make it successful. Requirements: 1- I'll be paying through paypal, you need to have an activated paypal, If you'd like to be paid in a diffrent method message me and we'll talk about it. 2- Have Exeprience as a scripter/builder and being able to make amazing modes/maps. 3- You have to act mature, development period will be done in a professinal atmosphere. 4- You'll have to show me some of your work if you're not known in the community. You also have to be good at one of these languages: English Arabic
  6. Hello,let me introduce my self.My name is Damazigh, I'm 17 years old. My hobbies is to play foot ball and scripting. I'm a designer(logos,banners,posters,web design) experienced 4years. I'm WEB DEVELOPER that means i can create STATIC (without using the server side) and DYNAMIC(using the server for data base ...etc). I'm MTA:SA SCRIPTER which i have a good level . Contact me By: -Discord: DiGiTal#2028 -PM ME
  7. Sziasztok! Fejlesztő íránt érdeklődnék egy 0-ról írt RP szerver készítéséhez. Maximum 100 Eurót adunk ki a munkáért. Elérhetőség: Skype: benedek.berecz
  8. The last topic I started was bit weird, I didn't explain what'll it contanins :(! , so now im gonna explain how the project will work, and how much we need a scripters to stay with us until the launch or forever!...The project : New kind In Mta community..and i'm sure the people will like it at all. With low graphics models and not laggy stuff with full simplicity, based on 4 empires fight in WWI, each empire got its own city In the map, and each empire got its own jobs, and stuff...there'll be points(flag) system for War..The use: Each empire will have a military base..Mission comes to the military base(The military base is where the soldiers sleep and live) of An Empire, Mission says you need to capture point In the south or something like this..so they'll go together to the Flag as example flag called : A, they fight to take it, like bf1, after they finish capturing the point..they stay in it and cover it from the other empires in case they attacked ( some detailed system of atttacks for that ), There'll Be 3 Frontlines for each empire..each frontline got It's own general. Each empire got the languages: as example the ottoman empire uses: Turkish,English same as german and others, lemme go back to the points stuff, When they capture a point they'll have ability to pitch medical tents and stuff(after while). Each bullet Is counted on the server, so each point will need a serve from the empire (the use of jobs ) to lend them ammo supplies,food and much more. The tanks will be rare, and there'll be no ships at all just boats. and the cars rare too. ( expensive ) so Its like MUCH of detailed stuff I need to explain, And will do soon, though..that's a simple info bout the project ... So that's so sooo soo simple info about the project..join our discord server to know/ask more: https://discord.gg/pH4WT4P , So now scripters..we need your help as much as possible! and there'll be multiple systems with your help. and Notice for those who doesn't want to script the whole server just join the discord : https://discord.gg/pH4WT4P and help us with some lines or whenever we need your help, and btw we develope the server in discord&hamachi no need for hamachi if you cant use it, and I swear by the god if this project done it'll be the best. - Good scripter - Serval systems - Much more. Notice: If this topic not following the rules please info me to edit it
  9. Servidor Brasil Vida Top (BVT) precisando de scripter de nível médio/alto ou que saiba o básico sobre programação em lua voltado para o MTA. Procurar por Pedrin ou Leonardo. Contato: VIA MSG NO FORUM. TS3: bvt.ts3sport.com
  10. Dear Multi Theft Auto Community History Welcome to the community of San Andreas Unique Roleplay Gaming, where we all come together to make a successful community, of professional players. This community was initially setup on '10/01/17' by K1the original owner of this Community. Our team is well prepared, and is ready to tackle any report, you throw their way, such as issues with players, our team or any bugs or faults you find in-game. You may come across little bugs or missing plugins on our site which will be dealt with very soon, once our Forum is up and running smoothly. One of our main objective, as a community is to provide our players with the best possible gameplay. This includes things such as, features no other server has, unique ideas, well designed, user-friendly menu's to enhance our players gameplay. We are giving you, your own path to choose, be your own player, and play your own way and style. We shall all strive and grow together, and be the best there is out there. Currently, our team, it's made of 5 Members, who are working hard every day for this community and I have big expecations from them. Searchings This Community do all of the best for this server! We are working on currently gamemode & Forum. We accept Join Request and Staff Requests. We need a scripter and developer. If you want to help us contact us from our profiles.Leave us a message we'll turn to your message. This Community wish you the Best of Luck! How you can find us? *****Pm me from This forum.***** Teamspeak³: Coming soon
  11. Hi guys, We working a new roleplay server project. We have some ideas for this server but we do not have a scripter. Someone who want to help us send private message. Money is not important
  12. Hello everyone, I'm making this post because I need a really good scripter to make a resident evil server, we have some ideas and we want someone to put our ideas in the server, of course we are going to pay, just tell us the amount. ONLY PROFESSIONAL PEOPLE PLEASE WE DON'T WANT AMATEURS. If you are really interested contact me via my inbox.
  13. Hi,we are looking for an experienced scripter for helping us in developing our server called San Andreas Extreme Gaming(SAEG:RPG).We are a successful server with 30+ players all time and with a server peak of 87 players!. Your payment will be based on your work and the server income.The server is currently generating a reasonable income and has a lot of Donaters.If you are interested in being a part of our Server Development team,please visit saegrpg.com and submit an application in the scripter applies section. -Thank you.
  14. Hi everybody, We need medium-level scripter. Firstly we want to turf system/terrority system. If you help to us, we will pay it. Send me message for detail...
  15. ES PARA SERVER SERVIDOR NUEVO SI ALGUIEN ESTA INTERESADO https://www.facebook.com/TOMMY.OJEDA.2001
  16. hey, my name is AmalAlive and i am ready to make a MTA Server been playing this game for a while and i really wanted to make a Dayz model server so if u guys know how to code contact me at Discord: AmalAlive#2236 and i am ready to pay money if u make me a good server so ~PEACE
  17. Sziasztok! Nemrégiben kezdtem el a LUA tanulást, és scriptert keresek, aki esetleg vállalná azt hogy "segít" nekem a scriptelés tanulásában. Ha van köztetek olyan aki szívesen segítene, az kérem keressen fel Privát Üzenetben! Köszönöm! Nevada
  18. Hola, soy un jugador que está en el último año de mi año y todo ese tiempo estoy tratando de hacer un juego de rol del servidor y estoy planeando hacer un servidor. pero necesito un scripter que me haga unos scripts del tipo: Policia Basurero Camionero Taxista, etc. Sistema de venta de vehiculos Y otros scripts mas SI quieres contactarme mi skype es: [AlexLycan] Y si no tienen skype el discord es:https://discord.gg/zQbp3e
  19. Salut tous le monde , je voulais juste vous demander si vous avait pas de tuto ou autres pour apprendre un peu à scripter ....
  20. @ I Need A Scripter Roleplay MTA | احتاج الى مبرمج حياة واقعية مُحترف. @ I Will Pay To the scripter If help me | وبدفع اذا ساعدني المبرمج.. @ Thanks "| شككراًء.
  21. hello, ive got a very old (2009 i guess) gamemode from a friend and it is very complicated since its functions in those codes are pretty old with no new features we have now in the latest mta version. thing is, ill need a developer to fix bugs, delete & add new things to the server. mostly just fix bugs, trying to update the whole code. as i said, its very old, complicated and a big mess. hope to get some replies from very very professional scripters. please let me know if youre interested in becoming a developer for my server. thanks for reading add me on discord if youre interested; lewz#1549
  22. Buenas noches. Les comento que estoy en búsqueda un scripter para involucrarse en un proyecto de servidor derby estilo Flatout/Carmageddon, capacitado para editar una GM Race, sinceramente carecemos de un scripter con conocimiento en LUA. Los interesados, me pueden contactar por este mismo medio o por mensaje privado.
  23. I need a scripter for my Roleplay server / server scripts %85 finished just have some small bugs. I want staff and scripter.Req: - Must know scripting.Contact : Forum: www.ngcmta.comSkype : candasnetwork Facebook: www.facebook.com/candas67
  24. I need a scripter for my Turkish Roleplay Server project.Req: - Must know UCP scripting.- Must do what I wantContact :Phone : +905386809975Steam : Dr.RushmeSkype : live:emrah_butuk01Instagram : benimadimjesus(I need a webmaster too :P)
×
×
  • Create New...