I am creating a air plane cargo and delivery game with exploration to find more airports.
You start with 3 airports , if you are at airport 1 it will give you passengers and cargo for airport 2 and 3 --choose(2,3) nice and easy
if you are at runway 2 you can only get passengers and cargo for airports 1 and 3 -- Choose(1,3)
now while exploring you may find another airport to add to list this could be runway 4 or 5 or 6 or 7 and so on
as you can see i cant just add a ,4 to the choose command as it may be airport 6 i find first so i need to add the 6 if i find runway 6
for about 6 airports i could probably do all combinations of the choose to sort this but i am going to have about 30 airports
so i need to add say runway 15 only if i find it
So is there a way that i can alter my choose line to add a number to a ready made choose line
Choose(2,3) as ma at runway 1 i fly off and find runway 7 and when i do make the choose line choose(2,3,7) then i find runway 5 choose(2,3,7,5)
i hope this is easy to understand. HELP WOULD BE MOST APPRECIATED