• 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.

variable question

Status
Not open for further replies.
Level 11
Joined
Nov 12, 2006
Messages
765
in one trigger if you do..

  • Set BoughtItem = Geonosis
and then in a different trigger set the variable as somthing else like
  • Set BoughtItem = Naboo
, will it overwrite the variable aka "BoughtItem" or will it add it so that Geonosis (the first one) and Naboo (the second one) both be on the BoughtItem variable? btw geonosis and naboo are item classes and the boughtitem variable is item-class type.
 
Level 8
Joined
Aug 3, 2008
Messages
391
in one trigger if you do..

  • Set BoughtItem = Geonosis
and then in a different trigger set the variable as somthing else like
  • Set BoughtItem = Naboo
, will it overwrite the variable aka "BoughtItem" or will it add it so that Geonosis (the first one) and Naboo (the second one) both be on the BoughtItem variable? btw geonosis and naboo are item classes and the boughtitem variable is item-class type.

Set it to array and do this.

  • Set BoughtItem[1] = Geonosis
  • Set BoughtItem[2] = Naboo
Set the number inside the [] to your liking. Just make sure they don't overwrite each other. Use diffrent numbers for each item-type maybe.

Hope it works.

Cheers.
 
Status
Not open for further replies.
Top