Well I've tried and tried to do a work around for the Bug (See: https://jira.secondlife.com/browse/SVC-25) currently happening on llGetParcelPrimOwners which pretty much effects every prim counter I've tested when used on Group land and deed to that group AND the owner logs off of SL...making the script stop working for any other group member when the owner is offline.
SO, my questions is: what is the work around? I know one exists..since I know that one of the prim counters on SLX is still working (LogSpark Prim Meter)...but, it's WAY too much for me to pay per package for the amount of counters I need. Plus, I know I can create it myself...with a little help. SO, anyone? Any clues? I willing to pay too...for a working copyable version...not tons of money now...since I can do some of the scripting myself...just can't seem to think of a work around for this.
Oh Btw, the following script I got does in fact work all the time (even when deeded to the group and owner is offline) but, it's keyed...and not available for anyone who touches it. I need one that works for all group members who touch it. But, a 'shared' prim count option to it would be great...for those shared renter situations. A combo counter would be a great idea for Landlords I know! So, let me know if anyone has any ideas how to make the following script into a super combo shared WORKING prim counter script!

Thanks!
<php>
list gAvatars = ["add9605f-301e-446a-b4bd-bbaa87a02018" , "dfe6e1f5-3706-43d4-b9df-5fd5f58cf93c"];
integer GetPrimCount(key id, list PrimOwners) {
integer ReturnVal = -1;
integer i;
integer NumEntries = (PrimOwners != []);
for(i = 0; i < NumEntries; i += 2)
if(llList2Key(PrimOwners, i) == id)
return llList2Integer(PrimOwners, ++i);
return 0;
}
default {
on_rez(integer args) {
llResetScript();
}
touch_start(integer numdet) {
list PrimOwners = llGetParcelPrimOwners(llGetPos());
integer PrimCount = 0;
integer i;
integer NumberAvatars = (gAvatars != []);
for(i = 0; i < NumberAvatars; ++i) {
PrimCount += GetPrimCount( llList2Key(gAvatars, i), PrimOwners);
}
for(i = 0; i < numdet; ++i) {
llInstantMessage(llDetectedKey(i), "You have a combined total of " + (string) PrimCount + " prims on this parcel"
;}
}
}
</php>