1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- %if %getGlobalVar $player-name schiff11; == true goto start;
- %q term;
- @start
- %msg all Hier hast du einen Holzstamm. Lege ihn auf die Feuerstelle und gehe zum Schiff. In der Kiste auf dem Bug findest du Materialien für ein Feuerzeug. Zünde damit das Holz an, damit wir unsere Kleider über dem Feuer trocknen können.;
- %loadEvent block-place;
- %giveItemPlayer $player-name LOG:3:1 Feuerholz %concatspace Platziere mich auf der Feuerstelle;;
- %setBlock $firelogloc AIR:0:1;
- %setBlock %modLoc $firelogloc 0 1 0; AIR:0:1;
- @wait1
- %wait;
- %if $event == block-place && $block-loc == $firelogloc && $block-type == LOG goto wood;
- %goto wait2;
- @wood
- %setVar cancel false;
- %unloadEvent block-place;
- %loadEvent block-click;
- @wait2
- %wait;
- %if $event == block-click && $block-loc == $firechestloc && $block-type == CHEST goto truechest;
- %if $event == block-click && $block-loc != $firechestloc && $block-type == CHEST goto falsechest;
- %goto wait2;
- @falsechest
- %msg all Das ist nicht die richtige Kiste.;
- %goto wait;
- @truechest
- %setVar cancel true;
- %loadEvent craft;
- %unloadEvent block-click;
- %giveItemPlayer $player-name FLINT:0:1;
- %giveItemPlayer $player-name IRON_INGOT:0:1;
- @wait3
- %wait;
- %if $event == craft && $item-type == FLINT_AND_STEEL goto craft;
- %goto wait3;
- @craft
- %unloadEvent craft;
- %loadEvent block-click;
- @wait4
- %wait;
- %if $event == block-click && $action == RIGHT_CLICK_BLOCK && $block-loc == $firelogloc goto endQuest;
- %goto wait4;
- @endQuest
- %setGlobalVar $player-name schiff12 true
- %setGlobalVar $player-name schiff11 false;
- %msg all Feuer. Es lodere wie die Wut von unzufriedenem Volke.;
- %endQuest 5;
|