summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
Diffstat (limited to 'src/map')
-rw-r--r--src/map/mob.c12
-rw-r--r--src/map/pc.c6
2 files changed, 12 insertions, 6 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 5772db551..590cbf323 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -4539,7 +4539,7 @@ static int mob_readskilldb(void)
{
FILE *fp;
char line[1024];
- int i;
+ int i,tmp;
const struct {
char str[32];
@@ -4686,13 +4686,19 @@ static int mob_readskilldb(void)
ms->skill_lv= j>battle_config.mob_max_skilllvl ? battle_config.mob_max_skilllvl : j; //we strip max skill level
//Apply battle_config modifiers to rate (permillage) and delay [Skotlex]
- ms->permillage=atoi(sp[5]);
+ tmp = atoi(sp[5]);
if (battle_config.mob_skill_rate != 100)
- ms->permillage = ms->permillage*battle_config.mob_skill_rate/100;
+ tmp = tmp*battle_config.mob_skill_rate/100;
+ if (tmp > 10000)
+ ms->permillage= 10000;
+ else
+ ms->permillage= tmp;
ms->casttime=atoi(sp[6]);
ms->delay=atoi(sp[7]);
if (battle_config.mob_skill_delay != 100)
ms->delay = ms->delay*battle_config.mob_skill_delay/100;
+ if (ms->delay < 0) //time overflow?
+ ms->delay = INT_MAX;
ms->cancel=atoi(sp[8]);
if( strcmp(sp[8],"yes")==0 ) ms->cancel=1;
ms->target=atoi(sp[9]);
diff --git a/src/map/pc.c b/src/map/pc.c
index 2d55bb46c..3b226c122 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -4593,7 +4593,7 @@ int pc_follow(struct map_session_data *sd,int target_id)
int pc_checkbaselevelup(struct map_session_data *sd)
{
- int next = pc_nextbaseexp(sd);
+ unsigned int next = pc_nextbaseexp(sd);
nullpo_retr(0, sd);
@@ -4651,7 +4651,7 @@ int pc_checkbaselevelup(struct map_session_data *sd)
int pc_checkjoblevelup(struct map_session_data *sd)
{
- int next = pc_nextjobexp(sd);
+ unsigned int next = pc_nextjobexp(sd);
nullpo_retr(0, sd);
@@ -4763,7 +4763,7 @@ int pc_gainexp(struct map_session_data *sd,unsigned int base_exp,unsigned int jo
if(sd->state.showexp){
sprintf(output,
- "Experience Gained Base:%d (%.2f%%) Job:%d (%.2f%%)",base_exp,nextbp*(float)100,job_exp,nextjp*(float)100);
+ "Experience Gained Base:%u (%.2f%%) Job:%u (%.2f%%)",base_exp,nextbp*(float)100,job_exp,nextjp*(float)100);
clif_disp_onlyself(sd,output,strlen(output));
}