Jump to content

Bryton

Members
  • Posts

    2
  • Joined

  • Last visited

Details

  • Gang
    Blue Angels
  • Location
    USA
  • Occupation
    OG

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Bryton's Achievements

I ordered some spaghetti with marinara sauce and I got egg noodles and ketchup. I'm an average nobody.

I ordered some spaghetti with marinara sauce and I got egg noodles and ketchup. I'm an average nobody. (2/54)

1

Reputation

  1. Works like a charm! many thanks SpecT. ?
  2. Below is a simple code that allows all vehicles to fire missiles. How can we adjust this to make only 1 vehicle (Infernus: id 411) fire missiles. local shootTimer = nil function shoot() local vehicle = getPedOccupiedVehicle(localPlayer) if not isElement(vehicle) then return end if(not isTimer(shootTimer))then local posX, posY, posZ = getElementPosition(vehicle) shootTimer = setTimer(function()end, 5000, 1) createProjectile(vehicle, 19, posX, posY, posZ, 1.0) end end bindKey("vehicle_fire", "down", shoot) bindKey("vehicle_secondary_fire", "down", shoot)
×
×
  • Create New...