PDA

View Full Version : Attendance script for House/MHO event reports to GM's



zzentar
02-12-2013, 02:18 AM
I never knew what a pain it was to try and keep attendance at events. This solves that problem. This script is automatic with very little spam.

I didn't post this on the repo, probably just a couple dozen people that would find this useful and the repo is cluttered enough.

Many thanks to Drafix, this was ugly before he helped clean it up.





=begin
This script scans the event room and collects a list of all people that have been there since started. It will display the number of attendees and a list of their names for reports to the House/MHO GM for House/MHO credit.

People will be added to the attendance list after they have been in the event room for at least a minute.

The script will send you a monster bolded display whenever new attendees are added to the attendee list. If no new people are added, it wont display anything. This keeps the script from spamming screen with no new info.

The display is the number of attendees and a list of their names.

The script can be ended two ways:
1: kill the script and scroll back to get count and list of names
2: move to another room and before next scan, script will give a final tally then exit


Author: Zzentar and Drafix

=end

tempHash = Hash.new;
attendees = Array.new
group_check = Array.new
event_room = Room.current.id

def msg(message)
if $fake_stormfront then puts("\034GSL\r\n") else puts("<pushBold\/>") end
puts("| " + message)
if $fake_stormfront then puts("\034GSM\r\n") else puts("<popBold\/>") end
end


loop{
if Room.current.id != event_room
msg("Final Tally")
msg("#{attendees.length} Attendees")
msg(attendees.to_a.join(", "))
break
end

if not (attendees - group_check).empty?
msg("#{attendees.length} Attendees")
msg(attendees.join(", "))
end

group_check = attendees

checkpcs.to_a.each{|person| tempHash[person] += 1}
tempHash.each{|name,value|
if checkpcs.to_a.include?(name)
if value >= 6
attendees.push(name)
attendees = attendees.uniq
#echo "#{name} equals #{value}"
end
else
tempHash.delete(name)
end
}

sleep 10
}

Geijon Khyree
02-12-2013, 03:47 AM
This seems pretty helpful for a lot of folks. Sidebar question, but you guys have anything for editing logs? It wouldn't be in game of course, but any advice is appreciated.

GS4-Seomanthe
02-12-2013, 10:14 PM
I too would be interested in an automatic log editor but I can imagine something like that would be very hard to code... For CHE/MHO meeting minutes, ideally it would record any statements, and also Person nods, Person nods at you, and Person shakes his/her head.. things like that. I used to arduously clean CHE meeting logs for our minutes, but now I just keep a document open on the side and cut/paste relevant statements and decisions as they happen.

I love this attendance-taker though! I will try it out at the next event...

zzentar
02-13-2013, 02:28 PM
I didn't realize that some people didn't know how to manually add a script to their Lich scripts folder, so I ended up adding this to the Repo as attendance_taker:
;repo download attendance_taker

Also, after a couple of people tried it, I realized I wasn't clear on a couple things. In my effort to keep it from spamming screen, people didn't think it was actually working. So I added this intro message when it is started,

attendance_counter is running.
Attendee list will start populating after persons have been in room for 6 continuous scans. Approximately one minute.
List will ONLY be displayed when people are added to the list. So if nothing is displayed for a period of time, no one has met the 6 scan requirement


If I need to change or fix anything else, please let me know.

~Zz

Geijon Khyree
02-14-2013, 04:20 AM
I'm full of finding random stuff. Give this log editor a try. It's from the archive of the lost rangers utility site. It may not work, but maybe someone can adapt it.

http://web.archive.org/web/20030212154727/http://dewin.oldbattery.com/gs3/

WRoss
02-14-2013, 10:30 AM
Here's a quick one line alias that will count everyone in the room, except yourself.

count => ;e i = 0; checkpcs.each { |pc| i += 1; break if pc == Char.name }; echo i;

>count
--- Lich: exec2 active.
[exec2: 10]
--- Lich: exec2 has exited.

zzentar
02-14-2013, 01:04 PM
Here's a quick one line alias that will count everyone in the room, except yourself.

count => ;e i = 0; checkpcs.each { |pc| i += 1; break if pc == Char.name }; echo i;



Thanks Wross, that isnt the purpose of this script but the next time I want to count the people in the room, I will definitely use that. Well that or this one, which is an even simpler way to count the people in a room:

>;e echo checkpcs.to_a.length