src/map/atcommand.c
Add this
/*==========================================
* Feel (SG save map) Reset [HiddenDragon]
*------------------------------------------*/
ACMD_FUNC(feelreset)
{
pc_resetfeel(sd);
clif_displaymessage(fd, msg_txt(sd,1324)); // Reset 'Feeling' maps.
return 0;
}
+ /*==========================================
+ * Hatred Reset [GodLesZ] modified by n00b1e
+ *------------------------------------------*/
+ ACMD_FUNC(hatredreset)
+ {
+ pc_resethate(sd);
+ clif_displaymessage(sd->fd, "Reset 'Hatred' state~");
+ return 0;
+ }
and this
ACMD_DEF(feelreset),
+ACMD_DEF(hatredreset),
ACMD_DEF(auction),
And then edit your groups.conf and atcommand.conf
btw Thanks to GodLesZ for the old eathena modification