Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.39 KB | None | 0 0
  1. "Officer_Deck4 Assignment":
  2. type: assignment
  3.  
  4. actions:
  5. on assignment:
  6. - trigger name:chat toggle:true
  7. - trigger name:click toggle:true
  8. - trigger name:proximity toggle:true
  9. - trigger name:damage toggle:true
  10.  
  11. interact scripts:
  12. - 10 Officer_Deck4 Greeting
  13.  
  14.  
  15. 'Officer_Deck4 Greeting':
  16. type: interact
  17.  
  18. steps:
  19. 'Helping Newbies*':
  20. proximity trigger:
  21. entry:
  22. script:
  23. - lookclose toggle:true
  24. exit:
  25. script:
  26. - lookclose toggle:false
  27.  
  28. click trigger:
  29. script:
  30. - chat "Do you need any <aqua>help<white>?"
  31.  
  32. damage trigger:
  33. script:
  34. - chat "You're going to be spending time in the cells for that one day!"
  35.  
  36. chat trigger:
  37. 'help':
  38. trigger: '/help/'
  39. script:
  40. - chat "Good, you have to type the words in blue."
  41. - wait 1
  42. - chat "Do you <aqua>understand<white>?"
  43. 'understand':
  44. trigger: '/understand/'
  45. script:
  46. - chat "Good. This is your identification, don't lose it."
  47. - give i@IdentificationCard 'qty:1'
  48. - wait 2
  49. - execute as_server "manuadd <player.name> Citizen"
  50. - chat "I've also made you Citizen rank."
  51. - wait 1
  52. - chat "Take this too, you might find it useful."
  53. - scribe 'script:Citizen Arrivals'
  54. - zap 'step:Greet Player'
  55. 'yes':
  56. trigger: '/yes/'
  57. script:
  58. - chat "Yes what?"
  59. 'catch-all':
  60. trigger: '/REGEX:\w+/'
  61. script:
  62. - chat "What are you talking about?"
  63.  
  64. 'Greet Player':
  65. proximity trigger:
  66. entry:
  67. script:
  68. - lookclose toggle:true
  69. exit:
  70. script:
  71. - lookclose toggle:false
  72.  
  73. click trigger:
  74. script:
  75. - random 2
  76. - chat "Do you need more <aqua>identification<white>?"
  77. - chat "Do you need another <aqua>arrivals<white> guide?"
  78.  
  79. damage trigger:
  80. script:
  81. - chat "You're going to be spending time in the cells for that one day!"
  82.  
  83. chat trigger:
  84. 'arrivals':
  85. trigger: '/arrivals/'
  86. script:
  87. - chat "Here is another copy."
  88. - wait 1
  89. - scribe 'script:Death Star Arrivals'
  90. 'identification':
  91. trigger: '/identification/'
  92. script:
  93. - chat "Don't lose it this time!"
  94. - wait 1
  95. - give i@IdentificationCard 'qty:1'
  96. 'catch-all':
  97. trigger: '/REGEX:\w+/'
  98. script:
  99. - chat "What are you talking about?"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement