24 Oct, 2008, Igabod wrote in the 1st comment:
Votes: 0
i just installed the restringer snippet and got it working fine, now i need to add the ACT_RESTRINGER flag into medit but don't even know where to begin with ivan's olc (i looked around a little bit and was just confused) i could use some assistance in this cause a restring command without a restring mob is useless. btw, i'm using keggermud (a rom/quickmud derivative) the olc is pretty much the same as stock 1.81 ivans i believe though. only difference i've noticed is that the mset pset oset etc. commands have been merged into one command.
24 Oct, 2008, Skol wrote in the 2nd comment:
Votes: 0
In tables.c, find the "const struct flag_type act_flags[]"

Add an entry for ACT_RESTRINGER
I think the last one in stock Quickmud was:
{"changer", dd, TRUE},
So you'd add {"restringer", ee, TRUE}

In merc.h, find your act's and add
#define ACT_RESTRINGER (ee) // Um, mob does restrings for players
25 Oct, 2008, Igabod wrote in the 3rd comment:
Votes: 0
heh i actually figured it out when i went home this morning, all i forgot to do was add it to tables.c, i already had everything else done.
0.0/3