

Frosty
-
Posts
8 -
Joined
-
Last visited
Community Answers
-
Frosty's post in How do I check if party exp share is set to even share? was marked as the answer
Thanks
Edit: if anyone else is wondering how to check if party is in even share I added a script command that looks like this
BUILDIN_FUNC(getpartyshare) { struct party_data *p; int i=0; p=party_search(script_getnum(st,2)); if (p && p->party.exp) i++; mapreg_setreg(add_str("$@partyshare"),i); return 0; }