I was making this game and it was working and i did it from complete scratch yehhhhh and i got to this and it dosn't work please help
;lemonade game ;made by Ashley griffiths AppTitle"lemonade game" Graphics 800,600 SeedRnd(MilliSecs()) ;some constants day = 1 money = 20.00 ;temp random temp%= Rand(1,10) ;Weather random Weather%= Rand(1,5) ;amounts paper=0 lemons=0 sugar=0 ice=0 ;introduction Print"welcome to the lemonade game" Print Delay 500 Print"In the lemonade game you choose how to sell your lemondade game" Print Delay 500 Print"the advantage is you don't have to spend a penny" Print Delay 1500 Print"the disadvantage is you don't earn a penny" Print Delay 500 Print"would you like to go on" enter$=Input("yes or no: ") If Lower$(enter) = no Then End Else EndIf Print Print"I'm glad you have chosen to play the lemondade game" Print Print"welcome to a brand new day of a brandnew industrie" Print Print"please enter your name" name$=Input() Print name$+ " lemonade stand" Print Print"welcome lets start your buissness" Print Print"Acording to the weather pepole will pay more and buy more" Print "Day" +day Print "Money" +money Print "Temp" +temp% Select weather% Case 1 Print "Weather: Sunny" Case 2 Print "Weather: Overcast" Case 3 Print "Weather: Wet" Case 4 Print "Weather: Hazzy" Case 5 Print "Weather: Heat wave" End Select Delay 1500 Print .loop Repeat ;qauntitys Print"How much would you like to charge for your lemonade" price=Input() Print"how many lemons in a pitcher" lemons=Input() Print"how much sugar per pitcher" sugar=Input() Print"How much ice per glass" ice=Input() Print ;purchasing Print"Now you chosse to buy you're supply's" ;papercups Print"paper cups cost 2p each" paperno=Input("how many cups: ") paper + paperno money - paperno * 0.02 Print"number of paper cups: " +paper Print"money: " +money ;lemons Print"lemons cost 5p each" lemonno=Input("how many lemons: ") lemons + lemonno money - lemonno * 0.05 Print"number of lemons: " +lemons Print"money: " +money ;sugar Print"sugar cost 7p per cup" sugarno=Input("how many cups: ") sugar + sugarno money - sugarno * 0.07 Print"Cups of sugar: " +sugar Print"money: " +money ;ice Print"ice costs 1 p per cup" iceno=Input("how many cubes: ") ice + iceno money - iceno * 0.01 Print"Cubes of ice: " +ice Print"money: " +money ;go back Print"would you like to make changes" choice$=Input("yes or no ") If Lower$(choice) = yes Then Goto loop End If ;loop2 ;loop2 .loop2 cust%=Rand(0,100) cust% * price = money Print"you know have " +money day + 1 Until day=30