Jump to content

Search the Community

Showing results for tags 'cars'.

  • 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. So i have few problems so first of all i can't find how to fix error : [16:46:04] ERROR: carsell\utils.lua:11: attempt to concatenate a boolean value next problem that i couldn't find how to make car worth according it's health and model for exampe infernus 100% health would give you 22k Shamal 100% would give you 30k rhino 100% 20k etc so what i need is just what to use code: local sellMarker = createMarker( -1545.0999755859, 126.80000305176, 2.5, "cylinder", 22, 255, 0, 0, 120) local myBlip = createBlip( -1545.0999755859, 126.80000305176, 3.5999999046326, 55, 1.5, 255, 0, 255, myPlayer ) function sellVehicle(player) if (getElementType(player) == "player") then if (not getPedOccupiedVehicle(player)) then outputChatBox("You need to be in a Vehicle to sell it.", player, 255, 0, 0) return end end end local vehicle = getPedOccupiedVehicle(player) local reward = math.random(100, 10000) --every -1% from car vehicle worth becomes 100$ smaller example 100%=10k 10%=1k givePlayerMoney(player, reward) outputChatBox("You have sold the "..getVehicleName(vehicle).. " for "..reward.."!", player, 0, 255, 0) addEventHandler("onMarkerHit", sellMarker, sellVehicle) thanks.
  2. Hi everyone, i found a script with works on team system, i edited the script to work with gang system, but dont work, the player can enter in the vehicle without being in the gang.. here is the code.. Kami = { createVehicle ( 422, -1217.5534667969, 1830.9927978516, 46.3984375, 0, 0, 0 ), } for i,car in ipairs(Kami) do setElementData(car,"Gang","kami") end addEventHandler("onVehicleStartEnter", root, function(player) local gangName = getPlayerGang(player) and getGangName(getPlayerGang(player)) if gangName ~= getElementData(source,"Gang") then cancelEvent() end end)
  3. Buenas noches!!, Alguien sabe si se puede de alguna manera tener varios "Skins de autos" y que sea visibles por todos¿? Otra pregunta es si esta función se puede hacer para un team nada mas, pero que los demas la puedan ver. Y la ultima si los coches que no tengan paintjob se pueden aplicar mas de 4, y de que manera, si alguno sabe aunque sea uno me seria de gran ayuda, gracias! function CambiarSkin1() txd = engineLoadTXD("mod.txd", 411) engineImportTXD(txd, 411) dff = engineLoadDFF("mod.dff", 411) engineReplaceModel(dff, 411) end addEventHandler("onClientResourceStart", resourceRoot, CambiarSkin1) --Hay alguna forma de cambiarlo para que solo un team se le aplique?
  4. Attention I have created this topic to tell you everyone that I am going to freelance in MTA:SA. As you don't know I am working with MTA:SA since 2013 and I have a lot of experience. If you are interested in any of MTA:SA (like DayZ) resouces, scripts or other things, just tell me what you want and I will sell it to you. Also I can teach you how to make some kind of scripts/resources/models/etc. by yourself, how to add it to the server. I can be your server scripter/mapper/hacker/etc., just hire me. Don't be shy You can contact me via e-mail ([email protected]) or skype (herokileris), or here in the forum (this topic or pm). For example, some of the scripts I have made and I can sell you: Vip - (in DayZ) gets more blood, restorations when eating, using medics, drinking... Also gets more stats after each spawning in the map. Animals in the map spawning and has an inventory in which they drop randomly Raw Meat after death. Respawn timer works perfectly. Zombies changed their status from walking or running, how they walk like randomly in the game, they scream, moan, bite your neck, infect you. Also I have a lot of DAYZ zombie models and sounds. Weapons system - each weapon has own model and shooting sound, inventory space slots, the name, the spawning chances, damage, ammo use, crosshire (including and snipers). Hold your breath system - when you aim, your crosshire moves, you can hold your breath and stop moving crosshire by holding a key like for example: for a 5 seconds. There are sounds added also for it. Sounds for you and others when you use medics, food, drinks, etc. like in the real life depending on the distance. Armour, hats, helmets, masks, caps and other clothing systems. MORE AND MORE. Group system. Scoreboard system. Give/Set items system. Map bugs fixer. Radiators, engines, tires, rotors, scrap metals, tank parts, etc. system for vehicles. AND MORE. I have all .lua files.
  5. As vrea sa sugerez niste moduri, vreau sa se bage cars old gen dacia 1310 bmw e30 macar atat. si un skin pe BMX mai nou si care poti sa faci stunturi.. pe server joc doar sa fac scheme si roleplay si imi place foarte mult bmx. si vreau sa se bage un bmx gen freestyle de scheme
  6. SkiZo

    Private Car

    Hello EveryOne , I Need Some Help , I Have This Script For Private Car .. Every thing is good but i winna to add aBlip Attached to the Car And Only That Two Players Can See It !! --------------------------------------------------------------------------------------------------------------------------------------- vehicle = createVehicle( 503, 2279.1000976563, -1671.1999511719, 15.10000038147, 0, 0, 272 ) setVehicleColor( vehicle, 46, 254, 154 ) function lockPrivate( theplayer, seat, jacked ) if ( source == vehicle ) then local account = getPlayerAccount( theplayer ) local accountName = ( account and getAccountName ( account ) or "" ) if not( accountName == "Player1" or accountName == "Player2" ) then cancelEvent() outputChatBox("#9E0000This vehicle is locked for following users:#0D9905Player1 #9E0000Shared With #0D9905Player2 ", theplayer, 255, 255, 255, true) else outputChatBox("#0D9905Welcome to your vehicle, Sir!", theplayer, 255, 255, 255, true) end end end addEventHandler ( "onVehicleStartEnter", getRootElement(), lockPrivate ) setVehicleDamageProof(vehicle, true) -----------------------------------------------------------------------------------------------------------------------------------
  7. So hello. I started up my new server on Dayz i have mod & register/login + admin panel and global chat. But i dont know where to find models for zombies (since i have normal skins from GTA:SA) and how to change them, can you link me and tell me where to replace it? please? :))) + if you can link me even for cars (and i need to spawn somehow cars, like so people can repair it there is no car) and some script for like when i have the name i want before name some title like [VIP]USERNAME + i need some instructions for it. THANKS.
  8. So hello. I started up my new server on Dayz i have mod & register/login + admin panel and global chat. But i dont know where to find models for zombies (since i have normal skins from GTA:SA) and how to change them, can you link me and tell me where to replace it? please? :))) + if you can link me even for cars and some script for like when i have the name i want before name some title like [VIP]USERNAME + i need some instructions for it. THANKS.
  9. Hello guys , I'm creating a server with style from Grand theft Auto Online , but I have a problem , many of their cars have different performance and different qualities , I tried with Hedit (handling editor) , but this does not apply to all clients configuration , and does not save. i tried with different resources and i failed. this is Hedit https://community.multitheftauto.com/?p=resources&s=details&id=3716
×
×
  • Create New...