diff options
author | Haru <haru@dotalux.com> | 2017-10-21 00:16:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-21 00:16:59 +0200 |
commit | 0b1a9d52a5cbf0338ce53eabc0cd446380c517ea (patch) | |
tree | f2344ef7f2f55f80c18197c686e21ce89acc80d4 | |
parent | 53b6fbfbcad4624f3efa096cb6ee1a785113dc4b (diff) | |
parent | 875d84f691ab3f8c111ee555ccc85ff231897fe5 (diff) | |
download | hercules-0b1a9d52a5cbf0338ce53eabc0cd446380c517ea.tar.gz hercules-0b1a9d52a5cbf0338ce53eabc0cd446380c517ea.tar.bz2 hercules-0b1a9d52a5cbf0338ce53eabc0cd446380c517ea.tar.xz hercules-0b1a9d52a5cbf0338ce53eabc0cd446380c517ea.zip |
Merge pull request #1864 from Miniack/stable
Open Storage for Doram
-rw-r--r-- | npc/kafras/functions_kafras.txt | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/npc/kafras/functions_kafras.txt b/npc/kafras/functions_kafras.txt index e1e547174..90334cc6e 100644 --- a/npc/kafras/functions_kafras.txt +++ b/npc/kafras/functions_kafras.txt @@ -216,14 +216,23 @@ function script F_KafStor { // Niflheim Specific Message if (getarg(2) == 1) { mes "^666666S-s-ssoooorry,"; - mes "y-you're a-a-aaaa"; - mes "Nooviiice... N-neeeds"; - mes "B-basic sssskill l-level 6...^000000"; + if (Class == Job_Summoner) { + mes "y-you n-neeed"; + mes "N-new b-basic sssskill...^000000"; + } else { + mes "y-you're a-a-aaaa"; + mes "Nooviiice... N-neeeds"; + mes "B-basic sssskill l-level 6...^000000"; + } return; } mes "I'm sorry, but you"; - mes "need the Novice's"; - mes "Basic Skill Level 6 to"; + if (Class == Job_Summoner) { + mes "need the New Basic Skill to"; + } else { + mes "need the Novice's"; + mes "Basic Skill Level 6 to"; + } mes "use the Storage Service."; return; } |