diff options
author | jesusalva <cpntb1@ymail.com> | 2018-03-04 02:08:10 -0300 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-03-04 02:08:10 -0300 |
commit | 99e704482ebd9fbb4f286a674c25e18877c07513 (patch) | |
tree | f987fb1c2f7560d6203938c8857df438bba1e119 /npc/003-1/luca.txt | |
parent | 8e20c0ffaadf929bce5310e9632383aa3cfc2e13 (diff) | |
download | serverdata-99e704482ebd9fbb4f286a674c25e18877c07513.tar.gz serverdata-99e704482ebd9fbb4f286a674c25e18877c07513.tar.bz2 serverdata-99e704482ebd9fbb4f286a674c25e18877c07513.tar.xz serverdata-99e704482ebd9fbb4f286a674c25e18877c07513.zip |
Luca will give a basic skill to GMs at level 40 :D :w_:
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: |