diff options
author | mc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-19 17:00:07 +0000 |
---|---|---|
committer | mc_cameri <mc_cameri@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-19 17:00:07 +0000 |
commit | 230c174da61cef240ab784bf7ca03c5fb8f99d89 (patch) | |
tree | de418240631c4ccad595d6609b8dbe1a37875a7d /src/map/mob.c | |
parent | 2f3700c455d58b0d02ac0507d67b647871777dff (diff) | |
download | hercules-230c174da61cef240ab784bf7ca03c5fb8f99d89.tar.gz hercules-230c174da61cef240ab784bf7ca03c5fb8f99d89.tar.bz2 hercules-230c174da61cef240ab784bf7ca03c5fb8f99d89.tar.xz hercules-230c174da61cef240ab784bf7ca03c5fb8f99d89.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@643 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index a2ddc9e99..27b2741c6 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -3907,7 +3907,7 @@ static int mob_readdb(void) mob_db[class].clothes_color=0; //Add for player monster dye - Valaris } fclose(fp); - sprintf(tmp_output,"Done reading '\033[1;29m%s\033[0;0m'.\n",filename[i]); + sprintf(tmp_output,"Done reading '"CL_WHITE"%s"CL_RESET"'.\n",filename[i]); ShowStatus(tmp_output); } return 0; @@ -3973,7 +3973,7 @@ static int mob_readdb_mobavail(void) ln++; } fclose(fp); - sprintf(tmp_output,"Done reading '\033[1;29m%d\033[0;0m' entries in '\033[1;29m%s\033[0;0m'.\n",ln,"db/mob_avail.txt"); + sprintf(tmp_output,"Done reading '"CL_WHITE"%d"CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"'.\n",ln,"db/mob_avail.txt"); ShowStatus(tmp_output); return 0; } @@ -4021,7 +4021,7 @@ static int mob_read_randommonster(void) mob_db[class].summonper[i]=per; } fclose(fp); - sprintf(tmp_output,"Done reading '\033[1;29m%s\033[0;0m'.\n",mobfile[i]); + sprintf(tmp_output,"Done reading '"CL_WHITE"%s"CL_RESET"'.\n",mobfile[i]); ShowStatus(tmp_output); } return 0; @@ -4174,7 +4174,7 @@ static int mob_readskilldb(void) mob_db[mob_id].maxskill=i+1; } fclose(fp); - sprintf(tmp_output,"Done reading '\033[1;29m%s\033[0;0m'.\n",filename[x]); + sprintf(tmp_output,"Done reading '"CL_WHITE"%s"CL_RESET"'.\n",filename[x]); ShowStatus(tmp_output); } return 0; @@ -4331,7 +4331,7 @@ static int mob_read_sqldb(void) mob_db[class].head_buttom=0; } mysql_free_result(sql_res); - sprintf(tmp_output,"Done reading '\033[1;29m%lu\033[0;0m' entries in '\033[1;29m%s\033[0;0m'.\n",ln,mob_db_db); + sprintf(tmp_output,"Done reading '"CL_WHITE"%lu"CL_RESET"' entries in '"CL_WHITE"%s"CL_RESET"'.\n",ln,mob_db_db); ShowStatus(tmp_output); } return 0; |