diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-28 19:10:09 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-28 19:10:09 -0300 |
commit | 3937fe57ed66e3b9ffb33ec6eb64feac050cf5a4 (patch) | |
tree | 8e22ddf7a4ce66e8c081225bd71ff8629b0f4844 /npc | |
parent | ceef88b6da99bd98450632834f609250403c84f2 (diff) | |
download | serverdata-3937fe57ed66e3b9ffb33ec6eb64feac050cf5a4.tar.gz serverdata-3937fe57ed66e3b9ffb33ec6eb64feac050cf5a4.tar.bz2 serverdata-3937fe57ed66e3b9ffb33ec6eb64feac050cf5a4.tar.xz serverdata-3937fe57ed66e3b9ffb33ec6eb64feac050cf5a4.zip |
Add some lame excuse to Luca
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/luca.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/npc/003-1/luca.txt b/npc/003-1/luca.txt index 73cac9ef9..1e7221878 100644 --- a/npc/003-1/luca.txt +++ b/npc/003-1/luca.txt @@ -1,10 +1,19 @@ +// TMW2 script. // Author: // Saulc +// Jesusalva +// Description: +// Luca assings player a class. This may end up contradicting races, so expect core changes! 003-1,109,129,0 script Luca NPC_PLAYER,{ - -hello; + mesn; + if (BaseLevel < 20) mesq l("Hello there. I am looking for strong people, but you are not strong enough."); + if (BaseLevel < 20) close; + mesq l("I was looking for strong people, but I forgot what I was going to say when I meet them."); + next; + mesq l("Maybe later I remember and tell you, but don't count on that. I don't have a very good memory."); + close; OnInit: .@npcId = getnpcid(0, .name$); |