diff options
Diffstat (limited to 'npc/003-1/luca.txt')
-rw-r--r-- | npc/003-1/luca.txt | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/npc/003-1/luca.txt b/npc/003-1/luca.txt index 1e7221878..0b3962d6c 100644 --- a/npc/003-1/luca.txt +++ b/npc/003-1/luca.txt @@ -8,11 +8,17 @@ 003-1,109,129,0 script Luca NPC_PLAYER,{ 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."); + if (BaseLevel < 40) mesq l("Hello there. I am looking for strong people, but you are not strong enough."); + if (BaseLevel < 40) close; + if (getskilllv(SM_BASH) >= 1) mesq l("Are you using my skill?"); + if (getskilllv(SM_BASH) >= 1) close; + if (!getgmlevel()) mesq l("Hey, you're strong! Congratulations!"); + if (!getgmlevel()) close; + mesq l("Hey, you are strong! But still, so, so GREEN! You're PATHETIC! I mean, look your skill list! Empty!"); next; - mesq l("Maybe later I remember and tell you, but don't count on that. I don't have a very good memory."); + // The last argument is duration: 0 - permanent 1- temporary. If omitted, defaults to 1. + skill(SM_BASH,1,0); + mesq l("Here, learn the ##BFalkon Punch##b. It is on Physical skills tab. You can drag it to the shortcut list. Thanks me later, man!"); close; OnInit: |