12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- %msg all §bTutorial §rwurde geladen.;
- %addList tutoriallist;
- %addListElement tutoriallist rpg:-95:65:-9;
- %addListElement tutoriallist rpg:-93:65:-1;
- %loadEvent block-click;
- %loadEvent chat;
- %loadEvent physical-interact;
- @wait
- %wait;
- %if $event == chat goto checkargs;
- %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;
- %if $event == block-click && %checkForListElement tutoriallist $block-loc; == true goto show;
- %if $block-loc == rpg: -94:64:-10 || $block-loc == rpg:-95:64:-10 && $event == physical-interact && %getGlobalVar $player-name storystarted; != true goto startstory;
- %goto wait;
- @startstory
- %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.;
- %givequest $player-name insel1/region_insel1;
- %setGlobalVar $player-name storystarted true;
- %teleportplayer $player-name rpg:-97:64:-10;
- %goto wait;
- @cancel
- %setVar cancel true;
- %goto wait;
- @checkargs
- %if %getListElementAt args 0; == tutorial goto show;
- %goto wait;
- @show
- %menu $player-name Tutorial wait WORKBENCH §fKlassensystem null class SKULL_ITEM:1 §fQuestsystem null quest SIGN §fSidebar null sidebar;
- %goto wait;
- @class
- #%menu $player-name Klassensystem wait
- %goto wait;
- @quest
- %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;
- %goto wait;
- @story
- %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.;
- %goto wait;
- @sidebar
- %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;
- %goto wait;
- @energie
- %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.;
- %goto wait;
- @durst
- %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.;
- %goto wait;
- @kälte
- %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.;
- %goto wait;
- @mana
- %msg $player-name §bMana §ewird verwendet, um Skills zu benutzen, die man durch Klassen und Berufe erlernt.;
- %goto wait;
|