home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / LORD / LADY_150.ZIP / TROLL2.LDY < prev    next >
Text File  |  2003-09-06  |  4KB  |  97 lines

  1. ; =================================================================
  2. @#TROLL2 
  3. ;  The Troll #2 v1.02 - Adaptation by Donald Tidmore.
  4. ;  Email: donald.tidmore@usa.net.   Fidonet:  1:123/450
  5. ;  WWW: http://www.fidotel.com/public/camelot/.
  6. ;
  7. @verreq 407
  8. ; I've always wondered why a random event couldn't kill you..
  9. ; I've also wondered why there aren't as many bad guys in the random
  10. ; events.. Another funny thought. This must be a huge forest.. How
  11. ; else could there be so many monsters? :)
  12. ; The player will lose 1 to 10 hitpoints.. (and may get killed).
  13. ;
  14. ; 08/24/02 modification by Donald Tidmore.  If player has a Fairy,
  15. ; and they are killed, bring them back to life.  This script MOST
  16. ; definitely is designed ONLY for LORD v4.07.  Most comments are
  17. ; by Preslar.  I simply cleaned up his bad spelling/punctuation errors.
  18. ;  02/07/03 v1.02 - cleaned up fairy rescue code, added blank lines.
  19. ;
  20.  
  21. @set &N1 to &rnd10
  22. @writeln
  23. @writeln
  24. @writeln   `%MEGA EVENT IN THE FOREST
  25. @writeln `0-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  26. @writeln   `2An ugly troll jumps out from behind and tries to steal
  27. @writeln   your coin purse!
  28. @writeln
  29. @set &Pht to -&N1
  30.  
  31. @if &Pht > 0 1
  32.  @begin
  33.    @writeln   You fend him off, but you lose `%&N1`2 hitpoints!
  34.    @writeln
  35.    @hitakey
  36.  @end
  37. @else
  38.   @begin
  39. ; If the player is smart, he won't "look for something to kill" while
  40. ; he's low on hitpoints.. If he isn't keen on the idea of protecting
  41. ; himself, well, the Troll will get him..
  42.     @set &Pgo to 0
  43.     @set &Pge to 0
  44.     @set &Pdd to true
  45.  
  46. ; Lord will save the player's data when he gets back from the event,
  47. ; but some unscrupulous people will drop carrier when they see that they've
  48. ; been killed. So save the player data now so they can't cheat the game.
  49.     @saveplayer
  50.  
  51.     @writeln   You valiantly try to fend off the little troll, but at the
  52.     @writeln   last moment, he pulls a dagger out of his boot and gives you
  53.     @writeln   a final blow!
  54.     @writeln
  55.     @writeln   `2The troll made off with your coin purse and gem sack!
  56.     @writeln
  57.     @writeln   `@You have been killed by the Troll!
  58.     @writeln
  59.     @hitakey
  60.  
  61.     @if &pfa is false 2
  62.       @begin
  63. ; @endgame really isn't needed here since lord will check the player's
  64. ; hitpoints when they get back from the event.. But, it's still an example
  65. ; of how it could be used..
  66.         @endgame
  67.       @end
  68.     @else
  69.       @begin 
  70.         @writeln   `0 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
  71.         @writeln   `$Suddenly there is a bright flash of light!
  72.         @writeln
  73.         @writeln   `!Your `0Fairy `!appears and says, "Looks like you managed to
  74.         @writeln   `!get yourself killed!"  He taps you with a little wand,
  75.         @writeln   `!and then flies away.
  76.         @writeln
  77.  
  78.         @set &N10 to &Phx
  79.         @set &Pht to &N10           ; Restore the player to life.
  80.         @set &Pfa to false          ; Fairy is bye-bye now.
  81.         @set &Pdd to false          ; Reset Player to Alive status.
  82.  
  83.         @writeln   `0You have been `$HEALED. `#Try not to do anything else stupid
  84.         @writeln   `#today!  `%Wandering around the forest near death is `@NOT WISE,
  85.         @writeln   `%when there are nasty forest monsters and the `@Troll `%around!
  86.         @writeln
  87.       @end
  88.     @endif 2
  89.  @end
  90. @endif 1
  91. ; psst: one day, this lil bugger of a troll is going to try and make off
  92. ; with your weapon.. your armour? nah. it's hard enough to take off as it
  93. ; is. but not hard to grab your Spear of Gold and take off running...
  94. @hitakey
  95. @endquest
  96.  
  97.