Advertisement
DarkSoul144

Text Utils Convert Template

Apr 25th, 2021 (edited)
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. Useful commands:
  2. * 1. !Page [pageId]
  3. * ex: !Page 1
  4. * 2. @ShowText(FaceName?, faceIndex?)
  5. * FaceName and faceIndex are optionals
  6. * ex: @ShowText()
  7. * ex: @ShowText(Actor1, 0)
  8. * After this show text command you should enter your text.
  9. * ex:
  10. * @ShowText()
  11. * "Hello world!"
  12. * "You're so beautiful tonight!"
  13. * 2. @ShowChoice("Choice Name 1", "Choice Name 2", ...)
  14. * ex:
  15. * @ShowChoice("Yes", "No")
  16. * Choice 1:
  17. * @ShowText()
  18. * "You chose Yes!"
  19. * @EndChoice
  20. * Choice 2:
  21. * @ShowText()
  22. * "You chose No!"
  23. * @EndChoice
  24. * !! The leading space is really important! Those are for the game to know that which command is in which branch.
  25. * 3. @EndPage
  26. * You must use this to end an event page.
  27. *
  28. * Check out this template for more details:
  29. -----------------------------------------------------
  30. !Page 0
  31. @ShowText()
  32. "Hi, Mark!"
  33. "How are you"
  34. @ShowText(Actor2, 0)
  35. "Hi Alexis!"
  36. @ShowText(Actor1, 0)
  37. "Do you want to join the party tonight?"
  38. @ShowChoice("Yes", "No")
  39. @Choice 1:
  40. @ShowText(Actor1, 0)
  41. "Great!"
  42. @ShowText(Actor2, 0)
  43. "What's time is it?"
  44. @ShowChoice("8 PM", "9 PM")
  45. @Choice 1:
  46. @ShowText(Actor2, 0)
  47. "Sound great!"
  48. @EndChoice
  49. @Choice 2:
  50. @ShowText(Actor2, 0)
  51. "Hmm, a bit late for me. But okay."
  52. @EndChoice
  53. @EndChoice
  54. @Choice 2:
  55. @ShowText(Actor1, 0)
  56. "Aw, that's bad."
  57. @EndChoice
  58. @ShowText(Actor2, 0)
  59. "Okay, bye!"
  60. @ShowText(Actor1, 0)
  61. "Bye!"
  62. @EndPage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement