diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-25 20:22:54 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-25 20:22:54 +0000 |
commit | b9d1f960e3f6261084b410abc3bd7ec786366480 (patch) | |
tree | aab1d3cce9c9fce1fbfb6dcec56663764c325f5b /npc/guild/gldfunc_kafra.txt | |
parent | d9b39777045e3bcd47e7eb2d6c157be26fb1c34d (diff) | |
download | hercules-b9d1f960e3f6261084b410abc3bd7ec786366480.tar.gz hercules-b9d1f960e3f6261084b410abc3bd7ec786366480.tar.bz2 hercules-b9d1f960e3f6261084b410abc3bd7ec786366480.tar.xz hercules-b9d1f960e3f6261084b410abc3bd7ec786366480.zip |
* Rather large Kafra update. (May need further testing)
- Updated a good portion of the kafra functions.
- Added proper dialog for most functions.
- Updated guild Kafras and some o f their locations.
* Updated all Guide NPCs. They are now mostly 100% official.
- Renamed some of the old files to make them look better, IE: yun to juno.
- Added Kunlun and Ayotaya guides.
* Added the Einbech tool Dealer since it seemed to had gotten lost when I updated shops.
* Updated Dye Maker and Hair Dyer to official.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10810 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild/gldfunc_kafra.txt')
-rw-r--r-- | npc/guild/gldfunc_kafra.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/guild/gldfunc_kafra.txt b/npc/guild/gldfunc_kafra.txt index bb967cb58..2c18d85c5 100644 --- a/npc/guild/gldfunc_kafra.txt +++ b/npc/guild/gldfunc_kafra.txt @@ -18,6 +18,8 @@ //===== Additional Comments: ================================= //= v1.2: All Guild kafra scripts use this function. [kobra_k88] //= 1.2a Added extra check for Contract with Kafra Guild Skill [Lupus] +//= 1.2 Kafra's not charge for use of Cart Rentals [L0ne_W0lf] +//= Updated dialog and names. //============================================================ function script F_GKafra { @@ -26,13 +28,13 @@ function script F_GKafra { if (getcharid(2) == @GID && getgdskilllv(@GID,10001)) goto L_StartG; mes "[Kafra Service]"; - mes "I am here to serve only ^5533FF" + GetGuildName(@GID) + "^000000 members. Please use different Kafra Service. Thank you."; + mes "I am contracted to provide service only for the ^ff0000" + GetGuildName(@GID) + "^000000 Guild. Please use another Kafra Corporation staff member around here. I am Sorry for your inconvenience."; cutin "",255; close; L_StartG: - set @wrpP[0], 0; + set @wrpP[0], 200; set @wrpD$[0], getarg(1); - setarray @wrpC$[0], @wrpD$[0], "Cancel", "", "", "",""; - callfunc "F_Kafra",2,0,0; + setarray @wrpC$[0], @wrpD$[0]+" ^880000"+@wrpP[0]+"^000000 z", "Cancel", "", "", "",""; + callfunc "F_Kafra",2,0,0,0,800; end; } |