diff options
author | samuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-27 12:41:13 +0000 |
---|---|---|
committer | samuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-27 12:41:13 +0000 |
commit | 00864187e9c93ce0059ad9f3fa67bfae7184dc25 (patch) | |
tree | 4e641740cf802f06d23a7d6591b611f7e522fa66 /npc/other/gympass.txt | |
parent | 6b97414d3f91999512537eb3878057f381005e58 (diff) | |
download | hercules-00864187e9c93ce0059ad9f3fa67bfae7184dc25.tar.gz hercules-00864187e9c93ce0059ad9f3fa67bfae7184dc25.tar.bz2 hercules-00864187e9c93ce0059ad9f3fa67bfae7184dc25.tar.xz hercules-00864187e9c93ce0059ad9f3fa67bfae7184dc25.zip |
* Continues replacing of specialeffect/2 numerics with constants.
* Corrected an If to continue the President's Quest. (bugreport:2276)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13241 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other/gympass.txt')
-rw-r--r-- | npc/other/gympass.txt | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/npc/other/gympass.txt b/npc/other/gympass.txt index 1d4ae0c19..f5bf8a320 100644 --- a/npc/other/gympass.txt +++ b/npc/other/gympass.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Kisuka //===== Current Version: ===================================== -//= v1.1 +//= 1.2 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -12,6 +12,7 @@ //===== Additional Comments: ================================= //= 1.0 First version [L0ne_W0lf] //= 1.1 Fixed the NPC saying you "00" [L0ne_W0lf] +//= 1.2 Replaced effect numerics with constants. [Samuray22] //============================================================ payon,173,141,4 script Ripped Cabus#GymPass 899,{ @@ -75,13 +76,13 @@ payon,173,141,4 script Ripped Cabus#GymPass 899,{ mes "and try to feel the burn."; mes "Ready? Let's do this."; next; - specialeffect2 79; + specialeffect2 EF_EARTHSPIKE; next; - specialeffect2 372; + specialeffect2 EF_DEVIL; next; - specialeffect2 10; + specialeffect2 EF_COIN; next; - specialeffect2 62; + specialeffect2 EF_SIGHTRASHER; next; skill "ALL_INCCARRY",getskilllv("ALL_INCCARRY")+1,0; delitem 7776,1; @@ -122,13 +123,13 @@ payon,173,141,4 script Ripped Cabus#GymPass 899,{ mes "as muscle memory. It's won't take"; mes "as long to build 'em back up..."; next; - specialeffect2 79; + specialeffect2 EF_EARTHSPIKE; next; - specialeffect2 372; + specialeffect2 EF_DEVIL; next; - specialeffect2 10; + specialeffect2 EF_COIN; next; - specialeffect2 62; + specialeffect2 EF_SIGHTRASHER; next; skill 681,gympassmemory,0; mes "[Ripped]"; |