Advertisement
plirof2

Basic ZX CSSCGC Deadly Warriors 2- 2008 The Adventure v0.4e2 NOT SEND

May 16th, 2022 (edited)
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   5 REM "Deadly Warriors 2 - Into the Dungeon" (c) 2008-2022 v0.4e2022f
  2.   10 REM A game written using advanced assembly techniques.
  3.   11 REM Source code is encrypted to look like a simple BASIC program but IT IS NOT.
  4.   12 REM (c) Firelord Quality Games LTD (giatoula+zx[at]g m a il[dot]com - Put the word "SPECTRUM" somewhere in the subject line if you mail me )
  5.   13 REM
  6.   14 REM ****Intro coding***
  7.   15 RANDOMIZE
  8.   50 PAPER 3: PRINT "Deadly Warriors 2": PRINT "-Into The Dungeon-": PAPER 7
  9.   54 PAPER 5: PRINT "A GAME OF STRATEGY,SKILL AND    some other important things...": PAPER 7
  10.   56 PRINT "A game that took 4 billion man- hours to be completed!!! "
  11.   65 INK 6: PAPER 0: PRINT " Written by Firelord Quality Games": INK 0: PAPER 7
  12.   66 PRINT
  13.   68 REM *****initialise control selection menu****
  14.   69 PRINT "Please select control method: "
  15.   70 PRINT "  1. Use ARTKUCLRS System.": PRINT "  2. Use Virtual Reality glove.": PRINT "  6. None of the above."
  16.   79 PRINT "Please make your selection and  press any random key. "
  17.   80 PAUSE 0: INK 3: PRINT " Thank you for selecting "'FLASH 1;"Keyboard";FLASH 0 ;". Now press any key": INK 0
  18.  81 PAUSE 0: INK 4: PRINT " This game implements the "'INVERSE 1;"Advanced Real Time Keyboard UserControl Learning and "'"Reconfiguration System (TM)";INVERSE 0;" or "'FLASH 1;"ARTKUCLRS.";FLASH 0 ;" ": PRINT " ARTKUCLRS is a system that "'"learns from the user input and "'"adjusts the keyboard commands so that it fits the "'"personal profile of the user. "'"Press any key": INK 0
  19.   83 PAUSE 0: INK 3: PRINT " Thank you for selecting ": PRINT '"Keyboard"'". Now press any key": INK 0
  20.   90 CLS
  21.   93 REM ***Init NOT-Random Buttons ***
  22.   94 REM LET o$="1" : LET p$="2" : LET q$="3" : LET r$="4":
  23.   95 RANDOMIZE:LET o$=STR$ (INT (RND*90)): LET p$=STR$ (20+INT (RND*40)): LET q$=STR$ (INT (RND*20)): LET r$=STR$ (100-INT (RND*40))
  24.   99 REM ****Dungeon menu *****
  25.  100 BRIGHT 1: PRINT "You are inside a scary dungeon "'"with pink walls. You see 4 doors. What do you do ?": BRIGHT 0
  26. 110 INK 1: PRINT "(";o$;").Go East , (";p$;").Go West ,": PRINT "(";q$;").Go South, (";r$;").Go Down"
  27. 200 INK 0: INPUT "SELECT MOVE :",M$
  28. 201 REM PRINT "o=",o$ : REM TEST TTTTTTTTTTTTTTTTTTTTTT
  29. 250 IF M$=o$ THEN PRINT "You try to go East  ! ":
  30. 255 IF M$=p$ THEN PRINT "You try to go West ! ":
  31. 260 IF M$=q$ THEN PRINT "You try to go South ! ":
  32. 265 IF M$=r$ THEN PRINT "You try to go  Down ! ":
  33. 270 IF (M$ <> o$ AND M$ <>p$ AND M$ <>q$ AND M$ <>r$) THEN PRINT FLASH 1;"UNKNOWN COMMAND";FLASH 0: PAUSE 100: BEEP 1,2: CLS : GO TO 100
  34. 280 GO SUB 2000: GO TO 1050
  35. 450 INK 5: PRINT "You stand full of confidence in the middle of the room, wondering why the keyboards have so many keys and confuse people. "
  36. 455 PRINT "You start to plan in your head a keyboard with no keys especialy for this maze escape game. "
  37. 460 PRINT "A monster comes and hit you in  the head .You fall down and you forget your amazing design!!."
  38. 1050 PAUSE 500: INK 0: PAPER 7
  39. 1100 GO TO 95
  40. 1999 REM *** Advanced Algorithm that calculates the dungeon ****
  41. 2000 PAPER 7: INK 0: GO TO 2100+10*INT (RND*8)
  42. 2099 REM *** Language configuration ***
  43. 2100 INK 4: PRINT "You got attaked by 10 monsters. "'"You try to resist but they are "'"too many, so, they beat you and steal all your money  "'"(Actually, it was just a small  kid...but this sounded better..)": RETURN
  44. 2110 INK 2: PRINT "You try to move but you can't "'"move your legs. You fell with "'"your face down in the dungeon floor. "'"You make a mental note to learn how to tie your shoelaces. ": RETURN
  45. 2120 INK 4: PRINT "You perform an amazing entrance in the next room,    impressing even yourself!!!": PAUSE 80: INK 6: PAPER 2: PRINT " You now lie down on the floor "'"in  pain while some monsters "'"beat you with a chair !! ": RETURN
  46. 2130 PRINT "The door seems locked!!! "'"You decide to run & kick the door to "'"open ";: PAUSE 100: INK 2: PRINT " ...you run and use your flying triple kick move...": PRINT "You miss and hit the wall with your head... ": PAUSE 80: PRINT "From the floor where you lie in pain,you notice that the door opens to the outside": PAUSE 100: RETURN
  47. 2140 PRINT "You open the door and enter the room shouting. There are only   some spiders & some rats in the room.You feel rediculous! ": RETURN
  48. 2150 INK 3: PRINT "You see a monster behind the "'"door.Your attack is very quick & "'"caught the monster by surpise "'"... ";: PAUSE 100: PRINT ;"but, ...you hit yourself. ": PAUSE 70
  49. 2151 PRINT "A voice inside your head yells  something like  'YOU SUCK!!' but it must be talking about "'"someone else...": RETURN
  50. 2160 PRINT "The door is made of the finest "'"wood quality with superb designs carved on it! "'"It also has details made with "'"gold & silver. Admiring the art of the door you notice a "'"keyboard and a monitor in front "'"of you and you think that you "'"had something to do...": PAUSE 100: PRINT "Oh, yes you must type something...": RETURN
  51. 2170 PRINT "You hear an orc that walks into a bar with a handful of crap.You hear him say to the bartender : 'Look what I almost stepped in!'": RETURN
  52.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement