Check out our blog!
Forumwarz is the first "Massively Single-Player" online RPG completely built around Internet culture.

You are currently looking at Flamebate, our community forums. Players can discuss the game here, strategize, and role play as their characters.

You need to be logged in to post and to see the uncensored versions of these forums.

Log in or Learn about Forumwarz

Civil Discussion
Switch to Role-Playing Civil Discussion
Interface NewDotMoarFiles - Know when new .moar files are available to extract

The Ferv

Avatar: Middle Finger
7

[7 VIBRATING DOLDOES]

Level 35 Troll

“Problem Child IV”

MC Banhammer Posted:

Wrong, you’re awesome.

Can we make requests? Can you write a script which captures the piece names and numbers as you earn them, and displays them all when you’re done pwning? That way you can see your progress w/o slowing down your speedrun times.

This.

And thanks!

LRFLEW

Avatar: Code (Blue)

[n00bs united]

Level 16 Hacker

“Packet Sniffer ”

How do I get this to work? All I get is the source code.

Fran Posted:

Now if you can create something to extract all .moar files in a single click

Signed

Exogon

Avatar: 68228 2009-11-05 09:03:03 -0500
49

[Brainfreeze]

Level 69 Emo Kid

“The Infinite Sadness”

You have Greasemonkey installed and activated? As well as the script?

Zebulun284

Avatar: Abstract Blue Circle
22

[Grey Goose Mafiosi]

Level 69 Hacker

“Trojan Horse Magnum”

The streak marker script isn’t marking Jojo or Wahoo answers for some reason. Is there anything I can do to fix it?

Inertia

Avatar: 60995 Fri Apr 03 12:59:05 -0400 2009
34

[Shii is gay]

Level 35 Troll

also wow i have no male reproductive organ

Zebulun284 Posted:

The streak marker script isn’t marking Jojo or Wahoo answers for some reason. Is there anything I can do to fix it?

Someone said it’s because of an unknown character in their name or something? I dont really understand but neona said she doesn’t know how to fix it.

The Baroness

Avatar: 111827 Sat Apr 25 22:25:53 -0400 2009
4

[Grey Goose Mafiosi]

Level 35 Camwhore

I REALLY MISS INCIT, LOL

Log in to see images!

Andy_Dextruss

Avatar: 50228 Wed Apr 08 07:39:40 -0400 2009
26

[Grey Goose Mafiosi]

Level 37 Troll

Orgasm changer who shoots rays through computer screens

Both scripts work great (apart from the Jo=Jo’s/Wahoo thing). Thanks.

Andy_Dextruss

Avatar: 50228 Wed Apr 08 07:39:40 -0400 2009
26

[Grey Goose Mafiosi]

Level 37 Troll

Orgasm changer who shoots rays through computer screens

Both scripts work great (apart from the Jo=Jo’s/Wahoo thing). Thanks.

quantumenergy

Avatar: Abstract Blue Circle
43

[Everyday Regular N-
ormal Klan
]

Level 69 Hacker

“Trojan Horse Magnum”

Quick fix for the special characters bug:

// ==UserScript==
// @name           Streak Marker
// @description    Streakmarker v.01
// @include        http://*.forumwarz.com/klans/domination
// @include        http://forumwarz.com/klans/domination
// @include        http://*.forumwarz.com/bookmarks/by_type/forums
// @include        http://forumwarz.com/bookmarks/by_type/forums
// @include        http://*.forumwarz.com/bookmarks/community
// @include        http://forumwarz.com/bookmarks/community
// ==/UserScript==

Ajax = unsafeWindow['Ajax'];
$ = unsafeWindow['window'].$;
$$ = unsafeWindow['window'].$$;

var marker = dogreat timesent.createElement("img");
marker.setAttribute("src","http://www.forumwarz.com/images/scoops/pistachio.png");


