Which skills are you trying to use? Only the ones that are in this
range: 2458 to 2460 are working without stones, only skills that summon
:x
That's exactly what I am attempting. By the way, the IDs for the summoning skills are 2457~2460, so maybe that' incorrect? Still, at least 3 out of 4 of the skills should work, yet they don't.
*edit* Mechanic Fuel worked. Thank you so much.
2457,0,6,4,3,0x1,0,3,1,yes,0,0,0,none,0, SO_SUMMON_AGNI,Summon Fire Spirit Agni2458,0,6,4,1,0x1,0,3,1,yes,0,0,0,none,0, SO_SUMMON_AQUA,Summon Water Spirit Aqua2459,0,6,4,4,0x1,0,3,1,yes,0,0,0,none,0, SO_SUMMON_VENTUS,Summon Wind Spirit Ventus2460,0,6,4,2,0x1,0,3,1,yes,0,0,0,none,0, SO_SUMMON_TERA,Summon Earth Spirit TeraOh, sorry, they're indeed wrong, I forgot to add Summon Fire Spirit Agni in the list:
Code:
// 990 to 997 sorcerer stones only works when using summon skills if( (req.itemid[i] >= 990 && req.itemid[i] <= 997) && sd->special_state.no_elementalstones && (skill_id >= SO_SUMMON_AQUA && skill_id <= SO_SUMMON_TERA) ) req.itemid[i] = req.amount[i] = 0;
to:
Code:
// 990 to 997 sorcerer stones only works when using summon skills if( (req.itemid[i] >= 990 && req.itemid[i] <= 997) && sd->special_state.no_elementalstones && (skill_id >= SO_SUMMON_AGNI && skill_id <= SO_SUMMON_TERA) ) req.itemid[i] = req.amount[i] = 0;
Build and see if this works if it does I'll update my other post to add all this changes, ok?
Regards