• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

Ammo and guns

Status
Not open for further replies.
Level 8
Joined
Jun 26, 2010
Messages
530
Holy crap @ Darkzealot, why is yoru trigger that big? D;

Just an example on how integer loops can shrink your triggers. Here's your first one size-tweaked

  • specify ammo value
    • Events
      • Unit - A unit Acquires an item
    • Conditions
    • Actions
    • For Each Integer A from 1 to 12 do multiple actions
      • If ((Item-type of (Item being manipulated)) Equal to Pistol) then do (Set ammo[integer a] = 60) else do (Do nothing)
      • If ((Item-type of (Item being manipulated)) Equal to Rifle) then do (Set ammo[integer a] = 80) else do (Do nothing)
Also, i think using chargeable itens where the charges are your ammo is MUCH BETTER
 
Status
Not open for further replies.
Top