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/payg/payg_kafras.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/payg/payg_kafras.txt')
-rw-r--r-- | npc/guild/payg/payg_kafras.txt | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/npc/guild/payg/payg_kafras.txt b/npc/guild/payg/payg_kafras.txt index 992668fdc..92cd0a86b 100644 --- a/npc/guild/payg/payg_kafras.txt +++ b/npc/guild/payg/payg_kafras.txt @@ -4,62 +4,63 @@ //= jAthena - kalen (1.0) //= 1.1 by Akaru, ho|yAnge|X, and Valaris //== Current Version: ======================================== -//= 1.2 +//= 1.3 //== Compatible With: ======================================== //= eAthena 0.1+; RO Episode 4+ //== Description: ============================================ -//= Provides Kafra services for guild members of Payon Castles. +//= Provides Kafra Staffs for guild members of Payon Castles. //= Used in conjuction with function F_Kafra. //== Additional Comments: ================================== //= v1.2 Optimized with functions.[kobra_k88] +//= v1.3 Changed "Kafra Service" to "Kafra Staff" [L0ne_W0lf] //============================================================ // Castle 1 ============= -payg_cas01,128,58,3 script Kafra Service#Py01 117,{ +payg_cas01,128,58,3 script Kafra Staff#Py01 117,{ callfunc "F_GKafra", "payg_cas01", "Payon"; end; OnRecvCastlePy01: - if (GetCastleData("payg_cas01",9) < 1) disablenpc "Kafra Service#Py01"; + if (GetCastleData("payg_cas01",9) < 1) disablenpc "Kafra Staff#Py01"; end; } // Castle 2 ============= -payg_cas02,22,275,5 script Kafra Service#Py02 117,{ +payg_cas02,22,275,5 script Kafra Staff#Py02 117,{ callfunc "F_GKafra", "payg_cas02", "Payon"; end; OnRecvCastlePy02: - if (GetCastleData("payg_cas02",9) < 1) disablenpc "Kafra Service#Py02"; + if (GetCastleData("payg_cas02",9) < 1) disablenpc "Kafra Staff#Py02"; end; } // Castle 3 ============= -payg_cas03,9,263,5 script Kafra Service#Py03 117,{ +payg_cas03,9,263,5 script Kafra Staff#Py03 117,{ callfunc "F_GKafra", "payg_cas03", "Payon"; end; OnRecvCastlePy03: - if (GetCastleData("payg_cas03",9) < 1) disablenpc "Kafra Service#Py03"; + if (GetCastleData("payg_cas03",9) < 1) disablenpc "Kafra Staff#Py03"; end; } // Castle 4 ============= -payg_cas04,40,235,1 script Kafra Service#Py04 117,{ +payg_cas04,40,235,1 script Kafra Staff#Py04 117,{ callfunc "F_GKafra", "payg_cas04", "Payon"; end; OnRecvCastlePy04: - if (GetCastleData("payg_cas04",9) < 1) disablenpc "Kafra Service#Py04"; + if (GetCastleData("payg_cas04",9) < 1) disablenpc "Kafra Staff#Py04"; end; } // Castle 5 ============= -payg_cas05,276,227,1 script Kafra Service#Py05 117,{ +payg_cas05,276,227,1 script Kafra Staff#Py05 117,{ callfunc "F_GKafra", "payg_cas05", "Payon"; end; OnRecvCastlePy05: - if (GetCastleData("payg_cas05",9) < 1) disablenpc "Kafra Service#Py05"; + if (GetCastleData("payg_cas05",9) < 1) disablenpc "Kafra Staff#Py05"; end; } |