Advertisement
Guest User

Untitled

a guest
May 21st, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.64 KB | None | 0 0
  1. <<widget "NewCustomerMassageDialog">>\
  2. <<switch $Conversation>>\
  3. <<case "init">>\
  4. <<append "#conversation">>\
  5. <div class="conversation-border">\
  6. <span class="profile-border">\
  7. <<showImage "images/Jobs/Masseur/Woman/brunette_client_portrait.jpg" "height=\"100\" width=\"90\"">>
  8. </span>
  9. (Female Customer Name)
  10. <hr>
  11. Hi, I'm (Female Customer Name), are you my massuse for today?
  12. </div>\
  13. <</append>>\
  14. <<set _answerYes to "Yes, I'm $player.name, how can I help?">>
  15. <<capture _answerYes>>\
  16. <<link _answerYes>>\
  17. <<append "#conversation">>\
  18. <div class="conversation-border">\
  19. <span class="profile-border">\
  20. <<showImage "images/Faces/MainCharacter.jpg" "height=\"100\" width=\"90\"">>
  21. </span>
  22. $player.name
  23. <hr>
  24. _answerYes
  25. </div>
  26. <</append>>\
  27. <<set $Conversation = "Hello Customer">>\
  28. <<NewCustomerMassageDialog>>
  29. <</link>>\
  30. <</capture>>\
  31. <<set _answerNo to "No, I'm $player.name and I don't work here!">>
  32. <<capture _answerNo>>\
  33. <<link _answerNo>>\
  34. <<append "#conversation">>\
  35. <div class="conversation-border">\
  36. <span class="profile-border">\
  37. <<showImage "images/Faces/MainCharacter.jpg" "height=\"100\" width=\"90\"">>
  38. </span>
  39. $player.name
  40. <hr>
  41. _answerNo
  42. </div>
  43. <</append>>\
  44. <<set $Conversation = "Oops">>\
  45. <<NewCustomerMassageDialog>>
  46. <</link>>\
  47. <</capture>>\
  48. <<case "Hello Customer">>\
  49. <<append "#conversation">>\
  50. <div class="conversation-border">\
  51. <span class="profile-border">\
  52. <<showImage "images/Jobs/Masseur/Woman/brunette_client_portrait.jpg" "height=\"100\" width=\"90\"">>
  53. </span>
  54. (Female Customer Name)
  55. <hr>
  56. Nice to meet you $player.name!<br>
  57. I'd like a back massage!
  58. </div>
  59. <</append>>\
  60. <<set _answerYesMassage to "Sure thing, take off your cloths and lie down here, I'll be back in a minute">>
  61. <<capture _answerYesMassage>>\
  62. <<link _answerYesMassage>>\
  63. <<append "#conversation">>\
  64. <div class="conversation-border">\
  65. <span class="profile-border">\
  66. <<showImage "images/Faces/MainCharacter.jpg" "height=\"100\" width=\"90\"">>
  67. </span>
  68. $player.name
  69. <hr>
  70. _answerYesMassage
  71. </div>
  72. [[You carry on with your business.|HomeBedroom]]
  73. <</append>>\
  74. <</link>>\
  75. <</capture>>\
  76. <<set _answerNoMassage to "I'm afraid, my shift is over. I'm sure my collegues can help you.">>
  77. <<capture _answerNoMassage>>\
  78. <<link _answerNoMassage>>\
  79. <<append "#conversation">>
  80. <div class="conversation-border">\
  81. <span class="profile-border">\
  82. <<showImage "images/Faces/MainCharacter.jpg" "height=\"100\" width=\"90\"">>
  83. </span>
  84. $player.name
  85. <hr>
  86. _answerNoMassage
  87. </div>
  88. [[You carry on with your business.|HomeBedroom]]
  89. <</append>>\
  90. <</link>>\
  91. <</capture>>\
  92. <<case "Oops">>\
  93. <<append "#conversation">>\
  94. <div class="conversation-border">\
  95. <span class="profile-border">\
  96. <<showImage "images/Jobs/Masseur/Woman/brunette_client_portrait.jpg" "height=\"100\" width=\"90\"">>
  97. </span>
  98. (Female Customer Name)
  99. <hr>
  100. Sorry, my mistake! I'll be going now.
  101. </div>
  102. [[You carry on with your business.|HomeBedroom]]
  103. <</append>>\
  104. <<default>>\
  105. @@color:red;Error: "$Conversation" isn't a valid conversation value.@@
  106. <</switch>>\
  107. <</widget>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement