diff options
author | Reid Yaro <reidyaro@gmail.com> | 2013-03-09 02:55:25 +0000 |
---|---|---|
committer | Reid Yaro <reidyaro@gmail.com> | 2013-03-09 02:56:06 +0000 |
commit | eaea9a6fec6ff8c06b52ef0aa915ee252807fecc (patch) | |
tree | c23b3c0ff06ff424f5f733875613ef6664066c84 | |
parent | d1100d225ceb8d84fcfab0315e88a9f1929be6dc (diff) | |
download | clientdata-eaea9a6fec6ff8c06b52ef0aa915ee252807fecc.tar.gz clientdata-eaea9a6fec6ff8c06b52ef0aa915ee252807fecc.tar.bz2 clientdata-eaea9a6fec6ff8c06b52ef0aa915ee252807fecc.tar.xz clientdata-eaea9a6fec6ff8c06b52ef0aa915ee252807fecc.zip |
Add really basic WIP of the cookie master, no time to continue it yet, I push in case of future test.
-rw-r--r-- | npc/000-1/_import.txt | 1 | ||||
-rw-r--r-- | npc/000-1/cookiemaster.txt | 98 |
2 files changed, 99 insertions, 0 deletions
diff --git a/npc/000-1/_import.txt b/npc/000-1/_import.txt index bc2ddbec..679d7470 100644 --- a/npc/000-1/_import.txt +++ b/npc/000-1/_import.txt @@ -6,6 +6,7 @@ npc: npc/000-1/_warps.txt npc: npc/000-1/ale.txt npc: npc/000-1/astapolos.txt npc: npc/000-1/chest.txt +npc: npc/000-1/cookiemaster.txt npc: npc/000-1/couwan.txt npc: npc/000-1/darlin.txt npc: npc/000-1/fexil.txt diff --git a/npc/000-1/cookiemaster.txt b/npc/000-1/cookiemaster.txt new file mode 100644 index 00000000..dc8188a8 --- /dev/null +++ b/npc/000-1/cookiemaster.txt @@ -0,0 +1,98 @@ +// Evol scripts. +// Authors: +// Reid +// Description: +// Cookie NPC, beware, if you don't take your cookie she'll keep it! + +000-1.gat,97,50,0,1 script Cookie Master 319;2,{ + mesn; + mesq l("Hey! Adventurer! Do you enjoy your life on Aemil?"); + next; + + menu + l("Well actually..."), -, + l("I didn't see you in the ship, who're you?"), l_Presentation; + + mes ""; + mesn; + mesq l("Shht shht!"); + next; + mesq l("Don't tell me more, I know what you want... A cookie!"); + next; + + if ($@COOKIE_MASTER == 1), goto l_Reward; + + mesq l("Well I'm sorry... But these are restricted to a certain type of peoples..."); + next; + + menu + l("Why are you talking about... Cookies?"), -, + l("Your story seems..."), l_StorySeems; + l("That's not a place for a chef here."), l_PostPresentation; + + mesq l("Cookies are source of life."); + next; + mesq l("Cookies provide you strength, health and cuteness."); + next; + mesq l("Cookies are awesome, so do I."); + + close; + +l_StorySeems: + mes ""; + mesn; + mesq l("What does it seems?"); + next; + + menu + l("Interesting. How can I have one of these cookie?"), -, + l("Really stupid."), l_Kick; + + mes ""; + mesn; + mesq g(l("Mister is curious?"), l("Madam is curious?")); + next; + mesq l("If you want to be one of those who can ask for a cookie..."); + next; + mesq l("You'll first need to help my friends."); + next; + mesq l("It's them who tell me who can and who can't have a cookie."); + + menu + l("Who're these friends?"), -; + + mes ""; + mesn; + mesq l("Shht shht!"); + next; + mesq l("Don't say it too HEEEEEEEEEEEEERRRRRRRRRRRRRRRRRRRRRREEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE"); + + close; + + +l_PostPresentation: + mes ""; + mesn; + mesq l(""); + + close; + +l_Presentation: + mes ""; + mesn; + mesq l(""); + + close; + +l_Reward: + set $@COOKIE_MASTER, 0; + + mes ""; + mesn; + mesq l(""); + + close; + +l_Kick: + close; +}
\ No newline at end of file |