• Ask us about the forums v9
    4,984 replies, posted
Also, can we get an aspergers subforum or something? So shit like [url=http://www.facepunch.com/threads/1042784-Friends-make-fun-of-me-at-school-D]this[/url] doesn't clog up GD?
[QUOTE=verynicelady;27011195]Titles look cool until you have one. They're rarely complimentary and are more like battle scars than badges of honour[/QUOTE] Makes perfect sense. Some forums: Give custom titles and allow users to set their own Other forums: Give titles based off special position in the forum Facepunch: Gives titles to commemorate your fuckups. Or in very, [b]very[/b] rare cases your excellence. ...but who has a Facepunch account that can say they're excellent, really? [editline]27th December 2010[/editline] [QUOTE=zzzZZZZ;27011853]Also, can we get an aspergers subforum or something? So shit like [url=http://www.facepunch.com/threads/1042784-Friends-make-fun-of-me-at-school-D]this[/url] doesn't clog up GD?[/QUOTE] Normally I'd be all "As an Aspie I take offense to that" and blah blah, but I had a look at the thread first. Instead of an Aspie subforum, how about a subforum for wimps and crybabies? Because THAT is the kind of subforum that thread should go in.
[QUOTE=lavacano;27011871]...but who has a Facepunch account that can say they're excellent, really?[/QUOTE] i thought i was excellent :smith:
[QUOTE=lavacano;27011871] ...but who has a Facepunch account that can say they're excellent, really? [/QUOTE] Dav0r
Speaking of Dav0r, why was his title changed from Sarcastic Bastard to... Whatever it is now, I can't remember?
[QUOTE=CarlBooth;27002938]I do think GD should have a "General Topic" thread where people can post shit and be ignored instead of making crap threads. Not as much as they'd get from making a thread, they wouldn't get replies.[/QUOTE] We should call it Fast Threads 2, thats such a good idea
[QUOTE=zzzZZZZ;27011853]Also, can we get an aspergers subforum or something? So shit like [url=http://www.facepunch.com/threads/1042784-Friends-make-fun-of-me-at-school-D]this[/url] doesn't clog up GD?[/QUOTE] Or maybe mods could start banning for shit threads
I hope you know that your avatar made me laugh.
What order is the users reading list at the bottom of the page?
I think it just shows you first then everyone else in a random order. From what I've noticed on MrOwn's forum, it takes more resources for the server to show the members in any ordered way.
MrOwn's forum? Oh god :v:
[QUOTE=verynicelady;27011195]Titles look cool until you have one. They're rarely complimentary and are more like battle scars than badges of honour[/QUOTE] I wouldn't mind having the internet detective one, or the justin cunt one, and the tabasco one is ok complimentary ones don't seem to rare
[QUOTE=Atokniro;27012923]I wouldn't mind having the internet detective one, or the justin cunt one, and the tabasco one is ok complimentary ones don't seem to rare[/QUOTE] Only if you do something monumental do you get a title. Fucking up monumentally is much easier.
[QUOTE=Mattyyyy;27012918]MrOwn's forum? Oh god :v:[/QUOTE] It's not that bad. Pretty inactive but a decent learning experience.
[QUOTE=Mattyyyy;27012918]MrOwn's forum? Oh god :v:[/QUOTE] it's really just for dicking around with the customization options in vB, although there are some people who post there.
[QUOTE=Mattyyyy;27012820]What order is the users reading list at the bottom of the page?[/QUOTE] Most recently active to least recently active. You will always be shown first as you were the most recently active by refreshing the page or loading up a new one.
[QUOTE=Asaratha;27013698]I haven't seen them ban for the rules that Dragon posted in a while especially, My x hurts/is sick/is dead.[/QUOTE] 6 Hours ago JohnnyMo1 closed ITokez's thread called My dog is dying in General Discussion with the reason “My x is sick”
[QUOTE=Mr. Gestapo;27001855]Maybe he asked garry or compwhizii to get rid of it. IIRC garry was the person who set that as his title[/QUOTE] Nope, it just wasn't there one day. I didn't request it removed or anything.
[QUOTE=compwhizii;27009919]Yeah that, it looked for the last rating and clicked it, so I threw in a hidden link that did nothing to stop it.[/QUOTE] Something like this is only a very small diversion. Currently, this is an effective way to click it. [code] $('.postrating img:last').parent().click(); [/code] And even if you add an image to it, something like this will always work unless you change every element of the rating (alt/title/src). [code] $('.postrating img').each(function() { if ($(this).attr('alt') == "Dumb") { $(this).parent().click() } }); [/code] And I'm sure Turb/Siemens/whatever alt he is on by now could've figured these out for himself. Simply, just as long as the rating system exists, autorating systems are unavoidable.
[QUOTE=deadeye536;27016742]Something like this is only a very small diversion. Currently, this is an effective way to click it. [code] $('.postrating img:last').parent().click(); [/code] And even if you add an image to it, something like this will always work unless you change every element of the rating (alt/title/src). [code] $('.postrating img').each(function() { if ($(this).attr('alt') == "Dumb") { $(this).parent().click() } }); [/code] And I'm sure Turb/Siemens/whatever alt he is on by now could've figured these out for himself. Simply, just as long as the rating system exists, autorating systems are unavoidable.[/QUOTE] Just like pretty much anti anything online is unavoidable, the key is making it difficult enough not to bother.
[QUOTE=nekosune;27016798]Just like pretty much anti anything online is unavoidable, the key is making it difficult enough not to bother.[/QUOTE] But in many cases, difficult enough is often to the point of adding a CAPTCHA, which no one wants to do for just a rating. I'm just stating that trying to stop something like an autorater is pointless.
[QUOTE=deadeye536;27016915]But in many cases, difficult enough is often to the point of adding a CAPTCHA, which no one wants to do for just a rating. I'm just stating that trying to stop something like an autorater is pointless.[/QUOTE] it stops it from working for a while, and with something like this, it is often all that is needed, the creators have usually lost intrest, and on thier next project, yes there will be people who edit it successfully, but there will be more people who just see it not working, and forget about it, or never upgrade, it takes the brunt out of it.
[QUOTE=deadeye536;27016742]Something like this is only a very small diversion. Currently, this is an effective way to click it. [code] $('.postrating img:last').parent().click(); [/code] And even if you add an image to it, something like this will always work unless you change every element of the rating (alt/title/src). [code] $('.postrating img').each(function() { if ($(this).attr('alt') == "Dumb") { $(this).parent().click() } }); [/code] And I'm sure Turb/Siemens/whatever alt he is on by now could've figured these out for himself. Simply, just as long as the rating system exists, autorating systems are unavoidable.[/QUOTE] The point was it broke the script for everyone who had the auto-rater version until turby came back and met our demands to remove it.
Make it so we can put the rating url in image tags again plox
[QUOTE=Greenen72;27019054]Make it so we can put the rating url in image tags again plox[/QUOTE] Yes please, I need this for posting... stuff.
Why would you even use plox, it sounds and looks nothing like please and using it makes you look like one of those kids who says bi instead of bye [editline]28th December 2010[/editline] If you are to ~cool~ to say please, couldn't you word it differently?
[QUOTE=Atokniro;27020389]Why would you even use plox, it sounds and looks nothing like please and using it makes you look like one of those kids who says bi instead of bye [editline]28th December 2010[/editline] If you are to ~cool~ to say please, couldn't you word it differently?[/QUOTE] On that note, I know a girl who spells "come," as, "cum". v:v:v
How many posts to become a gold member?
2,000 posts plus two years membership.
[QUOTE=Onyx3173;27021159]2,000 posts plus two years membership.[/QUOTE] Think you've made enough posts in a short enough time? :v:
Sorry, you need to Log In to post a reply to this thread.