Hello everyone,
It's exactly what the title says, I don't want that the stone item be a pre requisite to use the skill Throwstone.
I looked on status.c, skill.c, skill.h and battle.c, but nothing founded about this item. I also looked for TF_PICKSTONE, but it's a little confused to me.
I hope that someone can help me with this.
case TF_THROWSTONE:
if (!sc_start(src,bl,SC_STUN,3,skill_lv,skill_get_time(skill_id,skill_lv))) //only blind if success
sc_start(src,bl,SC_BLIND,3,skill_lv,skill_get_time2(skill_id,skill_lv));
break;
case TF_PICKSTONE:
if(sd) {
unsigned char eflag;
struct item item_tmp;
struct block_list tbl;
clif_skill_nodamage(src,bl,skill_id,skill_lv,1);
memset(&item_tmp,0,sizeof(item_tmp));
memset(&tbl,0,sizeof(tbl)); // [MouseJstr]
item_tmp.nameid = ITEMID_STONE;
item_tmp.identify = 1;
tbl.id = 0;
// Commented because of duplicate animation [Lemongrass]
// At the moment this displays the pickup animation a second time
// If this is required in older clients, we need to add a version check here
//clif_takeitem(&sd->bl,&tbl);
eflag = pc_additem(sd,&item_tmp,1,LOG_TYPE_PRODUCE);
if(eflag) {
clif_additem(sd,0,0,eflag);
map_addflooritem(&item_tmp,1,sd->bl.m,sd->bl.x,sd->bl.y,0,0,0,0);
}
}