diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-04 01:11:21 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-06-04 01:11:21 +0000 |
commit | cf3ef84e5e0c09e2ff1f1683d8546a6822ba7693 (patch) | |
tree | e858229b6d91af5fee15849e6582d614435e1c3e /npc/guild/gefg/gefg_treas.txt | |
parent | 89d430b2c4d770d7d5c073710a21bd24df5f3f0c (diff) | |
download | hercules-cf3ef84e5e0c09e2ff1f1683d8546a6822ba7693.tar.gz hercules-cf3ef84e5e0c09e2ff1f1683d8546a6822ba7693.tar.bz2 hercules-cf3ef84e5e0c09e2ff1f1683d8546a6822ba7693.tar.xz hercules-cf3ef84e5e0c09e2ff1f1683d8546a6822ba7693.zip |
* Updated 2006 headgear quests to semi-official dialog.
* Various updates to the various guild Castle scripts.
- Added Guild Master Room protection. Further security so only the master of the current castle can enter the treasure room.
- Updated Guild Castle Flags again. Updated remaining dialogs to official.
- Updated a couple announces for when the Emperium breaks. Both are now up to par with iRO.
- Moved nguild to the events folder and commented it out, as it was a kRO event that was used twice. Updated .confs to reflect this change.
* Added the first class skill resetter into Prontera. She resets players under base level 40 who are first or expanded class.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10669 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/guild/gefg/gefg_treas.txt')
-rw-r--r-- | npc/guild/gefg/gefg_treas.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/npc/guild/gefg/gefg_treas.txt b/npc/guild/gefg/gefg_treas.txt index b514346ae..0e07a2669 100644 --- a/npc/guild/gefg/gefg_treas.txt +++ b/npc/guild/gefg/gefg_treas.txt @@ -40,6 +40,12 @@ gefg_cas01,152,117,0 script Switch#TresG01 111,{ end; } +// Treasure Room Protection ------------------------------------------------ +gefg_cas01,154,112,0 script ban_warp#16 -1,6,6,{ +OnTouch: + callfunc "F_TreasProtect", "gefg_cas01", "geffen",120,38; + end; +} //<================================ Castle 2 ================================>\\ @@ -66,6 +72,12 @@ gefg_cas02,145,115,0 script Switch#TresG02 111,{ callfunc "F_GldTreasSw", "gefg_cas02",12,67; } +// Treasure Room Protection ------------------------------------------------ +gefg_cas02,140,116,0 script ban_warp#17 -1,6,6,{ +OnTouch: + callfunc "F_TreasProtect", "gefg_cas02", "geffen",120,38; + end; +} //<================================= Castle 3 ===============================>\\ @@ -93,6 +105,12 @@ gefg_cas03,275,289,0 script Switch#TresG03 111,{ end; } +// Treasure Room Protection ------------------------------------------------ +gefg_cas03,271,290,0 script ban_warp#18 -1,6,6,{ +OnTouch: + callfunc "F_TreasProtect", "gefg_cas03", "geffen",120,38; + end; +} //<=============================== Castle 4 ================================>\\ @@ -120,6 +138,12 @@ gefg_cas04,117,123,0 script Switch#TresG04 111,{ end; } +// Treasure Room Protection ------------------------------------------------ +gefg_cas04,116,119,0 script ban_warp#19 -1,6,6,{ +OnTouch: + callfunc "F_TreasProtect", "gefg_cas04", "geffen",120,38; + end; +} //<================================ Castle 5 ================================>\\ @@ -146,3 +170,10 @@ gefg_cas05,149,107,0 script Switch#TresG05 111,{ callfunc "F_GldTreasSw", "gefg_cas05",70,53; close; } + +// Treasure Room Protection ------------------------------------------------ +gefg_cas05,144,110,0 script ban_warp#20 -1,6,6,{ +OnTouch: + callfunc "F_TreasProtect", "gefg_cas05", "geffen",120,38; + end; +} |