123456789101112131415161718 |
- %if %getGlobalVar $player-name schiff3; == true goto start;
- %q term;
- @start
- %msg all Nimm diese Angel und fang uns zum Abendessen einen Fisch.;
- %giveItemPlayer $player-name FISHING_ROD:0:1;
- %loadEvent fishing;
- @wait
- %wait;
- %if $event == fishing goto endQuest;
- %goto wait;
- @endQuest
- %setGlobalVar $player-name schiff4 true
- %setGlobalVar $player-name schiff3 false;
- %msg all Lass es dir schmecken.;
- %endQuest 2;
|