diff options
author | Saulc <lucashelaine14@gmail.com> | 2018-01-13 20:50:42 +0100 |
---|---|---|
committer | Saulc <lucashelaine14@gmail.com> | 2018-01-13 20:50:42 +0100 |
commit | 20df2abc1aca00d6aa5dc78347133890f36b32f3 (patch) | |
tree | 4ad4a8bb8b0605473a702e314799a4626347721a /npc/001-2-22/note.txt | |
download | serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.gz serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.bz2 serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.tar.xz serverdata-20df2abc1aca00d6aa5dc78347133890f36b32f3.zip |
Initial commit
Diffstat (limited to 'npc/001-2-22/note.txt')
-rw-r--r-- | npc/001-2-22/note.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/npc/001-2-22/note.txt b/npc/001-2-22/note.txt new file mode 100644 index 000000000..b2560503e --- /dev/null +++ b/npc/001-2-22/note.txt @@ -0,0 +1,33 @@ +// Evol scripts. +// Author: +// Vasily_Makarov +// Description: +// + +001-2-22,31,31,0 script Note#001-2-22 NPC_DAN_NOTE,{ + mesn; + mesq l("This note was left by somebody."); + next; + mesq l("What do you want to do with it?"); + + menu + l("Read it."), L_Content, + l("Leave it."), -; + close; + +L_Content: + mesn; + mes "\"" + l("Dear sister,"); + mes l("In a couple of days, we will finally reach Artis."); + next; + + mes l("I will send you this letter as soon as I arrive."); + mes l("Don't worry sister, I didn't forget you."); + next; + + mes l("I would like to come back home when the days are better."); + mes l("And when we have enough money for ourselves without needing anybody else."); + + mes l("Sincerely yours, Dan.") + "\""; + close; +} |