Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. var objects altar| antler| armor| arrow| armchair| bank| bar| basin| basket| baskets| battlefield| battleground| beam| bed| bench| Blankets| block| board| boards| bodies| bones| bonfire| book| bookcase| bottom| boulder| boulders| boxes| branches| bridge| brush| bucket| building| buildings| bumblebees| bushes| cabinet| cage| camp| campfire| candle| canopy| carcass| carpet| cart| chair| chalice| chandelier| chair| chest| chimney| circle| clearing| cliff| cloth| clumps| community| container| corpse| corpses| cot| couch| couches| counter| crack| Cracks| cracks| crate| cup| curtain| curtains| cut| debris| depression| desk| door| doorframe| fence| field| fields| Fields| firepit| flag| floor| flowers| foliage| footprints| forest| foundation| furniture| gate| grass| grasses| grasslands| Grasslands| graves| graveyard| groove| Grooves| grooves| ground| grove| growth| headstone| headstones| hearth| hill| hills| hillside| hole| holes| hollow| Hollows| hollows| hook| hut| huts| inn| iron| jar| knives| knots| lake| lamp| lean-to| leaves| limbs| list| logs| marker| markers| mat| meadow| moss| muck| mushrooms| needles| orb| pads| painting| paper| panel| passage| path| pebbles| pedestal| piles| pillow| pit| planks| plant| plants| platform| pole| pond| pool| portrait| posts| pot| puddles| pyre| rack| remains| riverbed| road| rock| rocks| rockslide| roots| route| rug| runner| saplings| sconce| screen| sentinels| settee| sheets| shelf| shelves| shield| shrine| shrubs| sideboard| sign| signs| skins| slab| slats| square| Stacks| stair| stairs| stalks| statue| statues| step| steps| stone| Stones| stones| stool| stove| stream| stuffing| stump| surface| swing| sword| swords| table| tapestry| tapestries| tent| tents| tools| torch| tower| toys| tracks| trail| trails| tree| trees| trellis| trunk| trunks| Twigs| twigs| undergrowth| utensils| vegetation| wall| walls| wardrobe| warehouses| weapons| weeds| well| willows| window | leanto| armor| washbin
  2. var increments first|second|third|fourth|fifth|sixth|seventh|eighth|ninth|tenth
  3. var number -1
  4.  
  5. #debug 5
  6.  
  7. roomcheck:
  8. var tempobjects %objects
  9. checking-room:
  10. var item nil
  11. if matchre("$roomdesc","%tempobjects") then gosub check-item-start $0
  12. if "%item" != "nil" then goto checking-room
  13. var tempobjects %objects
  14. checking-room2:
  15. var item nil
  16. if matchre("$roomobjs","%tempobjects") then gosub check-item $0
  17. if "%item" != "nil" then goto checking-room2
  18. echo Room Checked!
  19. exit
  20.  
  21. check-item-start:
  22. var item $0
  23.  
  24. check-item:
  25. math number add 1
  26. var increment %increments(%number)
  27. matchre check-item (You see nothing|There is nothing|cont)
  28. matchre check-in-item-start (I could not find|What were you)
  29. put look on %increment %item
  30. matchwait
  31.  
  32. check-in-item-start:
  33. var number -1
  34.  
  35. check-in-item:
  36. math number add 1
  37. var increment %increments(%number)
  38. matchre check-in-item (You see nothing|There is nothing|cont)
  39. matchre check-under-item-start (I could not find|What were you)
  40. put look in %increment %item
  41. matchwait
  42.  
  43. check-under-item-start:
  44. var number -1
  45.  
  46. check-under-item:
  47. math number add 1
  48. var increment %increments(%number)
  49. matchre check-under-item (You see nothing|There is nothing|cont)
  50. matchre check-behind-item-start (I could not find|What were you)
  51. put look under %increment %item
  52. matchwait
  53.  
  54. check-behind-item-start:
  55. var number -1
  56.  
  57. check-behind-item:
  58. math number add 1
  59. var increment %increments(%number)
  60. matchre check-behind-item (You see nothing|There is nothing|cont)
  61. matchre check-finished (I could not find|What were you)
  62. put look behind %increment %item
  63. matchwait
  64.  
  65. check-finished:
  66. eval tempobjects replace("%tempobjects", "%item", "pink bunnies of doom")
  67. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement