tutorial.txt 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. %msg all §bTutorial §rwurde geladen.;
  2. %addList tutoriallist;
  3. %addListElement tutoriallist rpg:-95:65:-9;
  4. %addListElement tutoriallist rpg:-93:65:-1;
  5. %loadEvent block-click;
  6. %loadEvent chat;
  7. %loadEvent physical-interact;
  8. @wait
  9. %wait;
  10. %if $event == chat goto checkargs;
  11. %if $block-loc == rpg:-93:64:-10 || $block-loc == rpg:-93:65:-10 || $block-loc == rpg:-96:64:-10 || $block-loc == rpg:-96:65:-10 && $event == block-click goto cancel;
  12. %if $event == block-click && %checkForListElement tutoriallist $block-loc; == true goto show;
  13. %if $block-loc == rpg: -94:64:-10 || $block-loc == rpg:-95:64:-10 && $event == physical-interact && %getGlobalVar $player-name storystarted; != true goto startstory;
  14. %goto wait;
  15. @startstory
  16. %speak $player-name §dStory §eDas Böse hat magische Künste erlernt und die Dorfbewohner heimgesucht. Bitte hilf ihnen, mit ihren alltäglichen Aufgaben zurechtzukommen und unterstütze sie im Kampf gegen das Böse.;
  17. %givequest $player-name insel1/region_insel1;
  18. %setGlobalVar $player-name storystarted true;
  19. %teleportplayer $player-name rpg:-97:64:-10;
  20. %goto wait;
  21. @cancel
  22. %setVar cancel true;
  23. %goto wait;
  24. @checkargs
  25. %if %getListElementAt args 0; == tutorial goto show;
  26. %goto wait;
  27. @show
  28. %menu $player-name Tutorial wait WORKBENCH §fKlassensystem null class SKULL_ITEM:1 §fQuestsystem null quest SIGN §fSidebar null sidebar;
  29. %goto wait;
  30. @class
  31. #%menu $player-name Klassensystem wait
  32. %goto wait;
  33. @quest
  34. %menu $player-name Questssystem wait BOOK §fStory null story AIR null null null AIR null null null AIR null null null AIR null null null AIR null null null AIR null null null AIR null null null WOOD_DOOR §FZurück null show;
  35. %goto wait;
  36. @story
  37. %msg $player-name §eDas Böse hat magische Künste erlernt und uns heimgesucht. Bitte hilf den Dorfbewohnern mit ihren alltäglichen Aufgaben zurechtzukommen und unterstütze sie im Kampf gegen das Böse.;
  38. %goto wait;
  39. @sidebar
  40. %menu $player-name Sidebar wait BED §fEnergie null energie POTION §fDurst null durst LEATHER_CHESTPLATE §fKälte null kälte PRISMARINE_CRYSTALS §fMana null mana AIR null null null AIR null null null AIR null null null AIR null null null WOOD_DOOR §FZurück null show;
  41. %goto wait;
  42. @energie
  43. %msg $player-name §bEnergie §efüllst du auf, indem du dich schlafen legst. Auf jeder Insel befindet sich ein Schiff mit einem Bett in der Kajüte.;
  44. %goto wait;
  45. @durst
  46. %msg $player-name §bDurst §everbraucht sich kaum und lässt sich sehr leicht wieder auffüllen. Hierzu trinke man einfach aus einer Wasserflasche oder stelle sich in einen Block mit Wasser.;
  47. %goto wait;
  48. @kälte
  49. %msg $player-name §bKälte §eist vor allem in Eisregionen zu spüren. Das Tragen von Rüstung hilft dir sicher für dein persönliches Wohlgefühl, genauso wie der Aufenthalt in Wüsten.;
  50. %goto wait;
  51. @mana
  52. %msg $player-name §bMana §ewird verwendet, um Skills zu benutzen, die man durch Klassen und Berufe erlernt.;
  53. %goto wait;