The Guesser. The meaning with this game is to guess the correct number. There are two different levels; one with help during the game, and one without help. The points are calculated so that you can compare the score even if the upper number limit is not the same. This game can be distributed IF the source code is the original. Other agreements can be arranged if you contact me. If you find any bugs, you must contact me, and I will fix them. Jon Espen Karlsen Bergen, Norway Email: jonek@gudmund.vgs.no ------------------------------------ Sign descriptions: =/= Is the not equal sign. _ Is the Display sign. <= Is less than or equal. -> Is the normal arrow. => Is the dobbel arrow. ------------------------------------ Lbl 0 " ************* " " *THE GUESSER* " " ************* " "Made by" "Jon Espen Karlsen"_ Goto 1 Lbl 1 " " " " "DO YOU WANT HELP" "DURING THE GAME" "1.YES" "2.NO" ?->H H=1=>Goto 2 H=2=>Goto 5 H<1=>Goto 1 H>2=>Goto 1 Lbl 2 " " " " " " " " " " " " "UPPER NUMBER LIMIT:"?->A Int ARan#+1->B FK->C Lbl 3 "WHAT DO YOU GUESS"?->D D=B=>"CORRECT"_ D=B=>Goto 4 D=/=B=>"WRONG" D=/=B=>C+1->C B>D=>"THE NUMBER IS BIGGER " B"THE NUMBER IS SMALLER" Goto 3 Lbl 4 "YOUR SCORE:" A*100\(C+1)->C C<=0=>0-C C_ Goto 0 Lbl 5 " " " " " " " " " " " " "UPPER NUMBER LIMIT:"?->A Int ARan#+1->B FK->C Lbl 6 "WHAT DO YOU GUESS"?->D D=B=>"CORRECT"_ D=B=>Goto 4 D=/=B=>"WRONG" D=/=B=>C+1->C Goto 6