Fixed Juperos Elevator not working after failing once.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@12405 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
L0ne_W0lf 2008-03-20 20:01:56 +00:00
parent f28643cfaa
commit f92ed5334f
2 changed files with 11 additions and 9 deletions

View File

@ -1,6 +1,7 @@
Date Added Date Added
====== ======
2008/03/20 2008/03/20
* Rev. 12405 Fixed Juperos Elevator not working after failing once. [L0ne_W0lf]
* Rev. 12404 Added Gym Pass NPC (disabled by default.) [L0ne_W0lf] * Rev. 12404 Added Gym Pass NPC (disabled by default.) [L0ne_W0lf]
- Enabled Auction NPCs now that the auction system is implemented. - Enabled Auction NPCs now that the auction system is implemented.
* Rev. 12403 Updated Umbala npcs, quests, and warps. [L0ne_W0lf] * Rev. 12403 Updated Umbala npcs, quests, and warps. [L0ne_W0lf]

View File

@ -3,7 +3,7 @@
//===== By =================================================== //===== By ===================================================
//= MasterOfMuppets //= MasterOfMuppets
//===== Version ============================================== //===== Version ==============================================
//= 1.3b //= 1.
//===== Compatible With ====================================== //===== Compatible With ======================================
//= eAthena SVN //= eAthena SVN
//===== Description ========================================== //===== Description ==========================================
@ -18,6 +18,7 @@
//= event-driven story progressive NPCs. Optimization needed. //= event-driven story progressive NPCs. Optimization needed.
//= 1.3a Adjusted the elevafor timer. (132000 -> 142000) [L0ne_W0lf] //= 1.3a Adjusted the elevafor timer. (132000 -> 142000) [L0ne_W0lf]
//= 1.3b Minor updates to juperos elevator NPCs. [L0ne_W0lf] //= 1.3b Minor updates to juperos elevator NPCs. [L0ne_W0lf]
//= 1.4 Fixed Elevator not working after failing once. [L0ne_W0lf]
//============================================================ //============================================================
yuno_in04,190,125,4 script Scholar 700,{ yuno_in04,190,125,4 script Scholar 700,{
@ -4695,10 +4696,10 @@ OnTimer59000:
if (getmapusers("jupe_ele") == 0) { if (getmapusers("jupe_ele") == 0) {
set $@JupeElevatorInUse2,5; set $@JupeElevatorInUse2,5;
killmonsterall "jupe_ele"; killmonsterall "jupe_ele";
disablenpc "Guard-1#ufe"; donpcevent "Guard-1#ufe::OnDisable";
disablenpc "Guard-2#ufe"; donpcevent "Guard-2#ufe::OnDisable";
disablenpc "Guard-3#ufe"; donpcevent "Guard-3#ufe::OnDisable";
disablenpc "Guard-4#ufe"; donpcevent "Guard-4#ufe::OnDisable";
stopnpctimer; stopnpctimer;
set $@JupeElevatorInUse2,0; set $@JupeElevatorInUse2,0;
set $@JupeElevatorInUse,0; set $@JupeElevatorInUse,0;
@ -4709,10 +4710,10 @@ OnTimer59000:
OnTimer120000: OnTimer120000:
killmonsterall "jupe_ele"; killmonsterall "jupe_ele";
disablenpc "Guard-1#ufe"; donpcevent "Guard-1#ufe::OnDisable";
disablenpc "Guard-2#ufe"; donpcevent "Guard-2#ufe::OnDisable";
disablenpc "Guard-3#ufe"; donpcevent "Guard-3#ufe::OnDisable";
disablenpc "Guard-4#ufe"; donpcevent "Guard-4#ufe::OnDisable";
mapannounce "jupe_ele","In the end, you can't even overcome your inner fear...",bc_map,"0xFF0000"; mapannounce "jupe_ele","In the end, you can't even overcome your inner fear...",bc_map,"0xFF0000";
end; end;