Jump to content

Search the Community

Showing results for tags 'help!!'.

  • 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

Found 2 results

  1. Hello everyone, I need your help with something please. I'm trying to create something like pick items and stuff like that, plants, mushrooms, etc etc. This creates a table with Objects and Collisions. I want to know how can I delete just the collision that I hit and the object in that position as well, not the other elements in the table just the elements that I hit. local sx,sy = guiGetScreenSize() local px,py = 1280,720 local x,y = (sx/px), (sy/py) playerSeta = getLocalPlayer() local Pos_Seta = { {323.9013671875, 2490.8134765625, 15.484375}, {335.341796875, 2486.669921875, 15.484375}, {330.0751953125, 2496.310546875, 15.484375}, {325, 2480.7265625, 15.484375} } for i,v in ipairs (Pos_Seta) do Obj_Seta = createObject(2427, v[1],v[2],v[3]) setObjectScale(Obj_Seta, 1.5) Col_Seta = createColSphere (v[1],v[2],v[3], 1.5) Blip_Seta = createBlip(v[1],v[2],v[3], 33, 2.5, 255, 0, 0, 255, 0, 100) addEventHandler( "onClientColShapeHit", Col_Seta, function(pSeta) if pSeta == playerSeta then addEventHandler('onClientRender', getRootElement(), Text_Seta) bindKey('F','down',StartSeta, playerSeta) end end) addEventHandler( "onClientColShapeLeave", Col_Seta, function(pSeta) if pSeta == playerSeta then removeEventHandler('onClientRender', getRootElement(), Text_Seta) unbindKey('F','down',StartSeta, playerSeta) end end) end function StartSeta () triggerServerEvent ( "StartSeta", localPlayer) unbindKey('F','down',StartSeta, playerSeta) end function Text_Seta () dxDrawText("Use (F) to pick this item", x*481, y*483, x*800, y*501, tocolor(255, 255, 255, 255), 1.35, "default-bold", "center", "top", false, false, false, false, false) end
  2. is there a script we can make custom left side tire smoke and right side isaw this in gta sa mta script any idea how.ty go to 7:28
×
×
  • Create New...