help
1>------ Build started: Project: map-server_sql, Configuration: Debug Win32 ------
1> mob.c
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\common\nullpo.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\common\mmo.h(133): warning C4005: 'MAX_ATTRIBUTE' : macro redefinition
1> c:\users\user\desktop\3ceam runk\blackrockxii\src\common\mmo.h(132) : see previous definition of 'MAX_ATTRIBUTE'
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\battle.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\unit.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\unit.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\unit.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\unit.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\unit.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\battle.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\unit.h : warning C4819: The file contains a character that cannot be represented in the current code page (874). Save the file in Unicode format to prevent data loss
1>c:\users\user\desktop\3ceam runk\blackrockxii\src\map\mob.c(2581): error C2143: syntax error : missing ';' before 'type'
========== Build: 0 succeeded, 1 failed, 2 up-to-date, 0 skipped ==========
if (battle_config.mvp_tomb_enabled && md->spawn->boss){
md->target_id = mvp_sd->bl.id;
if( !rebirth )
mob_setdelayspawn(md); //Set respawning.
return 3; //Remove from map.
}
2581 void mob_revive(struct mob_data *md, unsigned int hp)
{
unsigned int tick = gettick();
md->state.skillstate = MSS_IDLE;
md->last_thinktime = tick;
md->next_walktime = tick+rand()%50+5000;
md->last_linktime = tick;
md->last_pcneartime = 0;
memset(md->dmglog, 0, sizeof(md->dmglog)); // Reset the damage done on the rebirthed monster, otherwise will grant full exp + damage done. [Valaris]
md->tdmg = 0;
if (!md->bl.prev)
map_addblock(&md->bl);
clif_spawn(&md->bl);
skill_unit_move(&md->bl,tick,1);
mobskill_use(md, tick, MSC_SPAWN);
if (battle_config.show_mob_info&3)
clif_charnameack (0, &md->bl);
}