variable question

Status
Not open for further replies.
Level 11
Joined
Nov 12, 2006
Messages
764
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.
 
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.
Back
Top