Guest User

Untitled

a guest
Jul 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. Main
  2. {
  3. questname "Instructions"
  4. version 1.0
  5. }
  6. state Begin
  7. {
  8. desc "Talk to Helper"
  9. action AddNpcText(3, "Greetings Titan. My job here is to help you with whatever you need help with. I will provide help for you at any instance when you press me.");
  10. rule TalkedToNpc(3) goto Help
  11. }
  12. state Questions
  13. {
  14. desc "Ask for your help"
  15. action AddNpcText(3, "So, below there are options that you may select that you are interested in listening. The one you press it, I will tell you all I know.");
  16. action AddNpcInput(3,1,"How to Play");
  17. action AddNpcInput(3,2,"What shall I do?");
  18. action AddNpcInput(3,3,"What\'s the story of the game?");
  19. rule InputNpc(1) goto HowToPlay
  20. rule InputNpc(2) goto ShallIdo
  21. rule InputNpc(3) goto Story
  22. }
  23. state HowToPlay
  24. {
  25. action AddNpcText(3, "So you wanna know how to play eh? Alright, I will teach you. Look, playing Titans World is very easy, all you have to do is use your Keyboard and sometimes your Mouse.");
  26. action AddNpcText(3, "To Attack a monster you press the CTRL button. To speak, you just type what you want and press ENTER.");
  27. action AddNpcText(3, "Let'\s say you want to put or take off a Armor. Go on to PAPERDOLL, and drag what you want to equip to its correct loaction, if you want to take it off simply to the inverse.");
  28. action AddNpcText(3, "If you want to TRADE an item with another player, RIGHT CLICK the player you want to trade with, and select TRADE.");
  29. action AddNpcText(3, "if you want to DROP or JUNK an item, just drag that item to the TWO BUTTONS located under the PAPERDOLL, and make your selection");
  30. action AddNpcText(3, "Good Luck on your Adventure Titan!");
  31. rule TalkedToNpc(3) goto Reset
  32. }
  33. state ShallIdo
  34. {
  35. action AddNpcText(3, "Your objective is to be the best Titan the world have ever seen, what I mean by that? Well, you need to be the richest one, the most powerful one, and the wiser one.");
  36. action AddNpcText(3, "You might be asking yourself how will you do that? It\'s simple, just Kill monsters, get the items they drop, Sell their Items and live your life with style! ");
  37. action AddNpcText(3, "Oh, and don\'t forget to level up a'lot!");
  38. action AddNpcText(3, "Good luck on your Adventure Titan!");
  39. rule TalkedToNpc(3) goto Reset
  40. }
  41. state Story
  42. {
  43. action AddNpcText(3, "The game Titans World is based on Greek Mythology facts, around the world of Titans you will find Quests and adventures that will tell you all different type of stories.");
  44. action AddNpcText(3, "But we have a beginning for this story.... The beginning of this story is.....");
  45. action AddNpcText(3, "You! You will live the story that the game will purpose to do. So every Person you meet on the world, don\'t mind pressing them, who knows a nice adventure might come up!");
  46. action AddNpcText(3, "Good luck on your adventure Titan!");
  47. rule TalkedToNpc(3) goto Reset
  48. }
  49.  
  50. state Reset
  51. {
  52. action Reset();
  53. }
Add Comment
Please, Sign In to add comment