Welcome to Pizza Time, a job simulator that puts you in the shoes of a pizza shop worker! Click on the highlighted words to move through the game. [[You're Hired]]{(set: $day to 0) (set: $OrderNumber to 0) (set: $looks to 3) }As a pizza shop worker your job is to fullfill customers orders. This job will test your memory and it gets harder as the days go by. We are the highest rated pizza shop in the world so I expect perfection. Things to remember for a customer's order: ''Pizza Size'' ''Toppings '' //Topping Amount (Put extra if specified)// ''Beverage'' //Beverage Size// You will have ''3 orders'' each day and you must get ''2 out of 3 perfect'' in order to move on to the next day or else you're fired. If you get a perfect score you can earn a glance at the customer's recipt during an order (this will come in handy later in the game). You start off with ''3 extra looks'', use them wisely. There are ''5 days in a work week'', can you make it without getting fired?!! [[Start your day]]{(set: $day to $day+1) (set: $OrderNumber to 0) (set: $PizzaSize to "none") (set: $Topping1 to "none") (set: $Topping1amt to "none") (set: $Topping2 to "none") (set: $Topping2amt to "none") (set: $Topping3 to "none") (set: $Topping3amt to "none") (set: $Topping4 to "none") (set: $Topping4amt to "none") (set: $Topping5 to "none") (set: $Topping5amt to "none") (set: $Beverage to "none") (set: $Beverageamt to "none") } (if: $day is 1)[Today is Monday, your first day.] (if: $day is 2)[Today is Tuesday, you survived your first day let's keep going strong.] (if: $day is 3)[Today is Wednesday, doing good so far!] (if: $day is 4)[Today is Thursday, it's really ramping up huh you got this.] (if: $day is 5)[Today is Friday, lets end the week strong!] [[Customer 1]] is here!!!{(set: $OrderNumber to 1) (set: $Orderwinmeter to 0) (set: $pepperoni to false) (set: $mushrooms to false) (set: $olives to false) (set: $sausage to false) (set: $garlic to false) (set: $pepperoniamt to "none") (set: $mushroomsamt to "none") (set: $olivesamt to "none") (set: $sausageamt to "none") (set: $garlicamt to "none") (set: $PizzaSize to (either: "personal", "small", "medium", "large")) (set: $Beverage to (either: "none", "coke", "sprite", "rootbeer")) (if: $Beverage is not "none")[(set: $Beverageamt to (either: "8oz", "2Lt"))] (if: $day >= 1)[ (set: $usedToppings to (a:)) (set: $availableToppings to (a: "pepperoni", "mushrooms", "olives", "sausage", "garlic", "none")) (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4,5,6)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping1 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping1 is not "none")[(set: $Topping1amt to (either: "regular", "extra"))] (if: $Topping1 is "pepperoni")[(set: $pepperoniamt to $Topping1amt)] (if: $Topping1 is "mushrooms")[(set: $mushroomsamt to $Topping1amt)] (if: $Topping1 is "olives")[(set: $olivesamt to $Topping1amt)] (if: $Topping1 is "sausage")[(set: $sausageamt to $Topping1amt)] (if: $Topping1 is "garlic")[(set: $garlicamt to $Topping1amt)] ] (if: $day >= 2)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4,5)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping2 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping2 is not "none")[(set: $Topping2amt to (either: "regular", "extra"))] (if: $Topping2 is "pepperoni")[(set: $pepperoniamt to $Topping2amt)] (if: $Topping2 is "mushrooms")[(set: $mushroomsamt to $Topping2amt)] (if: $Topping2 is "olives")[(set: $olivesamt to $Topping2amt)] (if: $Topping2 is "sausage")[(set: $sausageamt to $Topping2amt)] (if: $Topping2 is "garlic")[(set: $garlicamt to $Topping2amt)] ] (if: $day >= 3)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping3 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping3 is not "none")[(set: $Topping3amt to (either: "regular", "extra"))] (if: $Topping3 is "pepperoni")[(set: $pepperoniamt to $Topping3amt)] (if: $Topping3 is "mushrooms")[(set: $mushroomsamt to $Topping3amt)] (if: $Topping3 is "olives")[(set: $olivesamt to $Topping3amt)] (if: $Topping3 is "sausage")[(set: $sausageamt to $Topping3amt)] (if: $Topping3 is "garlic")[(set: $garlicamt to $Topping3amt)] ] (if: $day >= 4)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping4 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping4 is not "none")[(set: $Topping4amt to (either: "regular", "extra"))] (if: $Topping4 is "pepperoni")[(set: $pepperoniamt to $Topping4amt)] (if: $Topping4 is "mushrooms")[(set: $mushroomsamt to $Topping4amt)] (if: $Topping4 is "olives")[(set: $olivesamt to $Topping4amt)] (if: $Topping4 is "sausage")[(set: $sausageamt to $Topping4amt)] (if: $Topping4 is "garlic")[(set: $garlicamt to $Topping4amt)] ] (if: $day >= 5)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping5 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping5 is not "none")[(set: $Topping5amt to (either: "regular", "extra"))] (if: $Topping5 is "pepperoni")[(set: $pepperoniamt to $Topping5amt)] (if: $Topping5 is "mushrooms")[(set: $mushroomsamt to $Topping5amt)] (if: $Topping5 is "olives")[(set: $olivesamt to $Topping5amt)] (if: $Topping5 is "sausage")[(set: $sausageamt to $Toppin5amt)] (if: $Topping5 is "garlic")[(set: $garlicamt to $Topping5amt)] ] (if: ($Topping1 is "pepperoni") or ($Topping2 is "pepperoni") or ($Topping3 is "pepperoni") or ($Topping4 is "pepperoni") or ($Topping5 is "pepperoni"))[(set: $pepperoni to true)] (if: ($Topping1 is "mushrooms") or ($Topping2 is "mushrooms") or ($Topping3 is "mushrooms") or ($Topping4 is "mushrooms") or ($Topping5 is "mushrooms"))[(set: $mushrooms to true)] (if: ($Topping1 is "olives") or ($Topping2 is "olives") or ($Topping3 is "olives") or ($Topping4 is "olives") or ($Topping5 is "olives"))[(set: $olives to true)] (if: ($Topping1 is "sausage") or ($Topping2 is "sausage") or ($Topping3 is "sausage") or ($Topping4 is "sausage") or ($Topping5 is "sausage"))[(set: $sausage to true)] (if: ($Topping1 is "garlic") or ($Topping2 is "garlic") or ($Topping3 is "garlic") or ($Topping4 is "garlic") or ($Topping5 is "garlic"))[(set: $garlic to true)] } Your first customer's order is a $PizzaSize pizza with { (if: ($Topping1 is "none") and ($Topping2 is "none") and ($Topping3 is "none") and ($Topping4 is "none") and ($Topping5 is "none"))[nothing on it I guess, bit weird but the customer is always right!] (if: ($Topping1amt is "extra") and ($Topping1 is not "none"))[$Topping1amt] (if: $Topping1 is not "none")[$Topping1] (if: ($day >1) and ($Topping1 is not "none"))[,] (if: ($Topping2amt is "extra") and ($Topping2 is not "none"))[$Topping2amt] (if: $Topping2 is not "none")[$Topping2] (if: ($day >2) and ($Topping2 is not "none"))[,] (if: ($Topping3amt is "extra") and ($Topping3 is not "none"))[$Topping3amt] (if: $Topping3 is not "none")[$Topping3] (if: ($day >3) and ($Topping3 is not "none"))[,] (if: ($Topping4amt is "extra") and ($Topping5 is not "none"))[$Topping4amt] (if: $Topping4 is not "none")[$Topping4] (if: ($day >4) and ($Topping4 is not "none"))[,] (if: ($Topping5amt is "extra") and ($Topping5 is not "none"))[$Topping5amt] (if: $Topping5 is not "none")[$Topping5]} (if: $Beverage is not "none")[$Beverageamt $Beverage] [[Make Order 1]]Fill in the order by selecting from the dropdowns and clicking the check boxes. Make sure to select an amount and size. If they didn't order a drink or certain topping leave the size/amount as none. Forgot the order? [[Use one of your looks at the recipt]] ''Pizza Size'' (dropdown: bind $PPizzaSize, "personal", "small", "medium", "large") ''Pizza toppings'' (checkbox: bind $Ppepperoni, "pepperoni" ) //Amount// (dropdown: bind $Ppepperoniamt, "none", "regular", "extra" ) (checkbox: bind $Pmushrooms, "mushrooms" ) //Amount// (dropdown: bind $Pmushroomsamt, "none", "regular", "extra" ) (checkbox: bind $Polives, "olives" ) //Amount// (dropdown: bind $Polivesamt, "none", "regular", "extra" ) (checkbox: bind $Psausage, "sausage" ) //Amount// (dropdown: bind $Psausageamt, "none", "regular", "extra" ) (checkbox: bind $Pgarlic, "garlic" ) //Amount// (dropdown: bind $Pgarlicamt, "none", "regular", "extra" ) ''Drink'' (dropdown: bind $PBeverage, "none", "coke", "sprite", "rootbeer") //Size// (dropdown: bind $PBeverageamt, "none", "8oz", "2Lt") [[Finish Order 1]] { (if: ($Topping1 is "pepperoni") or ($Topping2 is "pepperoni") or ($Topping3 is "pepperoni") or ($Topping4 is "pepperoni") or ($Topping5 is "pepperoni"))[(set: $pepperoni to true)] (if: ($Topping1 is "mushrooms") or ($Topping2 is "mushrooms") or ($Topping3 is "mushrooms") or ($Topping4 is "mushrooms") or ($Topping5 is "mushrooms"))[(set: $mushrooms to true)] (if: ($Topping1 is "olives") or ($Topping2 is "olives") or ($Topping3 is "olives") or ($Topping4 is "olives") or ($Topping5 is "olives"))[(set: $olives to true)] (if: ($Topping1 is "sausage") or ($Topping2 is "sausage") or ($Topping3 is "sausage") or ($Topping4 is "sausage") or ($Topping5 is "sausage"))[(set: $sausage to true)] (if: ($Topping1 is "garlic") or ($Topping2 is "garlic") or ($Topping3 is "garlic") or ($Topping4 is "garlic") or ($Topping5 is "garlic"))[(set: $garlic to true)] (if: $pepperoniamt is "none")[(set: $pepperoniamt to 0)] (else-if: $pepperoniamt is "regular")[(set: $pepperoniamt to 1)] (else-if: $pepperoniamt is "extra")[(set: $pepperoniamt to 2)] (if: $Ppepperoniamt is "none")[(set: $Ppepperoniamt to 0)] (else-if: $Ppepperoniamt is "regular")[(set: $Ppepperoniamt to 1)] (else-if: $Ppepperoniamt is "extra")[(set: $Ppepperoniamt to 2)] (if: $mushroomsamt is "none")[(set: $mushroomsamt to 0)] (else-if: $mushroomsamt is "regular")[(set: $mushroomsamt to 1)] (else-if: $mushroomsamt is "extra")[(set: $mushroomsamt to 2)] (if: $Pmushroomsamt is "none")[(set: $Pmushroomsamt to 0)] (else-if: $Pmushroomsamt is "regular")[(set: $Pmushroomsamt to 1)] (else-if: $Pmushroomsamt is "extra")[(set: $Pmushroomsamt to 2)] (if: $olivesamt is "none")[(set: $olivesamt to 0)] (else-if: $olivesamt is "regular")[(set: $olivesamt to 1)] (else-if: $olivesamt is "extra")[(set: $olivesamt to 2)] (if: $Polivesamt is "none")[(set: $Polivesamt to 0)] (else-if: $Polivesamt is "regular")[(set: $Polivesamt to 1)] (else-if: $Polivesamt is "extra")[(set: $Polivesamt to 2)] (if: $sausageamt is "none")[(set: $sausageamt to 0)] (else-if: $sausageamt is "regular")[(set: $sausageamt to 1)] (else-if: $sausageamt is "extra")[(set: $sausageamt to 2)] (if: $Psausageamt is "none")[(set: $Psausageamt to 0)] (else-if: $Psausageamt is "regular")[(set: $Psausageamt to 1)] (else-if: $Psausageamt is "extra")[(set: $Psausageamt to 2)] (if: $garlicamt is "none")[(set: $garlicamt to 0)] (else-if: $garlicamt is "regular")[(set: $garlicamt to 1)] (else-if: $garlicamt is "extra")[(set: $garlicamt to 2)] (if: $Pgarlicamt is "none")[(set: $Pgarlicamt to 0)] (else-if: $Pgarlicamt is "regular")[(set: $Pgarlicamt to 1)] (else-if: $Pgarlicamt is "extra")[(set: $Pgarlicamt to 2)] (if: $PizzaSize is "personal")[(set: $PizzaSize to 0)] (else-if: $PizzaSize is "small")[(set: $PizzaSize to 1)] (else-if: $PizzaSize is "medium")[(set: $PizzaSize to 2)] (else-if: $PizzaSize is "large")[(set: $PizzaSize to 3)] (if: $PPizzaSize is "personal")[(set: $PPizzaSize to 0)] (else-if: $PPizzaSize is "small")[(set: $PPizzaSize to 1)] (else-if: $PPizzaSize is "medium")[(set: $PPizzaSize to 2)] (else-if: $PPizzaSize is "large")[(set: $PPizzaSize to 3)] (if: $Beverage is "none")[(set: $Beverage to 0)] (else-if: $Beverage is "coke")[(set: $Beverage to 1)] (else-if: $Beverage is "spirte")[(set: $Beverage to 2)] (else-if: $Beverage is "rootbeer")[(set: $Beverage to 3)] (if: $PBeverage is "none")[(set: $PBeverage to 0)] (else-if: $PBeverage is "coke")[(set: $PBeverage to 1)] (else-if: $PBeverage is "sprite")[(set: $PBeverage to 2)] (else-if: $PBeverage is "rootbeer")[(set: $PBeverage to 3)] (if: $Beverageamt is "none")[(set: $Beverageamt to 0)] (else-if: $Beverageamt is "8oz")[(set: $Beverageamt to 1)] (else-if: $Beverageamt is "2Lt")[(set: $Beverageamt to 2)] (if: $PBeverageamt is "none")[(set: $PBeverageamt to 0)] (else-if: $PBeverageamt is "8oz")[(set: $PBeverageamt to 1)] (else-if: $PBeverageamt is "2Lt")[(set: $PBeverageamt to 2)] (if: $pepperoni is true and $Ppepperoni is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (else-if: $pepperoni is false and $Ppepperoni is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $mushrooms is true and $Pmushrooms is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $mushrooms is false and $Pmushrooms is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $olives is true and $Polives is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $olives is false and $Polives is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $sausage is true and $Psausage is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $sausage is false and $Psausage is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $garlic is true and $Pgarlic is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $garlic is false and $Pgarlic is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $pepperoniamt is $Ppepperoniamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $mushroomsamt is $Pmushroomsamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $olivesamt is $Polivesamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $sausageamt is $Psausageamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $garlicamt is $Pgarlicamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PPizzaSize is $PizzaSize)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PBeverage is $Beverage)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PBeverageamt is $Beverageamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $Orderwinmeter is 13)[(set: $Daywinmeter to $Daywinmeter +1)] (elseif: $Orderwinmeter < 13)[(set: $Ordermessup to $Ordermessup +1)] } (if: $Orderwinmeter is 13)[You got their order correct! Time for [[Customer 2]] ] (if: $Orderwinmeter < 13)[You messed up their order. Hope you have better luck on [[Customer 2]]]{(set: $OrderNumber to 2) (set: $Orderwinmeter to 0) (set: $pepperoni to false) (set: $mushrooms to false) (set: $olives to false) (set: $sausage to false) (set: $garlic to false) (set: $pepperoniamt to "none") (set: $mushroomsamt to "none") (set: $olivesamt to "none") (set: $sausageamt to "none") (set: $garlicamt to "none") (set: $PizzaSize to (either: "personal", "small", "medium", "large")) (set: $Beverage to (either: "none", "coke", "sprite", "rootbeer")) (if: $Beverage is not "none")[(set: $Beverageamt to (either: "8oz", "2Lt"))] (if: $day >= 1)[ (set: $usedToppings to (a:)) (set: $availableToppings to (a: "pepperoni", "mushrooms", "olives", "sausage", "garlic", "none")) (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4,5,6)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping1 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping1 is not "none")[(set: $Topping1amt to (either: "regular", "extra"))] (if: $Topping1 is "pepperoni")[(set: $pepperoniamt to $Topping1amt)] (if: $Topping1 is "mushrooms")[(set: $mushroomsamt to $Topping1amt)] (if: $Topping1 is "olives")[(set: $olivesamt to $Topping1amt)] (if: $Topping1 is "sausage")[(set: $sausageamt to $Topping1amt)] (if: $Topping1 is "garlic")[(set: $garlicamt to $Topping1amt)] ] (if: $day >= 2)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4,5)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping2 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping2 is not "none")[(set: $Topping2amt to (either: "regular", "extra"))] (if: $Topping2 is "pepperoni")[(set: $pepperoniamt to $Topping2amt)] (if: $Topping2 is "mushrooms")[(set: $mushroomsamt to $Topping2amt)] (if: $Topping2 is "olives")[(set: $olivesamt to $Topping2amt)] (if: $Topping2 is "sausage")[(set: $sausageamt to $Topping2amt)] (if: $Topping2 is "garlic")[(set: $garlicamt to $Topping2amt)] ] (if: $day >= 3)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping3 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping3 is not "none")[(set: $Topping3amt to (either: "regular", "extra"))] (if: $Topping3 is "pepperoni")[(set: $pepperoniamt to $Topping3amt)] (if: $Topping3 is "mushrooms")[(set: $mushroomsamt to $Topping3amt)] (if: $Topping3 is "olives")[(set: $olivesamt to $Topping3amt)] (if: $Topping3 is "sausage")[(set: $sausageamt to $Topping3amt)] (if: $Topping3 is "garlic")[(set: $garlicamt to $Topping3amt)] ] (if: $day >= 4)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping4 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping4 is not "none")[(set: $Topping4amt to (either: "regular", "extra"))] (if: $Topping4 is "pepperoni")[(set: $pepperoniamt to $Topping4amt)] (if: $Topping4 is "mushrooms")[(set: $mushroomsamt to $Topping4amt)] (if: $Topping4 is "olives")[(set: $olivesamt to $Topping4amt)] (if: $Topping4 is "sausage")[(set: $sausageamt to $Topping4amt)] (if: $Topping4 is "garlic")[(set: $garlicamt to $Topping4amt)] ] (if: $day >= 5)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping5 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping5 is not "none")[(set: $Topping5amt to (either: "regular", "extra"))] (if: $Topping5 is "pepperoni")[(set: $pepperoniamt to $Topping5amt)] (if: $Topping5 is "mushrooms")[(set: $mushroomsamt to $Topping5amt)] (if: $Topping5 is "olives")[(set: $olivesamt to $Topping5amt)] (if: $Topping5 is "sausage")[(set: $sausageamt to $Toppin5amt)] (if: $Topping5 is "garlic")[(set: $garlicamt to $Topping5amt)] ] (if: ($Topping1 is "pepperoni") or ($Topping2 is "pepperoni") or ($Topping3 is "pepperoni") or ($Topping4 is "pepperoni") or ($Topping5 is "pepperoni"))[(set: $pepperoni to true)] (if: ($Topping1 is "mushrooms") or ($Topping2 is "mushrooms") or ($Topping3 is "mushrooms") or ($Topping4 is "mushrooms") or ($Topping5 is "mushrooms"))[(set: $mushrooms to true)] (if: ($Topping1 is "olives") or ($Topping2 is "olives") or ($Topping3 is "olives") or ($Topping4 is "olives") or ($Topping5 is "olives"))[(set: $olives to true)] (if: ($Topping1 is "sausage") or ($Topping2 is "sausage") or ($Topping3 is "sausage") or ($Topping4 is "sausage") or ($Topping5 is "sausage"))[(set: $sausage to true)] (if: ($Topping1 is "garlic") or ($Topping2 is "garlic") or ($Topping3 is "garlic") or ($Topping4 is "garlic") or ($Topping5 is "garlic"))[(set: $garlic to true)] } Your second customer's order is a $PizzaSize pizza with {(if: ($Topping1amt is "extra") and ($Topping1 is not "none"))[$Topping1amt] (if: $Topping1 is not "none")[$Topping1] (if: ($day >1) and ($Topping1 is not "none"))[,] (if: ($Topping2amt is "extra") and ($Topping2 is not "none"))[$Topping2amt] (if: $Topping2 is not "none")[$Topping2] (if: ($day >2) and ($Topping2 is not "none"))[,] (if: ($Topping3amt is "extra") and ($Topping3 is not "none"))[$Topping3amt] (if: $Topping3 is not "none")[$Topping3] (if: ($day >3) and ($Topping3 is not "none"))[,] (if: ($Topping4amt is "extra") and ($Topping5 is not "none"))[$Topping4amt] (if: $Topping4 is not "none")[$Topping4] (if: ($day >4) and ($Topping4 is not "none"))[,] (if: ($Topping5amt is "extra") and ($Topping5 is not "none"))[$Topping5amt] (if: $Topping5 is not "none")[$Topping5]} (if: $Beverage is not "none")[$Beverageamt $Beverage] [[Make Order 2]]Fill in the order by selecting from the dropdowns and clicking the check boxes. Make sure to select an amount and size. If they didn't order a drink or certain topping leave the size/amount as none. Forgot the order? [[Use one of your looks at the recipt]] ''Pizza Size'' (dropdown: bind $PPizzaSize, "personal", "small", "medium", "large") ''Pizza toppings'' (checkbox: bind $Ppepperoni, "pepperoni" ) //Amount// (dropdown: bind $Ppepperoniamt, "none", "regular", "extra" ) (checkbox: bind $Pmushrooms, "mushrooms" ) //Amount// (dropdown: bind $Pmushroomsamt, "none", "regular", "extra" ) (checkbox: bind $Polives, "olives" ) //Amount// (dropdown: bind $Polivesamt, "none", "regular", "extra" ) (checkbox: bind $Psausage, "sausage" ) //Amount// (dropdown: bind $Psausageamt, "none", "regular", "extra" ) (checkbox: bind $Pgarlic, "garlic" ) //Amount// (dropdown: bind $Pgarlicamt, "none", "regular", "extra" ) ''Drink'' (dropdown: bind $PBeverage, "none", "coke", "sprite", "rootbeer") //Size// (dropdown: bind $PBeverageamt, "none", "8oz", "2Lt") [[Finish Order 2]] { (if: ($Topping1 is "pepperoni") or ($Topping2 is "pepperoni") or ($Topping3 is "pepperoni") or ($Topping4 is "pepperoni") or ($Topping5 is "pepperoni"))[(set: $pepperoni to true)] (if: ($Topping1 is "mushrooms") or ($Topping2 is "mushrooms") or ($Topping3 is "mushrooms") or ($Topping4 is "mushrooms") or ($Topping5 is "mushrooms"))[(set: $mushrooms to true)] (if: ($Topping1 is "olives") or ($Topping2 is "olives") or ($Topping3 is "olives") or ($Topping4 is "olives") or ($Topping5 is "olives"))[(set: $olives to true)] (if: ($Topping1 is "sausage") or ($Topping2 is "sausage") or ($Topping3 is "sausage") or ($Topping4 is "sausage") or ($Topping5 is "sausage"))[(set: $sausage to true)] (if: ($Topping1 is "garlic") or ($Topping2 is "garlic") or ($Topping3 is "garlic") or ($Topping4 is "garlic") or ($Topping5 is "garlic"))[(set: $garlic to true)] (if: $pepperoniamt is "none")[(set: $pepperoniamt to 0)] (else-if: $pepperoniamt is "regular")[(set: $pepperoniamt to 1)] (else-if: $pepperoniamt is "extra")[(set: $pepperoniamt to 2)] (if: $Ppepperoniamt is "none")[(set: $Ppepperoniamt to 0)] (else-if: $Ppepperoniamt is "regular")[(set: $Ppepperoniamt to 1)] (else-if: $Ppepperoniamt is "extra")[(set: $Ppepperoniamt to 2)] (if: $mushroomsamt is "none")[(set: $mushroomsamt to 0)] (else-if: $mushroomsamt is "regular")[(set: $mushroomsamt to 1)] (else-if: $mushroomsamt is "extra")[(set: $mushroomsamt to 2)] (if: $Pmushroomsamt is "none")[(set: $Pmushroomsamt to 0)] (else-if: $Pmushroomsamt is "regular")[(set: $Pmushroomsamt to 1)] (else-if: $Pmushroomsamt is "extra")[(set: $Pmushroomsamt to 2)] (if: $olivesamt is "none")[(set: $olivesamt to 0)] (else-if: $olivesamt is "regular")[(set: $olivesamt to 1)] (else-if: $olivesamt is "extra")[(set: $olivesamt to 2)] (if: $Polivesamt is "none")[(set: $Polivesamt to 0)] (else-if: $Polivesamt is "regular")[(set: $Polivesamt to 1)] (else-if: $Polivesamt is "extra")[(set: $Polivesamt to 2)] (if: $sausageamt is "none")[(set: $sausageamt to 0)] (else-if: $sausageamt is "regular")[(set: $sausageamt to 1)] (else-if: $sausageamt is "extra")[(set: $sausageamt to 2)] (if: $Psausageamt is "none")[(set: $Psausageamt to 0)] (else-if: $Psausageamt is "regular")[(set: $Psausageamt to 1)] (else-if: $Psausageamt is "extra")[(set: $Psausageamt to 2)] (if: $garlicamt is "none")[(set: $garlicamt to 0)] (else-if: $garlicamt is "regular")[(set: $garlicamt to 1)] (else-if: $garlicamt is "extra")[(set: $garlicamt to 2)] (if: $Pgarlicamt is "none")[(set: $Pgarlicamt to 0)] (else-if: $Pgarlicamt is "regular")[(set: $Pgarlicamt to 1)] (else-if: $Pgarlicamt is "extra")[(set: $Pgarlicamt to 2)] (if: $PizzaSize is "personal")[(set: $PizzaSize to 0)] (else-if: $PizzaSize is "small")[(set: $PizzaSize to 1)] (else-if: $PizzaSize is "medium")[(set: $PizzaSize to 2)] (else-if: $PizzaSize is "large")[(set: $PizzaSize to 3)] (if: $PPizzaSize is "personal")[(set: $PPizzaSize to 0)] (else-if: $PPizzaSize is "small")[(set: $PPizzaSize to 1)] (else-if: $PPizzaSize is "medium")[(set: $PPizzaSize to 2)] (else-if: $PPizzaSize is "large")[(set: $PPizzaSize to 3)] (if: $Beverage is "none")[(set: $Beverage to 0)] (else-if: $Beverage is "coke")[(set: $Beverage to 1)] (else-if: $Beverage is "spirte")[(set: $Beverage to 2)] (else-if: $Beverage is "rootbeer")[(set: $Beverage to 3)] (if: $PBeverage is "none")[(set: $PBeverage to 0)] (else-if: $PBeverage is "coke")[(set: $PBeverage to 1)] (else-if: $PBeverage is "sprite")[(set: $PBeverage to 2)] (else-if: $PBeverage is "rootbeer")[(set: $PBeverage to 3)] (if: $Beverageamt is "none")[(set: $Beverageamt to 0)] (else-if: $Beverageamt is "8oz")[(set: $Beverageamt to 1)] (else-if: $Beverageamt is "2Lt")[(set: $Beverageamt to 2)] (if: $PBeverageamt is "none")[(set: $PBeverageamt to 0)] (else-if: $PBeverageamt is "8oz")[(set: $PBeverageamt to 1)] (else-if: $PBeverageamt is "2Lt")[(set: $PBeverageamt to 2)] (if: $pepperoni is true and $Ppepperoni is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (else-if: $pepperoni is false and $Ppepperoni is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $mushrooms is true and $Pmushrooms is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $mushrooms is false and $Pmushrooms is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $olives is true and $Polives is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $olives is false and $Polives is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $sausage is true and $Psausage is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $sausage is false and $Psausage is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $garlic is true and $Pgarlic is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $garlic is false and $Pgarlic is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $pepperoniamt is $Ppepperoniamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $mushroomsamt is $Pmushroomsamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $olivesamt is $Polivesamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $sausageamt is $Psausageamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $garlicamt is $Pgarlicamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PPizzaSize is $PizzaSize)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PBeverage is $Beverage)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PBeverageamt is $Beverageamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $Orderwinmeter is 13)[(set: $Daywinmeter to $Daywinmeter +1)] (elseif: $Orderwinmeter < 13)[(set: $Ordermessup to $Ordermessup +1)] } (if: $Orderwinmeter is 13)[You got their order correct! Time for [[Customer 3]]] (if: $Orderwinmeter < 13 and $Ordermessup < 2)[You messed up their order. Hope you have better luck on [[Customer 3]]] (if: $Orderwinmeter < 13 and $Ordermessup >= 2)[You've messed up another order. [[You're Fired]]]{(set: $OrderNumber to 3) (set: $Orderwinmeter to 0) (set: $pepperoni to false) (set: $mushrooms to false) (set: $olives to false) (set: $sausage to false) (set: $garlic to false) (set: $pepperoniamt to "none") (set: $mushroomsamt to "none") (set: $olivesamt to "none") (set: $sausageamt to "none") (set: $garlicamt to "none") (set: $PizzaSize to (either: "personal", "small", "medium", "large")) (set: $Beverage to (either: "none", "coke", "sprite", "rootbeer")) (if: $Beverage is not "none")[(set: $Beverageamt to (either: "8oz", "2Lt"))] (if: $day >= 1)[ (set: $usedToppings to (a:)) (set: $availableToppings to (a: "pepperoni", "mushrooms", "olives", "sausage", "garlic", "none")) (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4,5,6)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping1 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping1 is not "none")[(set: $Topping1amt to (either: "regular", "extra"))] (if: $Topping1 is "pepperoni")[(set: $pepperoniamt to $Topping1amt)] (if: $Topping1 is "mushrooms")[(set: $mushroomsamt to $Topping1amt)] (if: $Topping1 is "olives")[(set: $olivesamt to $Topping1amt)] (if: $Topping1 is "sausage")[(set: $sausageamt to $Topping1amt)] (if: $Topping1 is "garlic")[(set: $garlicamt to $Topping1amt)] ] (if: $day >= 2)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4,5)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping2 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping2 is not "none")[(set: $Topping2amt to (either: "regular", "extra"))] (if: $Topping2 is "pepperoni")[(set: $pepperoniamt to $Topping2amt)] (if: $Topping2 is "mushrooms")[(set: $mushroomsamt to $Topping2amt)] (if: $Topping2 is "olives")[(set: $olivesamt to $Topping2amt)] (if: $Topping2 is "sausage")[(set: $sausageamt to $Topping2amt)] (if: $Topping2 is "garlic")[(set: $garlicamt to $Topping2amt)] ] (if: $day >= 3)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3,4)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping3 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping3 is not "none")[(set: $Topping3amt to (either: "regular", "extra"))] (if: $Topping3 is "pepperoni")[(set: $pepperoniamt to $Topping3amt)] (if: $Topping3 is "mushrooms")[(set: $mushroomsamt to $Topping3amt)] (if: $Topping3 is "olives")[(set: $olivesamt to $Topping3amt)] (if: $Topping3 is "sausage")[(set: $sausageamt to $Topping3amt)] (if: $Topping3 is "garlic")[(set: $garlicamt to $Topping3amt)] ] (if: $day >= 4)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2,3)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping4 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping4 is not "none")[(set: $Topping4amt to (either: "regular", "extra"))] (if: $Topping4 is "pepperoni")[(set: $pepperoniamt to $Topping4amt)] (if: $Topping4 is "mushrooms")[(set: $mushroomsamt to $Topping4amt)] (if: $Topping4 is "olives")[(set: $olivesamt to $Topping4amt)] (if: $Topping4 is "sausage")[(set: $sausageamt to $Topping4amt)] (if: $Topping4 is "garlic")[(set: $garlicamt to $Topping4amt)] ] (if: $day >= 5)[ (if: $availableToppings's length > 0)[ (set: $chooseNumber to (either: 1,2)) (set: $select to $availableToppings's $chooseNumber) (set: $Topping5 to $select) (set: $usedToppings to it + (a: $select)) (set: $availableToppings to it - (a: $select)) ](else:)[ no more available ] (if:$Topping5 is not "none")[(set: $Topping5amt to (either: "regular", "extra"))] (if: $Topping5 is "pepperoni")[(set: $pepperoniamt to $Topping5amt)] (if: $Topping5 is "mushrooms")[(set: $mushroomsamt to $Topping5amt)] (if: $Topping5 is "olives")[(set: $olivesamt to $Topping5amt)] (if: $Topping5 is "sausage")[(set: $sausageamt to $Toppin5amt)] (if: $Topping5 is "garlic")[(set: $garlicamt to $Topping5amt)] ] (if: ($Topping1 is "pepperoni") or ($Topping2 is "pepperoni") or ($Topping3 is "pepperoni") or ($Topping4 is "pepperoni") or ($Topping5 is "pepperoni"))[(set: $pepperoni to true)] (if: ($Topping1 is "mushrooms") or ($Topping2 is "mushrooms") or ($Topping3 is "mushrooms") or ($Topping4 is "mushrooms") or ($Topping5 is "mushrooms"))[(set: $mushrooms to true)] (if: ($Topping1 is "olives") or ($Topping2 is "olives") or ($Topping3 is "olives") or ($Topping4 is "olives") or ($Topping5 is "olives"))[(set: $olives to true)] (if: ($Topping1 is "sausage") or ($Topping2 is "sausage") or ($Topping3 is "sausage") or ($Topping4 is "sausage") or ($Topping5 is "sausage"))[(set: $sausage to true)] (if: ($Topping1 is "garlic") or ($Topping2 is "garlic") or ($Topping3 is "garlic") or ($Topping4 is "garlic") or ($Topping5 is "garlic"))[(set: $garlic to true)] } Your last customer's order is a $PizzaSize pizza with {(if: ($Topping1amt is "extra") and ($Topping1 is not "none"))[$Topping1amt] (if: $Topping1 is not "none")[$Topping1] (if: ($day >1) and ($Topping1 is not "none"))[,] (if: ($Topping2amt is "extra") and ($Topping2 is not "none"))[$Topping2amt] (if: $Topping2 is not "none")[$Topping2] (if: ($day >2) and ($Topping2 is not "none"))[,] (if: ($Topping3amt is "extra") and ($Topping3 is not "none"))[$Topping3amt] (if: $Topping3 is not "none")[$Topping3] (if: ($day >3) and ($Topping3 is not "none"))[,] (if: ($Topping4amt is "extra") and ($Topping5 is not "none"))[$Topping4amt] (if: $Topping4 is not "none")[$Topping4] (if: ($day >4) and ($Topping4 is not "none"))[,] (if: ($Topping5amt is "extra") and ($Topping5 is not "none"))[$Topping5amt] (if: $Topping5 is not "none")[$Topping5]} (if: $Beverage is not "none")[$Beverageamt $Beverage] [[Make Order 3]]Fill in the order by selecting from the dropdowns and clicking the check boxes. Make sure to select an amount and size. If they didn't order a drink or certain topping leave the size/amount as none. Forgot the order? [[Use one of your looks at the recipt]] ''Pizza Size'' (dropdown: bind $PPizzaSize, "personal", "small", "medium", "large") ''Pizza toppings'' (checkbox: bind $Ppepperoni, "pepperoni" ) //Amount// (dropdown: bind $Ppepperoniamt, "none", "regular", "extra" ) (checkbox: bind $Pmushrooms, "mushrooms" ) //Amount// (dropdown: bind $Pmushroomsamt, "none", "regular", "extra" ) (checkbox: bind $Polives, "olives" ) //Amount// (dropdown: bind $Polivesamt, "none", "regular", "extra" ) (checkbox: bind $Psausage, "sausage" ) //Amount// (dropdown: bind $Psausageamt, "none", "regular", "extra" ) (checkbox: bind $Pgarlic, "garlic" ) //Amount// (dropdown: bind $Pgarlicamt, "none", "regular", "extra" ) ''Drink'' (dropdown: bind $PBeverage, "none", "coke", "sprite", "rootbeer") //Size// (dropdown: bind $PBeverageamt, "none", "8oz", "2Lt") [[Finish Order 3]] { (if: ($Topping1 is "pepperoni") or ($Topping2 is "pepperoni") or ($Topping3 is "pepperoni") or ($Topping4 is "pepperoni") or ($Topping5 is "pepperoni"))[(set: $pepperoni to true)] (if: ($Topping1 is "mushrooms") or ($Topping2 is "mushrooms") or ($Topping3 is "mushrooms") or ($Topping4 is "mushrooms") or ($Topping5 is "mushrooms"))[(set: $mushrooms to true)] (if: ($Topping1 is "olives") or ($Topping2 is "olives") or ($Topping3 is "olives") or ($Topping4 is "olives") or ($Topping5 is "olives"))[(set: $olives to true)] (if: ($Topping1 is "sausage") or ($Topping2 is "sausage") or ($Topping3 is "sausage") or ($Topping4 is "sausage") or ($Topping5 is "sausage"))[(set: $sausage to true)] (if: ($Topping1 is "garlic") or ($Topping2 is "garlic") or ($Topping3 is "garlic") or ($Topping4 is "garlic") or ($Topping5 is "garlic"))[(set: $garlic to true)] (if: $pepperoniamt is "none")[(set: $pepperoniamt to 0)] (else-if: $pepperoniamt is "regular")[(set: $pepperoniamt to 1)] (else-if: $pepperoniamt is "extra")[(set: $pepperoniamt to 2)] (if: $Ppepperoniamt is "none")[(set: $Ppepperoniamt to 0)] (else-if: $Ppepperoniamt is "regular")[(set: $Ppepperoniamt to 1)] (else-if: $Ppepperoniamt is "extra")[(set: $Ppepperoniamt to 2)] (if: $mushroomsamt is "none")[(set: $mushroomsamt to 0)] (else-if: $mushroomsamt is "regular")[(set: $mushroomsamt to 1)] (else-if: $mushroomsamt is "extra")[(set: $mushroomsamt to 2)] (if: $Pmushroomsamt is "none")[(set: $Pmushroomsamt to 0)] (else-if: $Pmushroomsamt is "regular")[(set: $Pmushroomsamt to 1)] (else-if: $Pmushroomsamt is "extra")[(set: $Pmushroomsamt to 2)] (if: $olivesamt is "none")[(set: $olivesamt to 0)] (else-if: $olivesamt is "regular")[(set: $olivesamt to 1)] (else-if: $olivesamt is "extra")[(set: $olivesamt to 2)] (if: $Polivesamt is "none")[(set: $Polivesamt to 0)] (else-if: $Polivesamt is "regular")[(set: $Polivesamt to 1)] (else-if: $Polivesamt is "extra")[(set: $Polivesamt to 2)] (if: $sausageamt is "none")[(set: $sausageamt to 0)] (else-if: $sausageamt is "regular")[(set: $sausageamt to 1)] (else-if: $sausageamt is "extra")[(set: $sausageamt to 2)] (if: $Psausageamt is "none")[(set: $Psausageamt to 0)] (else-if: $Psausageamt is "regular")[(set: $Psausageamt to 1)] (else-if: $Psausageamt is "extra")[(set: $Psausageamt to 2)] (if: $garlicamt is "none")[(set: $garlicamt to 0)] (else-if: $garlicamt is "regular")[(set: $garlicamt to 1)] (else-if: $garlicamt is "extra")[(set: $garlicamt to 2)] (if: $Pgarlicamt is "none")[(set: $Pgarlicamt to 0)] (else-if: $Pgarlicamt is "regular")[(set: $Pgarlicamt to 1)] (else-if: $Pgarlicamt is "extra")[(set: $Pgarlicamt to 2)] (if: $PizzaSize is "personal")[(set: $PizzaSize to 0)] (else-if: $PizzaSize is "small")[(set: $PizzaSize to 1)] (else-if: $PizzaSize is "medium")[(set: $PizzaSize to 2)] (else-if: $PizzaSize is "large")[(set: $PizzaSize to 3)] (if: $PPizzaSize is "personal")[(set: $PPizzaSize to 0)] (else-if: $PPizzaSize is "small")[(set: $PPizzaSize to 1)] (else-if: $PPizzaSize is "medium")[(set: $PPizzaSize to 2)] (else-if: $PPizzaSize is "large")[(set: $PPizzaSize to 3)] (if: $Beverage is "none")[(set: $Beverage to 0)] (else-if: $Beverage is "coke")[(set: $Beverage to 1)] (else-if: $Beverage is "spirte")[(set: $Beverage to 2)] (else-if: $Beverage is "rootbeer")[(set: $Beverage to 3)] (if: $PBeverage is "none")[(set: $PBeverage to 0)] (else-if: $PBeverage is "coke")[(set: $PBeverage to 1)] (else-if: $PBeverage is "sprite")[(set: $PBeverage to 2)] (else-if: $PBeverage is "rootbeer")[(set: $PBeverage to 3)] (if: $Beverageamt is "none")[(set: $Beverageamt to 0)] (else-if: $Beverageamt is "8oz")[(set: $Beverageamt to 1)] (else-if: $Beverageamt is "2Lt")[(set: $Beverageamt to 2)] (if: $PBeverageamt is "none")[(set: $PBeverageamt to 0)] (else-if: $PBeverageamt is "8oz")[(set: $PBeverageamt to 1)] (else-if: $PBeverageamt is "2Lt")[(set: $PBeverageamt to 2)] (if: $pepperoni is true and $Ppepperoni is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (else-if: $pepperoni is false and $Ppepperoni is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $mushrooms is true and $Pmushrooms is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $mushrooms is false and $Pmushrooms is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $olives is true and $Polives is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $olives is false and $Polives is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $sausage is true and $Psausage is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $sausage is false and $Psausage is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $garlic is true and $Pgarlic is true)[(set: $Orderwinmeter to $Orderwinmeter +1)] (elseif: $garlic is false and $Pgarlic is false)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $pepperoniamt is $Ppepperoniamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $mushroomsamt is $Pmushroomsamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $olivesamt is $Polivesamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $sausageamt is $Psausageamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $garlicamt is $Pgarlicamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PPizzaSize is $PizzaSize)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PBeverage is $Beverage)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $PBeverageamt is $Beverageamt)[(set: $Orderwinmeter to $Orderwinmeter +1)] (if: $Orderwinmeter is 13)[(set: $Daywinmeter to $Daywinmeter +1)] (elseif: $Orderwinmeter < 13)[(set: $Ordermessup to $Ordermessup +1)] } (if: $Orderwinmeter is 13 and $Daywinmeter >=2)[You got their order correct! Time to [[close for the day]]] (elseif: $Orderwinmeter < 13 and $Ordermessup is <=2 and $Daywinmeter >=2)[You messed up their order. Not the strongest finish but let's [[close for the day]]] (elseif: $Orderwinmeter < 13 and $Ordermessup >= 2)[You've messed up another order. [[You're Fired]]]{ (if: $Daywinmeter is 3)[(set: $looks to $looks+1)] } (if: $Daywinmeter is 3)[Good job on a perfect day.] (if: $Daywinmeter is 2)[You surived the day with only one mistake] (if: $day is 5)[You completed a whole week congrats! Make sure to take a well deserved break over the weekend. Here's $50,000 for my best employee :)] (if: $day <5)[Get some rest and you'll [[Start your day]] again tomorrow, good luck!](if: $looks > 0)[ (set: $looks to $looks-1) $PizzaSize pizza with {(if: ($Topping1amt is "extra") and ($Topping1 is not "none"))[$Topping1amt] (if: $Topping1 is not "none")[$Topping1] (if: ($day >1) and ($Topping1 is not "none"))[,] (if: ($Topping2amt is "extra") and ($Topping2 is not "none"))[$Topping2amt] (if: $Topping2 is not "none")[$Topping2] (if: ($day >2) and ($Topping2 is not "none"))[,] (if: ($Topping3amt is "extra") and ($Topping3 is not "none"))[$Topping3amt] (if: $Topping3 is not "none")[$Topping3] (if: ($day >3) and ($Topping3 is not "none"))[,] (if: ($Topping4amt is "extra") and ($Topping5 is not "none"))[$Topping4amt] (if: $Topping4 is not "none")[$Topping4] (if: ($day >4) and ($Topping4 is not "none"))[,] (if: ($Topping5amt is "extra") and ($Topping5 is not "none"))[$Topping5amt] (if: $Topping5 is not "none")[$Topping5]} (if: $Beverage is not "none")[$Beverageamt $Beverage] (if: $OrderNumber is 1)[Now that you have checked, [[Make Order 1]]] (if: $OrderNumber is 2)[Now that you have checked, [[Make Order 2]]] (if: $OrderNumber is 3)[Now that you have checked, [[Make Order 3]]] ] (else-if: ($looks is 0) and ($OrderNumber is 1))[You haven't earned a look, now get back to work and [[Make Order 1]]] (else-if: ($looks is 0) and ($OrderNumber is 2))[You haven't earned a look, now get back to work and [[Make Order 2]]] (else-if: ($looks is 0) and ($OrderNumber is 3))[You haven't earned a look, now get back to work and [[Make Order 3]]]You got too many orders inncorect and I'm gonna have to let you go. If you stay my reputation will be ruined! ....hmmm fine if you really want to come back next week [[You're Hired]]