It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
avatar
CSPVG: I think most people that participated in that game can attest to the fact that I am a much more active mod than a player. So yes, I do think that I could be active enough to run it.
Why don't you go ahead and start the next sign up thread then?
avatar
Bookwyrm627: Why don't you go ahead and start the next sign up thread then?
In the interests of getting things moving, I think this is a good idea. If RWarehall ends up expressing an interest in running the game before Friday, then we can work something out at that time.
Doooo Iiiittttt!!!!!!
avatar
TheGOGfather: If RWarehall ends up expressing an interest in running the game before Friday, then we can work something out at that time.
Perhaps we should offer you up as a blood sacrifice? That might tempt him back in.
avatar
yogsloth: Perhaps we should offer you up as a blood sacrifice? That might tempt him back in.
I might be a better choice... ;)

I mean... without the GOGFather who would [eventually] update the Administration thread posts?!
Post edited April 08, 2015 by Krypsyn
avatar
yogsloth: Perhaps we should offer you up as a blood sacrifice? That might tempt him back in.
avatar
Krypsyn: I might be a better choice... ;)

I mean... without the GOGFather who would [eventually] update the Administration thread posts?!
You're all the same to me!
avatar
Krypsyn: I mean... without the GOGFather who would [eventually] update the Administration thread posts?!
Bah! Fine... updated the posts.

If I missed anyone wanting to be on the Hosting List, do let me know.

Also, if anyone would like to be added, or removed, from the contact list in post 2, do let me know that as well.
I've started a sign up thread for my game. Go here to find it.
avatar
TheGOGfather: snip
I would like to be added to the list.
avatar
TheGOGfather: Also, if anyone would like to be added, or removed, from the contact list in post 2, do let me know that as well.
Please add me to the list of players to be contacted in the event of a game.
avatar
A_Future_Pilot: I volunteer to help! Sounds similar to the mafia setup I had (that was TERRIBLY unbalanced...), but I think people liked the idea :)

EDIT: Oh snap, if I helped I wouldn't be able to play it would I? ...hmmm...I'll still help if you really need me, but I'd rather play it lol
New game is signing up!
Hey, I'd be interested in playing the next game, so add me to the contact list, please!
I see Game 27 has just started, so I'll hang around and see how that plays out.
avatar
agentcarr16: Hey, I'd be interested in playing the next game, so add me to the contact list, please!
I see Game 27 has just started, so I'll hang around and see how that plays out.
Done, and welcome. :)
The lazy mafia player strikes again!

So I couldn't be bothered to have to open the console and redo the script for each player, so I've added a little search bar above the page numbers where you just need to put the username, start page and end page and it will run the filter script. Then you can just change the name and hit go to run it again.

Here's the script: (EDIT: Updated script due to error)
Edit2: As pointed out by Hyper, I forgot to mention that when you put page numbers in the boxes, for the whole thread the start page should be 0 not 1.

var $filterbar = $( '<div><p style="display: inline;">Username: </p><input type="text" value="" id="username_box" style="display: inline; margin-right: 10px;"><p style="display: inline;">First Page: </p><input type="text" value="" id="startpage_box" style="display: inline; margin-right: 10px;"><p style="display: inline;">End Page: </p><input type="text" value="" id="endpage_box" style="display: inline; margin-right: 10px;"><a id="filter_go" style="display: inline;">Go</a></div>' );

$( ".nav_bar_bottom" ).prepend($filterbar);
$( "#filter_go" ).on("click", function () {
jQuery('.spot_h').remove()
var endpage = parseInt($("#endpage_box").val());
var startpage = parseInt($("#startpage_box").val());
for (var i = endpage; i > startpage; i--)
{
var threadURL = "/forum/general/gog_forum_mafia_27_gameshow_showdown_the_game/page" + i + " .spot_h"
if (!$(".page" + i + "posts").length)
{
var $newdiv = $( "<div class='page" + i + "posts'/>" )
}
$( ".list_h" ).prepend($newdiv)
$( ".page" + i + "posts").load(threadURL, function() {
$( ".b_u_name" )
.contents()
.filter(function() {
return this.nodeType === 3;
})
.wrap( "<a></a>" )
.end()
jQuery('.b_u_name a:not(:contains(' + $("#username_box").val() + '))').parents('.spot_h').remove();
})
}
});

----

If there are any problems just let me know.

Hope it helps!
Post edited April 17, 2015 by adaliabooks
avatar
adaliabooks: <snip>
Awesome timing! I was just thinking that I needed to go dig out your script again; I'd been putting it off because I didn't feel like digging around looking for the post(s).