Been having trouble figuring out what i would need to write to add a “repeat option” so that i can repeat PickOptions… I was thinking SendMenu1, SendMenu2, SendMenu3, SendMenu4 ect…
Each time I do a PickOption i have to remove 1 option out of the pick option SO:
option(“1”, “2”, “3”); it ends up if i choose option 1, i have to remove option 1 so its option(“2”, “3”); it ends up if i choose option 2, i have to remove option 2 so its option(“3”); it ends up if i choose option 3, i have to end it there… no more options…
example of What i want:
SendMenu(1);
SendMenu(2);
if(SendMenu = 1);
option = PickOption(“1”, “2”, “3”);
if(SendMenu = 2);
option = PickOption(“1”, “3”);
that way i dont need to remove pickoptions til its out of options…