As was foretold, we've added advertisements to the forums! If you have questions, or if you encounter any bugs, please visit this thread: https://forums.penny-arcade.com/discussion/240191/forum-advertisement-faq-and-reports-thread/

Tongue Smiley Face Tells Sinister Lies

TychoCelchuuuTychoCelchuuu PIGEONRegistered User regular
The smiley face menu lies. Look at this dude: :P

He's totally not the guy in the menu!
tonguef.png

Menu dude is clearly superior but either way we have a grievous mismatch. THIS MUST BE REMEDIED BEFORE MORE LIVES ARE RUINED.

TychoCelchuuu on

Posts

  • Lord_SnotLord_Snot Живу за выходные American ValhallaRegistered User regular
    The older smilies are superior in general, definitely.

  • HotandnerdyHotandnerdy Hot and Nerdy Kansas CityRegistered User regular
    No school like the old school.

    girl.jpg
  • BarrakkethBarrakketh Registered User regular
    I fixed this through my Chrome extension. If anyone wants to adapt it to a Greasemonkey script:
    function fixEmoticons() {
        $('img.bbcode_smiley').each(function () {
            $this = $(this);
            var cls = false;
            switch ($this.attr('alt')) {
                case ";-)":
                    cls = 'Emoticonicon_wink';
                    break;
                case ":P":
                    cls = 'Emoticonicon_razz';
                    break;
                case ":x":
                    cls = 'Emoticonicon_mad';
                    break;
                case ":(":
                    cls = 'Emoticonicon_sad';
                    break;
                case ":)":
                    cls = 'Emoticonicon_smile';
                    break;
                case ":D":
                    cls = 'Emoticonicon_biggrin';
                    break;
            }
            if (cls) {
                $('<span></span>')
                    .addClass('Emoticon')
                    .addClass(cls)
                    .insertBefore($this);
                $this.remove();
            }
        });
    }
    

    If someone does go the GM route, you'll probably be stuck with the preview icons being wrong for various reasons.

    Rollers are red, chargers are blue....omae wa mou shindeiru
  • BedlamBedlam Registered User regular
    Are smileys not suposed to parse in PMs? Because they dont show up in PMs for me but I dont want to start a thread if its already a known thing (which it probably is)

Sign In or Register to comment.