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
}
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
}