diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-17 13:42:14 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-17 13:42:14 +0000 |
commit | c7b72fc94094e863763ecb3c4d8e818953925a2b (patch) | |
tree | bba8bfb16ac5203196efbd16ef666c60dad60937 /npc/warps/dungeons | |
parent | 1a7203bc63c86fdd69f5f9b0976e62a6a18dcdca (diff) | |
download | hercules-c7b72fc94094e863763ecb3c4d8e818953925a2b.tar.gz hercules-c7b72fc94094e863763ecb3c4d8e818953925a2b.tar.bz2 hercules-c7b72fc94094e863763ecb3c4d8e818953925a2b.tar.xz hercules-c7b72fc94094e863763ecb3c4d8e818953925a2b.zip |
- removed auto-attaching of player-run scripts in initnpctimer. You must use attachnpctimer!
- updated juperos elevator script to invoke attachnpctimer as it should be.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5643 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/warps/dungeons')
-rw-r--r-- | npc/warps/dungeons/juperos.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/warps/dungeons/juperos.txt b/npc/warps/dungeons/juperos.txt index 1882a3518..0542ffdbc 100644 --- a/npc/warps/dungeons/juperos.txt +++ b/npc/warps/dungeons/juperos.txt @@ -3,7 +3,7 @@ //===== By: ==================================================
//= Muad-Dib (1.0)
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena with independant npctimer support; RO Episode 8+
//===== Description: =========================================
@@ -13,6 +13,7 @@ //= 1.1 More temp warps to Juperos by Justin84 [Lupus]
//= 1.2 Justin84's fixed elevator scripts
//= 1.3 Fixed getting stuck when player relogs in. [Lance]
+//= 1.4 Added attachnpctimer to the initnpctimer calls. [Skotlex]
//============================================================
yuno_fild07.gat,207,175,0 warp jupwrp01 1,1,jupe_cave.gat,143,52
@@ -67,6 +68,7 @@ juperos_02.gat,129,150,0 script Juperos 111,{ jupe_ele.gat,41,45,0 script detectionUnit -1,20,20{
OnTouch:
+ attachnpctimer; //Attach player to this timer
initnpctimer;
end;
@@ -102,6 +104,7 @@ jupe_gate.gat,49,168,0 script Juperos Guard 111,{ mes "Are you sure you want to enter the Juperos Core?";
next;
if(select("Yes","No") == 1){
+ attachnpctimer;
initnpctimer;
soundeffect "jupe_warning.wav",0;
}
|