diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-12-21 01:48:46 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2009-12-21 01:48:46 +0000 |
commit | 5f9da85571ad494cf3549ce38b170efda21dc7c7 (patch) | |
tree | a21f552f2c24e020634691a76a920d79158d6ed4 /npc/instances | |
parent | c66aadfa49e76064955b3c025d80580e53a71c5a (diff) | |
download | hercules-5f9da85571ad494cf3549ce38b170efda21dc7c7.tar.gz hercules-5f9da85571ad494cf3549ce38b170efda21dc7c7.tar.bz2 hercules-5f9da85571ad494cf3549ce38b170efda21dc7c7.tar.xz hercules-5f9da85571ad494cf3549ce38b170efda21dc7c7.zip |
* More Orc Instance updates, and some new 13.1 quests. :x
- Disabled an exploit related to the orc hero spawn.
- Corrected the variable type for party leader name.
- Commented out the assassin pub NPCs in quests_morroc.
- Cat Hand Agents no longer ignore you with 300+ points.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14211 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/instances')
-rw-r--r-- | npc/instances/OrcsMemory.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/instances/OrcsMemory.txt b/npc/instances/OrcsMemory.txt index 9c50c41b7..d9ca429cf 100644 --- a/npc/instances/OrcsMemory.txt +++ b/npc/instances/OrcsMemory.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== -//= 1.2 +//= 1.3 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -24,6 +24,8 @@ //= point on iRO. //= 1.2 More bugfixes, mostly typos. :O (bugreport:3944) [L0ne_W0lf] //= Fixed some varaibles (types/values) as well. +//= 1.3 Disabled an exploit related to the orc hero spawn. [L0ne_W0lf] +//= Corrected the variable type for party leader name. //============================================================ // Entrance @@ -36,7 +38,7 @@ gef_fild10,242,202,0 script Dimensional Gorge Piece 406,{ set .@party_id,getcharid(1); set .@ins_mas,getpartyleader(.@party_id,2); set .@p_name$,getpartyname(.@party_id); - set .@p_reader,strcharinfo(0); + set .@p_reader$,strcharinfo(0); set .@md_name$,"Orc's Memory"; getpartymember(.@party_id); @@ -54,7 +56,7 @@ gef_fild10,242,202,0 script Dimensional Gorge Piece 406,{ set .@instance, instance_create(.@md_name$, .@party_id); if (.@instance < 0) { mes "Party Name: "+.@p_name$+""; - mes "Party Leader: "+.@p_reader+""; + mes "Party Leader: "+.@p_reader$+""; mes "^0000ff"+.@md_name$+" ^000000 - Reservation Failed."; close; } @@ -1246,7 +1248,7 @@ OnEnable: end; OnContinue: - areamonster "2@orcs",117,61,129,73,"Depraved Orc Spirit",1983,1,instance_npcname("#Mobs Control", instance_id())+"::OnMyMobDead3"; + //areamonster "2@orcs",117,61,129,73,"Depraved Orc Spirit",1983,1,instance_npcname("#Mobs Control", instance_id())+"::OnMyMobDead3"; donpcevent instance_npcname("#Boss Control", instance_id())+"::OnEnable"; enablenpc instance_npcname("#Warp2-3", instance_id()); initnpctimer; |