diff options
author | Dastgir <dastgirpojee@rocketmail.com> | 2015-12-10 15:32:29 +0530 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:13:35 +0100 |
commit | ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac (patch) | |
tree | cf40d3e0bbc9b312e988881b203e96eb515e8299 /npc/other/monster_race.txt | |
parent | 3aa8abd848f1570d514148b311b25871378d2e2d (diff) | |
download | hercules-ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac.tar.gz hercules-ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac.tar.bz2 hercules-ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac.tar.xz hercules-ecb934ebba6ac3fbd35d8816c1802f0d134ef4ac.zip |
ItemID to Constant: other Folder
Diffstat (limited to 'npc/other/monster_race.txt')
-rw-r--r-- | npc/other/monster_race.txt | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/npc/other/monster_race.txt b/npc/other/monster_race.txt index 4f2d27395..24de8a1f8 100644 --- a/npc/other/monster_race.txt +++ b/npc/other/monster_race.txt @@ -217,7 +217,7 @@ p_track01,73,22,1 script Ticket Helper#single 4_M_HUMAN_02,{ mes "until the start of the race is"; mes "announced. If the monster you"; mes "picked wins, then please use this ticket to redeem your prize."; - getitem 7514,1; //Monster_Ticket + getitem Monster_Ticket,1; monster_race_1 = .@m; close; } @@ -379,9 +379,9 @@ p_track01,67,45,5 script Medal Distributor#single 4_F_RACING,{ mes "exchange these with"; mes "Wayne in Hugel for some"; mes "interesting items. Thank you~"; - delitem 7514,1; //Monster_Ticket + delitem Monster_Ticket,1; monster_race_1 = 0; - getitem 7515,4; //Marvelous_Medal + getitem Marvelous_Medal,4; close; } mes "[Medal Distributor]"; @@ -516,7 +516,7 @@ p_track01,76,36,1 script Exit Guide#single 4_M_NFMAN,{ mes "ready to leave."; close; } - if (!countitem(7514)) { + if (!countitem(Monster_Ticket)) { mes "[Exit Guide]"; mes "Thank you for"; mes "your patronage, and"; @@ -530,7 +530,7 @@ p_track01,76,36,1 script Exit Guide#single 4_M_NFMAN,{ mes "Thank you for your patronage,"; mes "and I hope you enjoy your time"; mes "here in the Monster Race Arena."; - delitem 7514,1; //Monster_Ticket + delitem Monster_Ticket,1; } monster_race_1 = 0; close2; @@ -628,7 +628,7 @@ hugel,58,72,6 script Eckar Ellebird#single 4_M_NFMAN,{ mes "with an expired Racing Ticket?"; mes "Well, I better get rid of it for you before it can get mixed up"; mes "with your new Racing Ticket."; - delitem 7514,1; //Monster_Ticket + delitem Monster_Ticket,1; next; if ($@mon_time_1_1 == 1) { if (Zeny < 2000) { @@ -1218,13 +1218,13 @@ hugel,62,69,1 script Eckar Erenes#double 4_M_NFMAN,{ mes "2,000 zeny entrance fee. "; close; } - if (countitem(7514)) { + if (countitem(Monster_Ticket)) { mes "[Eckar Erenes]"; mes "Hm? What are you doing"; mes "with an expired Racing Ticket?"; mes "Well, I better get rid of it for you before it can get mixed up"; mes "with your new Racing Ticket."; - delitem 7514,1; //Monster_Ticket + delitem Monster_Ticket,1; next; if ($@mon_time_2_1 == 1) { mes "[Eckar Erenes]"; @@ -1624,7 +1624,7 @@ p_track02,67,45,5 script Medal Distributor#medal 4_F_RACING,{ mes "your game ticket here for"; mes "some Prize Medals."; next; - if (!countitem(7514)) { + if (!countitem(Monster_Ticket)) { mes "[Medal Distributor]"; mes "Please remember that you can"; mes "only exchange winning Game"; @@ -1659,10 +1659,10 @@ p_track02,67,45,5 script Medal Distributor#medal 4_F_RACING,{ mes "medals for items, please"; mes "visit Wayne in Hugel. We hope"; mes "you enjoyed the Monster Race~"; - delitem 7514,1; //Monster_Ticket + delitem Monster_Ticket,1; monster_race_2_1 = 7; monster_race_2_2 = 7; - getitem 7515,15; //Marvelous_Medal + getitem Marvelous_Medal,15; close; } mes "[Medal Distributor]"; @@ -1722,7 +1722,7 @@ p_track02,76,38,1 script Exit Guide#double 4_M_NFMAN,{ mes "ready to leave."; close; } - if (!countitem(7514)) { + if (!countitem(Monster_Ticket)) { mes "[Exit Guide]"; mes "Thank you for"; mes "your patronage, and"; @@ -1736,7 +1736,7 @@ p_track02,76,38,1 script Exit Guide#double 4_M_NFMAN,{ mes "Thank you for your patronage,"; mes "and I hope you enjoy your time"; mes "here in the Monster Race Arena."; - delitem 7514,1; //Monster_Ticket + delitem Monster_Ticket,1; } monster_race_2_1 = 0; monster_race_2_2 = 0; @@ -2335,7 +2335,7 @@ S_Reward: mes "*Phew* How's that?"; mes "Now do you see the"; mes "power of hope?"; - delitem 7515,1; //Marvelous_Medal + delitem Marvelous_Medal,1; if (RENEWAL_EXP) { if (BaseLevel < 21) getexp 110,0; else if ((BaseLevel > 20) && (BaseLevel < 31)) getexp 280,0; @@ -2397,7 +2397,7 @@ S_Reward: mes "Your mind will work on"; mes "whatever you feed it."; mes "Placebos and psychosomatic symptoms-- it all ties together."; - delitem 7515,1; //Marvelous_Medal + delitem Marvelous_Medal,1; if (RENEWAL_EXP) { if (Class == Job_Novice) { getexp 0,15; |