• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

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