diff options
Diffstat (limited to 'npc/other/gympass.txt')
-rw-r--r-- | npc/other/gympass.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/other/gympass.txt b/npc/other/gympass.txt index 249012b2a..50f7b18f7 100644 --- a/npc/other/gympass.txt +++ b/npc/other/gympass.txt @@ -67,7 +67,7 @@ payon,173,141,4 script Ripped Cabus#GymPass 4_M_HUMAN_02,{ mes "item carrying capacity ^FF000010 times^000000."; mes "So... Are you ready to sweat?"; next; - switch(select("Yes:No:Um, my workouts wore off.")) { + switch(select("Yes", "No", "Um, my workouts wore off.")) { case 1: if (gympassmemory < 10) { .@add_carry = gympassmemory + 1; @@ -80,13 +80,13 @@ payon,173,141,4 script Ripped Cabus#GymPass 4_M_HUMAN_02,{ mes "and try to feel the burn."; mes "Ready? Let's do this."; next; - specialeffect2 EF_EARTHSPIKE; + specialeffect(EF_EARTHSPIKE, AREA, playerattached()); next; - specialeffect2 EF_DEVIL; + specialeffect(EF_DEVIL, AREA, playerattached()); next; - specialeffect2 EF_COIN; + specialeffect(EF_COIN, AREA, playerattached()); next; - specialeffect2 EF_SIGHTRASHER; + specialeffect(EF_SIGHTRASHER, AREA, playerattached()); next; mes "[Ripped]"; mes "There, you should be able"; @@ -139,13 +139,13 @@ payon,173,141,4 script Ripped Cabus#GymPass 4_M_HUMAN_02,{ mes "as muscle memory. It's won't take"; mes "as long to build 'em back up..."; next; - specialeffect2 EF_EARTHSPIKE; + specialeffect(EF_EARTHSPIKE, AREA, playerattached()); next; - specialeffect2 EF_DEVIL; + specialeffect(EF_DEVIL, AREA, playerattached()); next; - specialeffect2 EF_COIN; + specialeffect(EF_COIN, AREA, playerattached()); next; - specialeffect2 EF_SIGHTRASHER; + specialeffect(EF_SIGHTRASHER, AREA, playerattached()); next; mes "[Ripped]"; mes "How about that?"; |