Great Idea you had! I was coding something really similar using a db.txt file too. You should add some general options as battleconfigs, like general damage cap, general damage reduction or increase, etc as I did on mine.
Also.. I was looking through your code and noticed this.
md.damage = md.damage += md.damage*battle_SAD(sd, target, skill_num)/100;
Isn't the '= md.damage' redundant?
Also this.
int flag = map[sd->bl.m].flag.restricted?8*map[sd->bl.m].zone:0;
map[sd->bl.m].flag.restricted && skill_db[skill_num].flag&flag
if map[sd->bl.m].flag.restricted exists you asign 8*map[sd->bl.m].zone at flag otherwise 0, then on the other condition if map[sd->bl.m].flag.restricted exists and the bit value you asigned to flag is in skill_db[skill_num].flag it triggers the condition. that logic is redundant too, because in the case if map[sd->bl.m].flag.restricted doesn't exists, as you stated an && on the second condition would be redundant if the second condition don't triggers because of the 0. I think would be better just like this.
map[sd->bl.m].flag.restricted && skill_db[skill_num].flag&(8*map[sd->bl.m].zone)
Great contribution! Have a nice day!
Thanks, it still doesn't work for me
Open your battle.c src file.
Find this line
struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list *target,int skill_num,int skill_lv,int mflag);
add before
static int battle_SAD(struct map_session_data *sd, struct block_list *target, int skill_num)
{
int dmg = 0;
int flag = map[sd->bl.m].flag.restricted?8*map[sd->bl.m].zone:0;
if((skill_db[skill_num].flag&1 && !map_flag_vs(sd->bl.m))
|| (skill_db[skill_num].flag&2 && map[sd->bl.m].flag.pvp)
|| (skill_db[skill_num].flag&4 && map_flag_gvg(sd->bl.m))
|| (skill_db[skill_num].flag&8 && map[sd->bl.m].flag.battleground)
|| (map[sd->bl.m].flag.restricted && skill_db[skill_num].flag&flag))
{
switch(target->type)
{
case BL_PC:
dmg = skill_db[skill_num].pc_damage;
break;
case BL_MOB:
if(((TBL_MOB*)target)->status.mode&MD_BOSS)
dmg = skill_db[skill_num].boss_damage;
else
dmg = skill_db[skill_num].mob_damage;
break;
default:
dmg = skill_db[skill_num].other_damage;
break;
}
}
return dmg;
}
Look for this line.
if( sd )
{
if (skill_num && (i = pc_skillatk_bonus(sd, skill_num)))
ATK_ADDRATE(i);
add like this
if( sd )
if( sd )
{
ATK_ADDRATE(battle_SAD(sd, target, skill_num));
if (skill_num && (i = pc_skillatk_bonus(sd, skill_num)))
ATK_ADDRATE(i);
Look for this line
if(sd) {
//Damage bonuses
Add this
if(sd) {
MATK_ADDRATE(battle_SAD(sd, target, skill_num));
//Damage bonuses
Look for this line
if (sd && (i = pc_skillatk_bonus(sd, skill_num)))
md.damage += md.damage*i/100;
Replace like this
if (sd)
{
if(i = pc_skillatk_bonus(sd, skill_num))
md.damage += md.damage*i/100;
md.damage = md.damage += md.damage*battle_SAD(sd, target, skill_num)/100;
}
On skill.c src file
Find this line
/*==========================================
* DB reading.
* skill_db.txt
Add before
static bool skill_parse_row_skilldamage(char* split[], int columns, int current)
{
int i = atoi(split[0]);
i = skill_get_index(i);
if( !i ) // invalid skill id
return false;
skill_db[i].flag = atoi(split[1]);
skill_db[i].pc_damage = atoi(split[2]);
skill_db[i].mob_damage = atoi(split[3]);
skill_db[i].boss_damage = atoi(split[4]);
skill_db[i].other_damage = atoi(split[5]);
return true;
}
Find this line
sv_readdb(db_path, "skill_changematerial_db.txt"
Add after
sv_readdb(db_path, "skill_damage_db.txt" , ',', 5, 6, MAX_SKILL_DB, skill_parse_row_skilldamage);
On skill.h src file
Find this line
int unit_interval;
int unit_target;
int unit_flag;
Add after
int flag;
int pc_damage,mob_damage,other_damage,boss_damage;
Compile and you're done. Don't forget to create your db file. It should work perfectly on the latest revision.