function processStreak(text) {
	var tables = $$('table.highlighting')
	for (var table in tables) {
		var forums = tables[table].getElementsByTagName('a');
		var rtext = text.responseText.toLowerCase().replace(/[^a-z0-9]/g, " ");
		for (var forum in forums) {
			if(rtext.indexOf(forums[forum].innerHTML.toLowerCase().replace(/[^a-z0-9]/g, " ")) != -1) {
				var tmp = marker.cloneNode(true);
				//forums[forum].insertBefore(tmp);
				forums[forum].appendChild(tmp);
			}
		}
	}
}
function addMarkers() {
	//new Ajax.Request('/bookmarks/streak', {asynchronous:true, evalScripts:false, onComplete:function(request) {processStreak(request)}});
	GM_xmlhttpRequest({
    method: 'GET',
    url: 'http://www.forumwarz.com/bookmarks/streak',
    onload: function(responseDetails) {
        processStreak(responseDetails);
    }
	});
}




if (dogreat timesent.title.indexOf("Domination") != -1) {
	window.addEventListener("load", function (e) {addMarkers();}, "false");
} else {
	addMarkers();
}

Andy_Dextruss

Avatar: 50228 Wed Apr 08 07:39:40 -0400 2009
26

[Grey Goose Mafiosi]

Level 37 Troll

Orgasm changer who shoots rays through computer screens

quantumenergy Posted:

Quick fix for the special characters bug:

// ==UserScript==
// @name           Streak Marker
// @description    Streakmarker v.01
// @include        http://*.forumwarz.com/klans/domination
// @include        http://forumwarz.com/klans/domination
// @include        http://*.forumwarz.com/bookmarks/by_type/forums
// @include        http://forumwarz.com/bookmarks/by_type/forums
// @include        http://*.forumwarz.com/bookmarks/community
// @include        http://forumwarz.com/bookmarks/community
// ==/UserScript==

Ajax = unsafeWindow['Ajax'];
$ = unsafeWindow['window'].$;
$$ = unsafeWindow['window'].$$;

var marker = dogreat timesent.createElement("img");
marker.setAttribute("src","http://www.forumwarz.com/images/scoops/pistachio.png");


function processStreak(text) {
	var tables = $$('table.highlighting')
	for (var table in tables) {
		var forums = tables[table].getElementsByTagName('a');
		var rtext = text.responseText.toLowerCase().replace(/[^a-z0-9]/g, " ");
		for (var forum in forums) {
			if(rtext.indexOf(forums[forum].innerHTML.toLowerCase().replace(/[^a-z0-9]/g, " ")) != -1) {
				var tmp = marker.cloneNode(true);
				//forums[forum].insertBefore(tmp);
				forums[forum].appendChild(tmp);
			}
		}
	}
}
function addMarkers() {
	//new Ajax.Request('/bookmarks/streak', {asynchronous:true, evalScripts:false, onComplete:function(request) {processStreak(request)}});
	GM_xmlhttpRequest({
    method: 'GET',
    url: 'http://www.forumwarz.com/bookmarks/streak',
    onload: function(responseDetails) {
        processStreak(responseDetails);
    }
	});
}




if (dogreat timesent.title.indexOf("Domination") != -1) {
	window.addEventListener("load", function (e) {addMarkers();}, "false");
} else {
	addMarkers();
}

How might one implement such an improvement? (I’m useless at this ****).

Adapt

Avatar: 58104 2015-06-13 23:16:37 -0400
16

[Grey Goose Mafiosi]

Level 48 Camwhore

Celerysteve is better than me in everyway imaginable

The streak marker is so ****ing amazing. A++++++ script, would use again. Log in to see images!

quantumenergy

Avatar: Abstract Blue Circle
43

[Everyday Regular N-
ormal Klan
]

Level 69 Hacker

“Trojan Horse Magnum”

Andy_Dextruss Posted:

How might one implement such an improvement? (I’m useless at this ****).

Right click Greasemonkey, Manage User Scripts, Edit, then paste the code.

Aldo_Anything

MODERATOR
Avatar: 32555 2014-07-18 11:39:53 -0400
98

[Brainfreeze]

Level 69 Troll

male reproductive organMEISTER

Works, Wahoo and JoJo both have pistachios displayed next to the names. Thank you for improving this great script

Andy_Dextruss

Avatar: 50228 Wed Apr 08 07:39:40 -0400 2009
26

[Grey Goose Mafiosi]

Level 37 Troll

