home *** CD-ROM | disk | FTP | other *** search
AMOS Source Code | 1998-06-24 | 2.6 KB | 76 lines |
- Default Palette 0,FFF,111
- Screen Open 0,640,200,16,Hires
- Rem EmPIRE-Galaxy-Creator 3.0
- Rem blobrennen1
- Rem by Patrick Henz
- BEGIN:
- Randomize Timer
- Print " STAR WARS - Your own Chapter"
- Print " ----------------------------"
- Print " Blobrennen Masterprogramm"
- Print " Version 1.0 by Patrick Henz"
- Print
- Print " 1) Doping"
- Print " 2) Rennen"
- Print
- Input "RETURN";R$
- A=3 : B=2 : C=2 : D=2 : E=2 : F=2 : G=2 : H=2 : I=2 : J=2
- Print
- Print " Doping-Phase"
- Print " ------------"
- Print " (j oder n)"
- Input " Soll Blob1 gedopt werden?";A$
- If A$="j" Then A=3
- Input " Soll Blob2 gedopt werden?";B$
- If B$="j" Then B=3
- Input " Soll Blob3 gedopt werden?";C$
- If C$="j" Then C=3
- Input " Soll Blob4 gedopt werden?";D$
- If D$="j" Then D=3
- Input " Soll Blob5 gedopt werden?";E$
- If E$="j" Then E=3
- Input " Soll Blob6 gedopt werden?";F$
- If F$="j" Then F=3
- Input " Soll Blob7 gedopt werden?";G$
- If G$="j" Then G=3
- Input " Soll Blob8 gedopt werden?";H$
- If H$="j" Then H=3
- Input " Soll Blob9 gedopt werden?";I$
- If I$="j" Then I=3
- Input " Soll Blob10 gedopt werden?";J$
- If J$="j" Then J=3
- Print
- Print " Rennphase"
- Print " ---------"
- V=Rnd(9) : V=V+1
- Print " Blob1 :";A*V : A=A*V
- V=Rnd(9) : V=V+1
- Print " Blob2 :";B*V : B=B*V
- V=Rnd(9) : V=V+1
- Print " Blob3 :";C*V : C=C*V
- V=Rnd(9) : V=V+1
- Print " Blob4 :";D*V : D=D*V
- V=Rnd(9) : V=V+1
- Print " Blob5 :";E*V : E=E*V
- V=Rnd(9) : V=V+1
- Print " Blob6 :";F*V : F=F*V
- V=Rnd(9) : V=V+1
- Print " Blob7 :";G*V : G=G*V
- V=Rnd(9) : V=V+1
- Print " Blob8 :";H*V : H=H*V
- V=Rnd(9) : V=V+1
- Print " Blob9 :";I*V : I=I*V
- V=Rnd(9) : V=V+1
- Print " Blob10:";J*V : J=J*V
- Print
- If A=>B and A=>C and A=>D and A=>E and A=>F and A=>G and A=>H and A=>I and A=>J Then Print " Sieger: BLOB1!"
- If B=>A and B=>C and B=>D and B=>E and B=>F and B=>G and B=>H and B=>I and B=>J Then Print " Sieger: BLOB2!"
- If C=>B and C=>A and C=>D and C=>E and C=>F and C=>G and C=>H and C=>I and C=>J Then Print " Sieger: BLOB3!"
- If D=>B and D=>C and D=>A and D=>E and D=>F and D=>G and D=>H and D=>I and D=>J Then Print " Sieger: BLOB4!"
- If E=>A and E=>C and E=>D and E=>B and E=>F and E=>G and E=>H and E=>I and E=>J Then Print " Sieger: BLOB5!"
- If F=>B and F=>A and F=>D and F=>E and F=>C and F=>G and F=>H and F=>I and F=>J Then Print " Sieger: BLOB6!"
- If G=>B and G=>C and G=>D and G=>E and G=>F and G=>A and G=>H and G=>I and G=>J Then Print " Sieger: BLOB7!"
- If H=>A and H=>C and H=>D and H=>E and H=>F and H=>G and H=>B and H=>I and H=>J Then Print " Sieger: BLOB8!"
- If I=>B and I=>A and I=>D and I=>E and I=>F and I=>G and I=>H and I=>C and I=>J Then Print " Sieger: BLOB9!"
- If J=>B and J=>C and J=>A and J=>E and J=>F and J=>G and J=>H and J=>I and J=>D Then Print " Sieger: BLOB10!"
- Input " ENDE";E$