Jump to content

Search the Community

Showing results for tags 'server'.

  • 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. LO QUE PASA ES CUANDO SE EJECUTA CON EL TIME QUEDA DIRECTO EL TOXI NO SE COMO ASER Y ESCHO DE TODO NO ME FUNCIONA AYUDA PORFAVOR ESTA ES LA PAJINA PARA QUE LO CHEQUEN AYUDA https://community.multitheftauto.com/?p=resources&s=details&id=15445 ----SERVER--- function math.round(number, decimals, method) -- De la wiki decimals = decimals or 0 local factor = 10 ^ decimals if (method == "ceil" or method == "floor") then return math[method](number * factor) / factor else return tonumber(("%."..decimals.."f"):format(number)) end end local explosiones = { -- Posición de las explosiones {2691.86, 2784.75, 59.02}, {2716.19, 2773.16, 74.83}, {2716.98, 2769.41, 53.08}, {2692.65, 2773.92, 40.15}, {2612.71, 2678.42, 30.00}, {2580.86, 2702.58, 24.84}, {2538.07, 2822.08, 11.66}, {2593.50, 2826.69, 11.45}, {2625.39, 2829.98, 28.71}, {2693.25, 2694.72, 28.50}, {2716.90, 2683.54, 32.09}, {2733.75, 2678.40, 62.65}, {2596.64, 2638.77, 82.87}, {2510.14, 2688.21, 59.54}, {2630.57, 2829.37, 50.60}, {2685.79, 2838.06, 24.07}, {2596.24, 2770.00, 23.82}, {2608.27, 2733.59, 28.56}, {2641.34, 2696.41, 25.82}, {2650.74, 2671.53, 38.53} } local sonidos = {"sounds/alert.mp3", "sounds/alert2.mp3"} -- Sonidos local timedOut = false -- Timer para que se inicie el evento una vez ejecutado el sonido local iniciado = false -- Si el evento esta iniciado local tickFin = false -- El milisegundo en el que terminará el evento function onStop() -- Si el resource se detiene, todo vuelve a la normalidad setWeather(0) resetSunColor() resetSkyGradient() resetWaterColor() end addEventHandler("onResourceStop", resourceRoot, onStop) function onJoin() -- Si alguien se conecta... if iniciado then -- Y el evento esta iniciado... local calculo = (math.abs(getTickCount()-tickFin))/1000 if calculo < 20 then -- Y el tiempo restante es menor a 20 segundos... outputChatBox("#AA0000¡¡Legaste muy tarde para el evento!! =(", source, 0,0,0,true) -- ¡Entonces no se ejecutará el evento en el cliente! else triggerClientEvent(source, "onToxicIniciarEvento", source, sonidos[math.random(1, #sonidos)], calculo) end end end addEventHandler("onPlayerJoin", root, onJoin) function cambiarSonidoTiempo(ms) -- Sincroniza el sonido de la alerta con la explosión if not timedOut then timedOut = setTimer(function() timedOut = false for _,tabla in ipairs(explosiones) do -- Crea la explosiones setTimer(createExplosion, math.random(250, 1000), 1, tabla[1], tabla[2], tabla[3], 7) end setTimer(function() -- Esto hace que la muerte por la explosión se relentice por medio segundo if col and isElement(col) then -- Y esto hace que cualquier persona dentro del colShape salga volando y se muera for k,thePlayer in pairs(getElementsWithinColShape(col, "player")) do -- Agarra a todos los jugadores dentro de la zona setElementVelocity(thePlayer, 0, 0, 20) -- Volar killPed(thePlayer) -- Y morir end for k,veh in pairs(getElementsWithinColShape(col, "vehicle")) do -- Agarra a todos los vehículos dentro de la zona setElementVelocity(veh, 0, 0, 10) -- Los hace volar blowVehicle(veh) -- Y explotar end destroyElement(col) -- Y luego se destruye por las dudas end end, 500, 1) end, ms, 1) end end addEvent("onClientToxicSonidoTiempo", true) addEventHandler("onClientToxicSonidoTiempo", root, cambiarSonidoTiempo) addEvent("onToxicSetElementHealth", true) addEventHandler("onToxicSetElementHealth", root, setElementHealth) -- Esto sirve para sincronizar el quitado del vida del cliente al servidor --[[function togEvento(thePlayer, cmd, tiempo) -- Tiempo en segundos local cuenta = getPlayerAccount(thePlayer) if not isGuestAccount(cuenta) and isObjectInACLGroup("user."..getAccountName(cuenta), aclGetGroup("Admin")) then -- Si el usuario tiene cuenta y es Admin if not iniciado then -- Y el evento no esta iniciado if not tiempo or not tonumber(tiempo) then outputChatBox("#AA0000No colocaste un tiempo, así que se puso automáticamente la duración a 900 segundos.", thePlayer, 0,0,0,true) outputChatBox("#AA0000Para colocar un tiempo usa: #FFFFFF/"..cmd.." <tiempo en segundos>", thePlayer, 0,0,0,true) tiempo = 900 end tickFin = getTickCount() + tiempo*1000 -- Este será el milisegundo final del evento iniciado = true -- Esto marca que el evento inicio col = createColSphere(2632.54, 2743.05, 23.82, 175) -- Esto crea la zona donde cualquier persona que se encuentre morirá al ocurrir la explosión triggerClientEvent(root, "onToxicIniciarEvento", thePlayer, sonidos[math.random(1, #sonidos)], tonumber(tiempo)) -- Esto avisa al cliente del evento outputServerLog(getPlayerName(thePlayer).." inició el Evento TOXIC con el comando /"..cmd.." "..tostring(tiempo)) -- Y esto deja un LOG para ver quien inicio el evento (logs/server.log) setTimer(function() -- Y esto lo finaliza al pasar el tiempo necesario iniciado = false tickFin = false end, tiempo*1000, 1) elseif not timedOut then -- O el evento ya se inició iniciado = false triggerClientEvent(root, "onToxicFinalizarEvento", thePlayer) else -- O el evento se esta iniciando (impaciente!) outputChatBox("#FF7500Espera a que ocurra la explosión para detener el evento.", thePlayer, 0,0,0,true) end end end addCommandHandler("toxic", togEvento)]] ------AQUI ESTA EL PROBLEMA NO ME FUNCIONA SE ACTIVA SI PERO NO SE DESACTIVA PARA ASI QUE SE ACTIVE MEDIA ORA --- function chequearTiempo() -- Esto debería de hacer que el evento se ejecute los domingos a las 3 de la tarde, más info: https://wiki.multitheftauto.com/wiki/GetRealTime local tiempoReal = getRealTime() if tiempoReal.hour == 15 and tiempoReal.minute == 0 and tiempoReal.weekday == 0 not iniciado then -- Que sean las 3 de la tarde, el domingo y que no este iniciado local tiempo = 3600 -- Una hora son 3600 segundos tickFin = getTickCount() + tiempo*1000 iniciado = true col = createColSphere(2632.54, 2743.05, 23.82, 175) triggerClientEvent(root, "onToxicIniciarEvento", resourceRoot, sonidos[math.random(1, #sonidos)], tonumber(tiempo)) setTimer(function() iniciado = false tickFin = false end, tiempo*1000, 1) outputServerLog("¡El evento TOXIC se inicio de forma automático!") end end setTimer(chequearTiempo, 10000, 0)
  2. Confira os melhores preços em hospedagem com a melhor infraestrutura. https://hosttype.com.br/go/forum/ https://facebook.com/HostType Valors: Painel:
  3. MTA and Roleplay Introduction I have been wondering about the current Roleplay mode for a while. I have just saw text based ones, i don't know if it's because the scripting quality or the idea that RP == Text based game. I played a lot of RP, it doesn't need essentially the chat. Mode versus Game's System The Mode it's the door and the system is the hall, where you welcome your client/player to stay and build their experience. A good system is hard, scripts with 10k lines could take the first place, but the miscellaneous in each step is the key. Questions: Player based Economy, is it tangible ? Work with animation to represent car crashes/damage taken? Is inventory system worth it on a RP environment ? Would you script at least 10 workable objects that could be interacted with ?
  4. Greetings, fellow gamers! I recently started having this really annoying issue with MTA:SA 1.5. Basically, servers that should give me two-digits ping give me three-digits. These servers are close by (in my country). When I say recently, it means that it wasn't like this before. In the following list (screenshot) the first 5 servers had around two-digits ping. https://imgur.com/a/WUAWi Discarding the obvious: -My PC runs GTA:SA perfectly fine, with an average of 40fps in highest graphics. No problem on that. -No applications - those that connect to the internet - are opened in the background while playing the game. -Anti-virus not running scans, nor updating. Updated mind information: Now that I think about it, I did modify a few things when I tried to host my own server, a couple of weeks ago. Gave up after finding no way to enter my router's settings to foward ports. I remember modifying IPv4 and IPv6 to find a way into my router. I can't quite remember which were the defaults. At the moment, both are in "Obtain IP automatically". I also used a program called "Port Foward Utilities" that the MTA Wiki recommended. I will try modifying a few things, see if that changes anything. If I do find a solution, I'll edit this post. If no updates are seen, anyone is free to lend a hand. Thanks in advanced! Moony -
  5. Stev3y

    Tuneable cars

    Hello. So, I made a MTA server the other day. I made it only for fun, like to play with my IRL friends. Once I downloaded a modded car, which had tuneable parts, and in the rar file I had a lot of files like these : fbmp_a_l.dff, and a lot more, and I don't know what to do with them. Can I get some help pls? I have another question: I was searching for a tuning system but I couldn't really find any. Can somebody link me some?
  6. Hello everyone Today I've finished my new script : GCSS Details about this script : This is a system which allows you to chatting with other players on another server So when you open the panel, you will see on the left : The players on your current server On the right it's the Messages box, You will receive the messages from the players on your server and the players on the second server And in : Manage GCSS Tab which is for admins you will see a place to update admin message & Check new updates of the script Also you've a smiles in the script : Emoji window Note : Minimum MTA:SA Version to run all features is : 1.5.4 . _________________________________________________________________________________________________ Other Features : You can customize your messages color, All players will see the new color on each servers ( Default color is White ). You can press on "Do Not Disturb[ Silent Mode ]" checkBox to mute the alerts of the system and chatBox messages. _________________________________________________________________________________________________ Tutorial about how to use the script : Note : Do not edit the resource name, to avoid issues. 1- Write this code in a blank space in the ACL file for each servers : <group name="OutRPCGroup"> <acl name="OutRPC" /> <object name="resource.GCSS_Professional" /> </group> <acl name="OutRPC"> <right name="function.callRemote" access="true" /> </acl> <group name="InRPCGroup"> <acl name="InRPC" /> <object name="user.http_guest" /> </group> <acl name="InRPC"> <right name="resource.GCSS_Professional.http" access="true" /> </acl> 2- Go to "Settings.lua" file and edit the following : adminGroup_Permissions = 'Admin'; -- ***Edit this group name to your Admins group to give full permissions / leave if it's the same name. ManageGCSS_AccessTable = { 'Console', 'Admin', 'GCSS_Manager' }; -- ***Edit : This is the groups which can access "Manage GCSS" tab. local server_ip = '127.000.0.000:22005'; -- ***Put the server ip & port for each server you want to communicate with. -- Do not edit the codes below. addEvent( 'onServerSendMessage', true ) addEventHandler( 'onServerSendMessage', root, function( message ) local name = getPlayerName( source ) local data = getElementData( source, 'GCSS:MessageColor' ) local message = '[onPort:'..getServerPort( )..'][ '..name..' ] : '..message callRemote( server_ip, 'default', 10, 10000, getResourceName( getThisResource( ) ), 'SendGlobalMessage', callBack, message, data[1], data[2], data[3] ) triggerClientEvent( root, 'onClientReceiveMessage', source, message, data[1], data[2], data[3] ) end ) Note : You need to install the resource on each servers by use the following : On the first server : Write the ip & port of the second server & Run the resource On the second server : Write the ip & port of the first server & Run the resource _________________________________________________________________________________________________ Note : You can found the key to open the script in : "OpenKey.lua" file. _________________________________________________________________________________________________ Some pictures : Main panel & Customize panel & Emoji panel __________ Manage GCSS Tab _________________________________________________________________________________________________ Note : All shared GCSS Scripts are Demo, To Purchase full open source script or get a special edits : Contact the programmer[Me] on E-mail : [email protected] or [email protected] . *Purchase Price : $5 *Current version is : 1.0.0 *Download : Press on me :). Note : If you have any issues, please write a comment. If you have a new ideas to develop the script, please write a comment on the topic Do not forget to rate the script by percentage% in a comment Thanks.
  7. I want to create a random supply drop script that moves a certain object from a position in the air to the ground position vertically. -- SERVERSIDE local object = {id = 1271, x = 1000, y = 1000, z = 200} function moveSupply(source, command) local box = createObject(object.id, object.x, object.y, object.z, 0, 0, 0) -- here it should be something that calculates 'ground' as the z coordonate of the ground object point moveObject(box, 10000, object.x, object.y, ground) -- etc end addCommandHandler("supply", moveSupply) . The problem is that there is no support for getting the specific ground position in serverside, only in clientside. Waiting an idea or any other method that can work.
  8. Hello. My friend recently re-installed MTA and tried to download his favourite server, once he connected to the ip the download was at a speed of either 5 / 20 / 25 or 50 kb/s. He took an internet speed test and it the results were : Download - 54,41 mb/s and Upload - 51.52 mb/s. He tried downloading a samp server aswell and it was just as slow, any idea why his MTA server download speed might be so low? His internet speed isnt restricted and it is a constant 54.51 mb. Any help is apreciated
  9. As the title, what is the default login system for default server? I deleted all resource load from mtaserver.conf but still /login /register works.. Thanks.
  10. السلام عليكم ورحمة الله وبركاته الموضوع باين من عنوانه بعد ماشفت انتشار لعبة الباتل قراوند واقبال اللاعبين عليها قررت ابرمج قيم مود باتل قراوند طبعاً موجودة سيرفرات اجنبية وهي سيرفرات معدودة فـ حبيت افتح سيرفر عربي .. ببرمجة العرب لمنافسة الاجانب خلصت من السيرفر تقريباً .. باقي اتأكد منه واجربه قبل ما افتحه للجميع بشكل تجريبي وعند الافتتاح بيتوفر نمط اللعب الفردي solo فقط السيرفر بإذن الله بينفتح بعد أيام ** محتاج مصممين ثري دي .. الي يقدر يكلمني خاص ** وهذي صورة للواجهة وهذا ماب الـ Lobby - كل واحد يكتب رأيه ويصوت في الاستطلاع #H25 السيرفر بإدارة RWS
  11. How to get mute remaining time? For example i write /getmute, and then output "Mute remaining time: 5 mins", or "You are not muted". Sorry for my bad english.
  12. Başkent Ankara Gaming 5.62.127.44:10800 Kurucu: FireX Kralda biziz kral yapanda fb.com/BaskentAnkaraGaming F1 Freeroam F2 Silah Alma F3 En Üstteki Sürükleme F4 Arac Kontrol F5 Üst Kils F6 Köpek Alma F9 Neon
  13. Muy buenas, hoy les vengo a mostrar un proyecto en el cual he estado trabajando hace algunas semanas, un servidor Roleplay. El servidor cuenta con trabajos, casas, clanes, turf, VIP, sistema de vehículos, shaders realistas de bajos recursos. Antes de empezar a describir las cosas que tiene el servidor, quisiera dejar en claro que está en CONSTANTE mejoramiento. Dicho esto... Trabajos: -Taxista. -Conductor de trenes. -Conductor de autobús. -Barrendero. -Médico. -Piloto. -Pescador. -Ladrón. -Policía. -Mecánico. Compras: Vehículos, casas, clanes, armas, comida, reparo de vehículo. Sistema de clanes, sistema de casas, sistema de vehículos y mejoras, sistema de robo, panel del servidor (de usuario), Pay'n'Spray, turfing. Extra: Shaders. sistema de mensajes privados con número de ID (NO con nombre de jugador). Gimnasio (estilo de pelea) Cambio de skin (tiendas binco) Clues, (maletínes random, con pistas). PayDay. Banco (depositar, extraer, transferir) GHOSTS: Mucha gente dirá que esto no tiene mucho que ver con servidores RPG, pero anda, que hay que agregar algo irreal y divertido que sino, pa algo está la vida real jaja, es broma. El sistema de ghosts es realmente muy sencillo, puedes ir a Verdant Meadows y matar fantasmas, ganaras POCO dinero, puesto que no es la idea vivir de esto. IMAGENES Contacto e información: Nombre: ✘ | RolStar 1.0 | Roleplay ES 24/7 | Latino | Trabajos | Clanes | Turf | Eventos | RPG | ✘ IP: mtasa://45.58.126.46:22033 Muchísimas gracias por tomarse el tiempo de leer y espero apoyen mi proyecto, saludos y buenos días, tardes, noches.
  14. Welcome to the GTA-RD Fun / Drift / Freeroam Server . The server was created for fun ! The server runs from February 10, 2018 to the present. Server Features New textures brought to the map (using images, not dff, txd etc., 61 fps tested ! Top Drift and Drift System with Handling Editor Help panel in English Vehicles, Skins, Modified Weapons (Activated with / mods) We Have one Spawn Scripts Made for Fun: Cheats, Glue, etc... Teleports (/drop) (/stunt/) (/drift) etc.. New Maps Soon Optimized for everyone, even for those with poor computers _____________________________________________________________________________________________________ Server IP: mtasa://213.239.209.180:22210 _____________________________________________________________________________________________________ ScreenShots _____________________________________________________________________________________________________ If You Want To Publish Script For The Server Please Send For Pm _____________________________________________________________________________________________________ This is Beta Version Of Server Enjoy _____________________________________________________________________________________________________
  15. Hey there MTA community. I've got a problem since yesterday. My MTA is like freezing when I'm trying to connect to a server, its every server doesn't work. Here my MTAdiagram: https://pastebin.mtasa.com/133209097 Waiting for fast responding, thank you.
  16. Welcome to the GTA-RD Fun / Drift / Freeroam Server . The server was created for fun ! The server runs from February 10, 2018 to the present. Server Features New textures brought to the map (using images, not dff, txd etc., 61 fps tested ! Top Drift and Drift System with Handling Editor Help panel in English Vehicles, Skins, Modified Weapons (Activated with / mods) We Have one Spawn Scripts Made for Fun: Cheats, Glue, etc... Teleports (/drop) (/stunt/) (/drift) etc.. New Maps Soon Optimized for everyone, even for those with poor computers _____________________________________________________________________________________________________ Server IP: mtasa://213.239.209.180:22210 _____________________________________________________________________________________________________ ScreenShots _____________________________________________________________________________________________________ If You Want To Publish Script For The Server Please Send For Pm _____________________________________________________________________________________________________ This is Beta Version Of Server Enjoy _____________________________________________________________________________________________________
  17. Hi! Following the community discussion in MTA forums, we have created an official Discord server quite a while ago, as All MTA PUBG players and fans are welcome to join our Discord server You can join it by using the link below: https://discord.gg/F33E9nz What is Discord? Discord is a hybrid of IRC, an Instant Messenger and a Voice Chat software. It incorporates the most important features of these elements into a handy and multiplatform app which you can run on your desktops, smartphones or tablets. What can I find while I am there? We currently have some channels created, including: #general - for general PUBG and offtopic chats #squad-trio-duo - for voice channels. #support - for any problems related to MTA:SA PUBG client or server #announcements - for all important messages from us as well as some others. We are still thinking of how to put our Discord server into its full potential, so we may add more channels soon. How do I join it? Hey, we have mentioned that already. Just click the link below and follow the instructions: https://discord.gg/F33E9nz (credits: MTA official discord )
  18. Queria saber como eu setar a mark q eu criei em outra dimensão. parte do codigo: veh = {} addCommandHandler( "auto" , function (source) if isElementWithinMarker(source, MarkC) then setElementDimension ( source, 5 ) destroyElement(source, MarkC) veh[source] = createVehicle(546, 2415.14673, 89.43729, 26.47131) Mark1 = createMarker(2372.47876, 91.65331, 26.48655, "cylinder",2,255,0,0,180) warpPedIntoVehicle(source, veh[source]) else end end)
  19. Hello all, my name is Lautaro Rojas, I'm 13 years old, I'm from Argentina and I learnt to script LUA 1 year ago. I know most of you won't expect too much from the server because of my age. Anyway, it has taken me a lot of work and I hope you all enjoy it. I always wanted to make an RPG server, and well, this is my project. TomaHawk 1.0 RPG Revolution (Before posting my last topic, I had not read the rules, I'm so sorry) Screenshots: Features: - Own Gang System -Own Vehicle System -Own Briefcases System (with clues :D) -Ghosts -Haystack -Houses -PayLoad -Works: -Taxi Driver -Bus Driver - Train Driver -Sweeper -Fisher -Robber (yes, it's a job here :p) -Cop Pilot Extra: Accounts ID, private messages, in-chat commands (!gang, !gangexp, !exp, ...), bank system, shops: (weapon, food, cars), random math, random words. You'll improve your player's stats by working. For example, paramedic gives you more max health. Community scripts: house_system by DakiLLa, zombies by slothman. Again, I really hope you like my project, thanks for reading. And yes, TomaHawk is a military airplane :v. ✖ ♦ TomaHawk 1.0 RPG Project ♦ ✖ EN/ES/AR [Gangs|Ghosts|Turf|CopsRobbers|Jobs] mtasa://45.58.126.46:22033 The server is new and is in CONSTANT improvement
  20. This is the code: function stimers(thePlayer) if getElementData(thePlayer,"asdasd") == true then local lejartimer1 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","10 mins!") local lejartimer2 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","9 mins!") end,60000, 1) local lejartimer3 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","8 mins!") end,120000, 1) local lejartimer4 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","7 mins!") end,180000, 1) local lejartimer5 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","6 mins!") end,240000, 1) local lejartimer6 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","5 mins!") end,300000, 1) local lejartimer7 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","4 mins!") end,360000, 1) local lejartimer8 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","3 mins") end,420000, 1) local lejartimer9 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","2 mins") end,480000, 1) local lejartimer10 = setTimer(function() exports.fly_box:showBox (thePlayer,"info","1 mins") end,540000, 1) local lejartimer11 = setTimer(function() setElementVisibleTo(mark, thePlayer, false) setElementData(thePlayer, "asdasd", false) local pos = positions[math.random(1,#positions)] setElementPosition ( mark, pos.x,pos.y,pos.z ) end,600000, 1) end,100,1) --- elseif getElementData(thePlayer,"asdasd") == false then if isTimer ( lejartimer1 ) then killTimer ( lejartimer1 ) end if isTimer ( lejartimer2 ) then killTimer ( lejartimer2 ) end if isTimer ( lejartimer3 ) then killTimer ( lejartimer3 ) end if isTimer ( lejartimer4 ) then killTimer ( lejartimer4 ) end if isTimer ( lejartimer5 ) then killTimer ( lejartimer5 ) end if isTimer ( lejartimer6 ) then killTimer ( lejartimer6 ) end if isTimer ( lejartimer7 ) then killTimer ( lejartimer7 ) end if isTimer ( lejartimer8 ) then killTimer ( lejartimer8 ) end if isTimer ( lejartimer9 ) then killTimer ( lejartimer9 ) end if isTimer ( lejartimer10 ) then killTimer ( lejartimer10 ) end end end addEvent("ctimers",true) addEventHandler("ctimers", root,stimers) Why not working the killTimers? How to fix this?
  21. function test() setElementPosition ( mark, pos.x,pos.y,pos.z ) end addEventHandler("onMarkerHit", mark, test) this is the code. if i hit the marker, the element position change for all players.. how to fix this? sorry for my bad english.
  22. This is the code: When i type twice " /asd " the marker position does not change.. How to fix this?
  23. This is the code: And i get this warnings: bad argument @ 'stopSound' [expected sound at argument 1, got nil] and bad argument @ 'detachElement' [expected element at argument 1, got nil] .. -.- how to fix this?
  24. Hola amigos me acabo de crear esta cuenta por el solo hecho de que estoy empezando mi nuevo proyecto en DayZ mta por lo cual he tenido varios problemas en la creación y necesito de su ayuda para llevar acabo esto, estoy usando una gm que me encontré en internet para el server y esta ha sido la mas pasable que he encontrado, pero ahora tengo un problema con los autos y las armas. Los vehículos a pesar de faltar por ejemplo el motor, aun asi prenden y los puedes usar, cosa que eso no debería pasar. Alguien que conoce de este modo me va a entende. Las armas esta todo bien pero con un pequeño fallo me aparece encima del arma una mesa. me dijeron que el tema de las armas se arreglaba con un script pero nose cual -.-, cualquier ayuda o aporte sirve amigos, hasta una gm en un buen estado para implementar los skins yo desde 0 pero me interesa que este en funcionamiento ya que las que he encontrado tienen muchos errores:/ aquí una imagen del arma con la mesa ( ojo que no es solo esta arma y no solo aparecen mesas ):
  25. Oi, eu estou aqui para pedir ajuda para alguem que saiba script, para mim me ajudar com aprendizado, e ajudar outros com esse script.Preciso de ajuda em que ao player chegar na mark ele fique paralisado por um tempo(tudo na mesma function), e que depois que o player chegue em uma certa mark ele possa vizualizar no mapa a marca em que ele tem que ir.
×
×
  • Create New...