Orgasm changer who shoots rays through computer screens

Cheers dude!

DOPE-HARDCOR-
E-0

Avatar: DOPE-HARDCORE-0's Avatar
2

[Team Shortbus]

Level 37 Troll

ALSO A male reproductive organSUCKING ****WAD

So I am having no luck with google image search on finding an appropriately sized earthbound sprite, but if someone can get an animated 93x93 of the bubble monkey from earthbound, it’d make a decent av for Wrong.

Wrong

Avatar: 111306 Fri Feb 13 16:39:34 -0500 2009
2

Level 21 Hacker

I do all the cool coding ET's too much of a ****ing elitist to do.

Hehe, so keep on searching!

DOPE-HARDCOR-
E-0

Avatar: DOPE-HARDCORE-0's Avatar
2

[Team Shortbus]

Level 37 Troll

ALSO A male reproductive organSUCKING ****WAD

Wrong Posted:

Hehe, so keep on searching!

I can find mini sprites, but don’t have anything to blow them up. I tried asking in IDC once for someone with Fireworks to do it. If someone will step up to the plate, I’ll take care of things.

DOPE-HARDCOR-
E-0

Avatar: DOPE-HARDCORE-0's Avatar
2

[Team Shortbus]

Level 37 Troll

ALSO A male reproductive organSUCKING ****WAD

Log in to see images!

You may thank Aldo for finding and bumping up the sprite’s size.

Now, someone give this martyr a title to go with the avatar.

DOPE-HARDCORE-0 edited this message on 02/13/2009 4:40PM

Neona

Avatar: 88117 Sat Feb 07 19:37:29 -0500 2009
15

[Board of Directors]

Level 43 Camwhore

Serious future peenwhore. XO!

quantumenergy Posted:

Quick fix for the special characters bug:

// ==UserScript==
// @name           Streak Marker
// @description    Streakmarker v.01
// @include        http://*.forumwarz.com/klans/domination
// @include        http://forumwarz.com/klans/domination
// @include        http://*.forumwarz.com/bookmarks/by_type/forums
// @include        http://forumwarz.com/bookmarks/by_type/forums
// @include        http://*.forumwarz.com/bookmarks/community
// @include        http://forumwarz.com/bookmarks/community
// ==/UserScript==

Ajax = unsafeWindow['Ajax'];
$ = unsafeWindow['window'].$;
$$ = unsafeWindow['window'].$$;

var marker = dogreat timesent.createElement("img");
marker.setAttribute("src","http://www.forumwarz.com/images/scoops/pistachio.png");


function processStreak(text) {
	var tables = $$('table.highlighting')
	for (var table in tables) {
		var forums = tables[table].getElementsByTagName('a');
		var rtext = text.responseText.toLowerCase().replace(/[^a-z0-9]/g, " ");
		for (var forum in forums) {
			if(rtext.indexOf(forums[forum].innerHTML.toLowerCase().replace(/[^a-z0-9]/g, " ")) != -1) {
				var tmp = marker.cloneNode(true);
				//forums[forum].insertBefore(tmp);
				forums[forum].appendChild(tmp);
			}
		}
	}
}
function addMarkers() {
	//new Ajax.Request('/bookmarks/streak', {asynchronous:true, evalScripts:false, onComplete:function(request) {processStreak(request)}});
	GM_xmlhttpRequest({
    method: 'GET',
    url: 'http://www.forumwarz.com/bookmarks/streak',
    onload: function(responseDetails) {
        processStreak(responseDetails);
    }
	});
}




if (dogreat timesent.title.indexOf("Domination") != -1) {
	window.addEventListener("load", function (e) {addMarkers();}, "false");
} else {
	addMarkers();
}

wouldn’t it be easier just to strip them entirely?

quantumenergy

Avatar: Abstract Blue Circle
43

[Everyday Regular N-
ormal Klan
]

Level 69 Hacker

“Trojan Horse Magnum”

Neona Posted:

wouldn’t it be easier just to strip them entirely?

It’s about the same as replacing them with spaces. You should update your userscript page too.

Internet Delay Chat
Have fun playing!
To chat with other players, you must Join Forumwarz or Log In now!