summaryrefslogtreecommitdiff
path: root/npc/other/arena/arena_aco.txt
diff options
context:
space:
mode:
authorAsheraf <acheraf1998@gmail.com>2016-08-29 17:40:13 +0100
committerhemagx <ibrahem.h.basyone@gmail.com>2016-09-02 04:56:00 +0200
commit0f1d0507eb95cf07ce7eb66d89ad9853938612e6 (patch)
tree57780b1ecc7c5ae125be1c89406f8db1e00a581b /npc/other/arena/arena_aco.txt
parent0f1d03f505fdc03533122db8ba19fa55f64f11b7 (diff)
downloadhercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.gz
hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.bz2
hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.tar.xz
hercules-0f1d0507eb95cf07ce7eb66d89ad9853938612e6.zip
change *strcharinfo to use constants
Diffstat (limited to 'npc/other/arena/arena_aco.txt')
-rw-r--r--npc/other/arena/arena_aco.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/npc/other/arena/arena_aco.txt b/npc/other/arena/arena_aco.txt
index a700ee1bb..0c46eea21 100644
--- a/npc/other/arena/arena_aco.txt
+++ b/npc/other/arena/arena_aco.txt
@@ -1135,7 +1135,7 @@ prt_are_in,25,31,3 script Staff#aco-2 1_F_02,{
mes "this, especially if you";
mes "broke some record, but";
mes "all I can do is restore your";
- mes "HP and SP for you, "+strcharinfo(0)+".";
+ mes "HP and SP for you, "+strcharinfo(PC_NAME)+".";
percentheal 100,100;
next;
mes "[Staff]";
@@ -1184,7 +1184,7 @@ prt_are_in,25,31,3 script Staff#aco-2 1_F_02,{
.@topchoaco = .@acotop_t % 60;
.@gapaco = .@acotop_t - .@record_timeaco;
mes "[Staff]";
- mes "^3131FF"+strcharinfo(0)+"^000000, right?";
+ mes "^3131FF"+strcharinfo(PC_NAME)+"^000000, right?";
mes "Hey, you did great! You";
mes "completed this Arena Battle";
mes "in "+.@record_minaco+" min and "+.@record_secaco+" seconds!";
@@ -1216,25 +1216,25 @@ prt_are_in,25,31,3 script Staff#aco-2 1_F_02,{
mes "Arena - Acolyte Class Record!";
if (BaseJob == Job_Acolyte) {
$arn_acotop = .@record_timeaco;
- $arn_acotopn$ = strcharinfo(0);
+ $arn_acotopn$ = strcharinfo(PC_NAME);
donpcevent "Vendigos::OnLineRec_aco";
}
else {
if (BaseLevel < 70) {
$arn_pritop60 = .@record_timeaco;
- $arn_pritopn60$ = strcharinfo(0);
+ $arn_pritopn60$ = strcharinfo(PC_NAME);
}
else if (BaseLevel < 80) {
$arn_pritop70 = .@record_timeaco;
- $arn_pritopn70$ = strcharinfo(0);
+ $arn_pritopn70$ = strcharinfo(PC_NAME);
}
else if (BaseLevel < 90) {
$arn_pritop80 = .@record_timeaco;
- $arn_pritopn80$ = strcharinfo(0);
+ $arn_pritopn80$ = strcharinfo(PC_NAME);
}
else {
$arn_pritop90 = .@record_timeaco;
- $arn_pritopn90$ = strcharinfo(0);
+ $arn_pritopn90$ = strcharinfo(PC_NAME);
}
donpcevent "Vendigos::OnLineRec_pri";
}
@@ -1368,35 +1368,35 @@ prt_are_in,25,31,3 script Staff#aco-2 1_F_02,{
next;
mes "[Staff]";
mes "Oooh... A brand new";
- mes "record. ^3131FF"+ strcharinfo(0)+"^000000, your";
+ mes "record. ^3131FF"+ strcharinfo(PC_NAME)+"^000000, your";
mes "name will now be listed in";
mes "the Time Force Battle Arena";
mes "Acolyte Class Records.";
mes "Congratulations~";
if (BaseJob == Job_Acolyte) {
$arn_acotop = .@record_timeaco;
- $arn_acotopn$ = strcharinfo(0);
+ $arn_acotopn$ = strcharinfo(PC_NAME);
donpcevent "#Vendigos::OnLineRec_aco";
}
else {
if (BaseLevel < 70) {
$arn_pritop60 = .@record_timeaco;
- $arn_pritopn60$ = strcharinfo(0);
+ $arn_pritopn60$ = strcharinfo(PC_NAME);
donpcevent "#Vendigos::OnLineRec_pri60";
}
else if (BaseLevel < 80) {
$arn_pritop70 = .@record_timeaco;
- $arn_pritopn70$ = strcharinfo(0);
+ $arn_pritopn70$ = strcharinfo(PC_NAME);
donpcevent "#Vendigos::OnLineRec_pri70";
}
else if (BaseLevel < 90) {
$arn_pritop80 = .@record_timeaco;
- $arn_pritopn80$ = strcharinfo(0);
+ $arn_pritopn80$ = strcharinfo(PC_NAME);
donpcevent "#Vendigos::OnLineRec_pri80";
}
else {
$arn_pritop90 = .@record_timeaco;
- $arn_pritopn90$ = strcharinfo(0);
+ $arn_pritopn90$ = strcharinfo(PC_NAME);
donpcevent "#Vendigos::OnLineRec_pri90";
}
}