Oddworld Forums > Zulag Two > Forum Suggestions & Help


 
Thread Tools
 
  #151  
03-02-2013, 11:10 AM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

Interesting, I didn't know that.
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.

Reply With Quote
  #152  
03-03-2013, 07:20 AM
Manco's Avatar
Manco
Posts walls of text
 
: Aug 2007
: based damage system
: 4,751
Blog Entries: 11
Rep Power: 29
Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)

:
I'd place the username within the paragraph itself, ignore the poor typesetting, this was a rush job.

The problem is I’m not sure how you could manage this with HTML and CSS. The main limitation of responsive designs is that you’re still working with a fixed HTML structure, and as far as I know there isn’t a way to alter that structure on the fly using CSS.

Basically, HTML elements act like containers – everything is a container and/or sits inside one.

The problem with this design is that you would have the username inside the same container as the post content, so it would have to remain within that container at every level – mobile, desktop, tablet etc. This design works for a mobile layout, but I don’t think it would translate well into a desktop layout.

I think we need to keep user details (name, title, rep etc) within the same container in order for it to make sense.
__________________


twitter (stream of thoughts)
steam (games i never play)

Reply With Quote
  #153  
03-03-2013, 10:29 AM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

:
The problem is I’m not sure how you could manage this with HTML and CSS. The main limitation of responsive designs is that you’re still working with a fixed HTML structure, and as far as I know there isn’t a way to alter that structure on the fly using CSS.

Basically, HTML elements act like containers – everything is a container and/or sits inside one.

The problem with this design is that you would have the username inside the same container as the post content, so it would have to remain within that container at every level – mobile, desktop, tablet etc. This design works for a mobile layout, but I don’t think it would translate well into a desktop layout.

I think we need to keep user details (name, title, rep etc) within the same container in order for it to make sense.
There is a conditional system built into the template system that might help with this. That way you can turn entire HTML containers on or off (or display information in one place or another) depending on specific conditions.

In this case I think it is possible to have it detect what browser someone is using using an external script. Desktop = 1. Mobile = 2. Then have the result parsed somewhere in the PHP.

Then in the conditional system you could roughly tell it to:

If parameter = 2 display information here. Else = display information there.

This would take a LOT of puzzeling in the template files though and is by no means easy to set up. But it is possible.

http://www.vbulletin.com/docs/html/t...e_conditionals
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.

Reply With Quote
  #154  
03-03-2013, 11:12 AM
Manco's Avatar
Manco
Posts walls of text
 
: Aug 2007
: based damage system
: 4,751
Blog Entries: 11
Rep Power: 29
Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)

Huh, I didn’t know that.

I guess if it’s possible to use those conditionals to detect width in a similar fashion to CSS media queries it would be totally possible to have it conditionally display usernames in one container or another.

I wonder if conditionals update on browser resize though...
__________________


twitter (stream of thoughts)
steam (games i never play)

Reply With Quote
  #155  
03-03-2013, 01:43 PM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

:
Huh, I didn’t know that.

I guess if it’s possible to use those conditionals to detect width in a similar fashion to CSS media queries it would be totally possible to have it conditionally display usernames in one container or another.

I wonder if conditionals update on browser resize though...
They won't. Conditionals are only refreshed when the page is loaded or refreshed. In practice this shouldn't be a problem though since the size is static 99% of the time. You just have to make sure it detects the browser properly and displays the right HTML for it.
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.

Reply With Quote
  #156  
03-03-2013, 02:57 PM
AvengingGibbons's Avatar
AvengingGibbons
Sewer Sleg
 
: Apr 2010
: England
: 737
Blog Entries: 3
Rep Power: 15
AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)

slight revision of the design i did

Last edited by AvengingGibbons; 03-03-2013 at 03:57 PM..
Reply With Quote
  #157  
03-04-2013, 01:41 AM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

That's not an improvement, that's a step backwards. The username should be a default font just like anything else, for sake of simplicity.
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.

Reply With Quote
  #158  
03-04-2013, 02:37 AM
AvengingGibbons's Avatar
AvengingGibbons
Sewer Sleg
 
: Apr 2010
: England
: 737
Blog Entries: 3
Rep Power: 15
AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)

Revision. I know the longer usernames would be cut off, but you could tap the profile picture to bring up a more information window which would display the full username along with all other user information. Windows Phone cuts off names of people you add to the homescreen, so Microsoft obviously don't see it as that much of a problem. You have the first part of the usernames and the profile picture, so you should be able to identify the user with no hesitation anyway.


Last edited by AvengingGibbons; 03-04-2013 at 03:31 AM..
Reply With Quote
  #159  
03-04-2013, 05:03 AM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

I could live with that, but it's not really 'the way' from a design perspective. What about all the buttons that need to be there? Edit, quote, page numbers, reply button...
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.

Reply With Quote
  #160  
03-04-2013, 05:48 AM
AvengingGibbons's Avatar
AvengingGibbons
Sewer Sleg
 
: Apr 2010
: England
: 737
Blog Entries: 3
Rep Power: 15
AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)

:
I could live with that, but it's not really 'the way' from a design perspective. What about all the buttons that need to be there? Edit, quote, page numbers, reply button...
I imagine you'd tap the speech bubble to bring up those sort of options. I think I already said this. I'd want a reply button after the most recent post.

EDITED AGAIN: Like this (just an example):

Last edited by AvengingGibbons; 03-04-2013 at 07:16 AM..
Reply With Quote
  #161  
03-04-2013, 07:10 AM
Nepsotic's Avatar
Nepsotic
8===========D~
 
: Aug 2011
: 5,425
Blog Entries: 91
Rep Power: 18
Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)

When the fuck did I talk about a fox and a dog?
Also, I think the names would fit best just as they are there, except directly under the avatar.
__________________
:
all Meechmunchie did by trying to troll me was distract from the fact you all have no regard for Hetro or their rights at all, none.
- EVP_Glukkon/Oxide

Reply With Quote
  #162  
03-04-2013, 09:46 AM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

:
I imagine you'd tap the speech bubble to bring up those sort of options. I think I already said this. I'd want a reply button after the most recent post.

EDITED AGAIN: Like this (just an example):
This is looking more and more like an app instead of a skin. And there are already apps that can do this.

I still think an app like Tapatalk would make this entire project 10 times easier.
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.

Reply With Quote
  #163  
03-04-2013, 11:46 AM
Manco's Avatar
Manco
Posts walls of text
 
: Aug 2007
: based damage system
: 4,751
Blog Entries: 11
Rep Power: 29
Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)

There are a lot of things that would make this easier. Trouble is getting them.

I’m not entirely convinced having hidden elements that only reveal themselves when you tap in certain spots is a good idea, though – in fact it’s decidedly mystery meat, which is almost never a good idea.
__________________


twitter (stream of thoughts)
steam (games i never play)

Reply With Quote
  #164  
03-04-2013, 12:49 PM
MeechMunchie's Avatar
MeechMunchie
Sgt. Sideburns
 
: Mar 2009
: :noiƚɒɔo⅃
: 9,743
Blog Entries: 83
Rep Power: 31
MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)

Manco's right.

OWF's new skin should consist entirely of flying Abe heads.

Reply With Quote
  #165  
03-04-2013, 01:14 PM
AvengingGibbons's Avatar
AvengingGibbons
Sewer Sleg
 
: Apr 2010
: England
: 737
Blog Entries: 3
Rep Power: 15
AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)AvengingGibbons  (452)

There's just the profile picture and the 'post bubbles' that are touchables. Is your mystery meat point about if someone chooses the skin and hasn't heard anything about it, and wonders how the hell you reply, or rep, or report?

I think the less clutter the better. And as long as the user knows how to access the posting options from having read this thread (for example), then I think they'd find the interface easy to use.

Last edited by AvengingGibbons; 03-04-2013 at 01:17 PM..
Reply With Quote
  #166  
03-04-2013, 02:04 PM
MeechMunchie's Avatar
MeechMunchie
Sgt. Sideburns
 
: Mar 2009
: :noiƚɒɔo⅃
: 9,743
Blog Entries: 83
Rep Power: 31
MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)MeechMunchie  (14320)

The problem with "mystery meat" is simple - buttons are there to do something as quickly and intuitively as possible. Anything that makes buttons take longer and more confusing to use is therefore stupid.

I've been here for years, but if the text was taken off of the Edit/Quote/MQ/QR buttons, it would still take me a couple of seconds longer to post such enlightening diatribe as you are currently reading.

By my calculations, that would make a conservative total of five hours spent searching for buttons since joining. Do you realise how much wanking I could do in five hours!?


Last edited by MeechMunchie; 03-04-2013 at 02:10 PM..
Reply With Quote
  #167  
03-04-2013, 04:19 PM
Nate's Avatar
Nate
Oddworld Administrator
Rainbow of Flavour
 
: Apr 2002
: Seattle (woo!)
: 16,311
Blog Entries: 176
Rep Power: 41
Nate  (13497)Nate  (13497)Nate  (13497)Nate  (13497)Nate  (13497)Nate  (13497)Nate  (13497)Nate  (13497)Nate  (13497)Nate  (13497)Nate  (13497)

BTW: Don't forget that you're going to have to include the moderator options. On each post that would be an Infraction button and a checkbox, as well as two dropdowns for each thread. And don't get me started on the forum display page.
__________________
:
Spending as long as I do here, it's easy to forget that Oddworld has actual fans.

Reply With Quote
  #168  
03-05-2013, 11:43 AM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

:
BTW: Don't forget that you're going to have to include the moderator options. On each post that would be an Infraction button and a checkbox, as well as two dropdowns for each thread. And don't get me started on the forum display page.
One of the many puzzles that need solving. Moderator functions are handled by the conditional system. It checks if a user is a moderator and enables the right columns and forms if he is.
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.

Reply With Quote
  #169  
03-07-2013, 11:06 PM
Manco's Avatar
Manco
Posts walls of text
 
: Aug 2007
: based damage system
: 4,751
Blog Entries: 11
Rep Power: 29
Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)

If I can get a working demo of VBulletin then the mod options shouldn't be too much trouble.

I've spent a bit of time playing with Foundation. Here's a couple points:
  • I like having separate classes for a mobile grid and a desktop grid.
  • It still frustrates me how much code goes into the default - I think I might try isolating the CSS for the grid and building with it.
  • The grid can get rather ... Finicky if you don't handle the code just right. I noticed quite a few spots where using a certain HTML element would conflict with the grid styles for no apparent reason.
__________________


twitter (stream of thoughts)
steam (games i never play)

Reply With Quote
  #170  
03-21-2013, 12:42 PM
Sekto Springs's Avatar
Sekto Springs
Silent Contributor
 
: May 2003
: In the smile of every larvae.
: 7,350
Blog Entries: 75
Rep Power: 27
Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)Sekto Springs  (4398)

Mystery Meat sounds like a good forum theme, as long as it doesn't actually live up to it's namesake.
__________________
HAPPY HOL-ODD-DAYS!
I bought some powdered water, but didn't know what to add.

Reply With Quote
  #171  
03-21-2013, 12:51 PM
Manco's Avatar
Manco
Posts walls of text
 
: Aug 2007
: based damage system
: 4,751
Blog Entries: 11
Rep Power: 29
Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)

New ‘n’ Mystery



:
If I can get a working demo of VBulletin then the mod options shouldn't be too much trouble.

I've spent a bit of time playing with Foundation. Here's a couple points:
  • I like having separate classes for a mobile grid and a desktop grid.
  • It still frustrates me how much code goes into the default - I think I might try isolating the CSS for the grid and building with it.
  • The grid can get rather ... Finicky if you don't handle the code just right. I noticed quite a few spots where using a certain HTML element would conflict with the grid styles for no apparent reason.
I’m currently working on building up a version of the 1140px Grid System. It’s open source and hasn’t been updated in a while, but I’ve been able to add mobile-first functionality and a mobile-only grid with relative ease. It’s a lot lighter than Foundation and has all the functionality that I’m looking for, which is nice.

I also came across this article on responsive typography which got me thinking about where the best place to start with layout designs would be.

I’m of the opinion that the most important element of a forum is the user posts, so this is a logical place to start. There’s already been discussion on that, so – hooray?
__________________


twitter (stream of thoughts)
steam (games i never play)

Reply With Quote
  #172  
03-22-2013, 06:13 AM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

:
New ‘n’ Mystery




I’m currently working on building up a version of the 1140px Grid System. It’s open source and hasn’t been updated in a while, but I’ve been able to add mobile-first functionality and a mobile-only grid with relative ease. It’s a lot lighter than Foundation and has all the functionality that I’m looking for, which is nice.

I also came across this article on responsive typography which got me thinking about where the best place to start with layout designs would be.

I’m of the opinion that the most important element of a forum is the user posts, so this is a logical place to start. There’s already been discussion on that, so – hooray?
I've skimmed over that article a bit. Am I correct in understanding that the font size and type can be dynamically changed depending on the type of device or browser that used?

If so, is that really something we need? Personally I've never had a problem reading text on my phone, it's just the navigation that's a pain in the ass.
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.

Reply With Quote
  #173  
03-22-2013, 11:03 AM
Manco's Avatar
Manco
Posts walls of text
 
: Aug 2007
: based damage system
: 4,751
Blog Entries: 11
Rep Power: 29
Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)Manco  (14074)

:
I've skimmed over that article a bit. Am I correct in understanding that the font size and type can be dynamically changed depending on the type of device or browser that used?

If so, is that really something we need? Personally I've never had a problem reading text on my phone, it's just the navigation that's a pain in the ass.
No, it's more saying different devices will have different demands for reading text so you need to take that into consideration when creating your typography CSS - if you can adjust the text to be a little larger on a phone screen, for instance, then do it.
__________________


twitter (stream of thoughts)
steam (games i never play)

Reply With Quote
  #174  
03-22-2013, 11:23 AM
Nepsotic's Avatar
Nepsotic
8===========D~
 
: Aug 2011
: 5,425
Blog Entries: 91
Rep Power: 18
Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)Nepsotic  (3941)

How will images be handled? Will we be able to zoom in on them? (Assuming they'll just be resized)
__________________
:
all Meechmunchie did by trying to troll me was distract from the fact you all have no regard for Hetro or their rights at all, none.
- EVP_Glukkon/Oxide

Reply With Quote
  #175  
03-22-2013, 01:47 PM
Havoc's Avatar
Havoc
Cheesecake Apocalypse
 
: May 2003
: Netherlands
: 9,976
Blog Entries: 71
Rep Power: 29
Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)Havoc  (4126)

:
No, it's more saying different devices will have different demands for reading text so you need to take that into consideration when creating your typography CSS - if you can adjust the text to be a little larger on a phone screen, for instance, then do it.
Ah I see, yes that makes sense.

As for images, I too would like to see some sort of function that auto resizes images to the maximum page width (unlike now where a page can be stretched infinitely) and lets you click on them to see the true size. But that's stuff we need to look at once the basic theme is done.
__________________
The Oddworld Wiki

When one person suffers from a delusion it is called insanity. When many people suffer from a delusion it is called religion.


Last edited by Havoc; 03-22-2013 at 01:49 PM..
Reply With Quote
  #176  
04-02-2013, 03:23 PM
Git'Im's Avatar
Git'Im
Fuzzle
 
: Apr 2013
: Slig Detention Center
: 110
Rep Power: 12
Git'Im  (22)

:
I was interested in the prospect of a new Oddworld Forums Skin. So I decided to make one.

 photo NewOddworldForumsSkinJPEG_zps67e238a7.jpg

I'd call it something like the 'Magog Cartel Skin' or something like that.
The text needs completely redone ...maybe an oddworld themed font wouldn't go miss....

Other then that I like it man, did you do it on Microsoft paint?
__________________
“PEOPLE STANDING ON ESCALATORS - THAT IS A TESTIMONY TO HUMAN LAZINESS. I mean the guy who invented the escalator is just kicking himself in the ass!”
-Krist Novoselic

Reply With Quote
  #177  
04-02-2013, 03:41 PM
Slog Bait's Avatar
Slog Bait
Outlaw Sniper
 
: Dec 2008
: Middle of a desert
: 1,669
Blog Entries: 33
Rep Power: 18
Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)Slog Bait  (2520)

Dang dude, that post was forever and a day ago and has already been discussed to death.

Reply With Quote
  #178  
04-02-2013, 03:47 PM
Steamer_KING's Avatar
Steamer_KING
Outlaw Cutter
 
: Feb 2011
: Portugal
: 1,204
Rep Power: 14
Steamer_KING  (637)Steamer_KING  (637)Steamer_KING  (637)Steamer_KING  (637)Steamer_KING  (637)Steamer_KING  (637)

Git'Im, the Necrophaggot.
__________________

Reply With Quote
  #179  
04-03-2013, 12:26 AM
Fred The Fuzzle's Avatar
Fred The Fuzzle
Boombat
 
: Aug 2008
: Australia
: 246
Rep Power: 16
Fred The Fuzzle  (218)Fred The Fuzzle  (218)Fred The Fuzzle  (218)

Lighten up guys, Git'Im's obviously new.

Manco, how are things progressing?
Reply With Quote
  #180  
04-03-2013, 12:53 AM
Git'Im's Avatar
Git'Im
Fuzzle
 
: Apr 2013
: Slig Detention Center
: 110
Rep Power: 12
Git'Im  (22)

:
Git'Im, the Necrophaggot.
Thanks for your input ..correct me if I'm wrong but wouldn't it make you the homosexual as you keep following me around the forum where I post making jokes even a hyena wouldn't laugh at?

If you really admire my presence that much I'm sure I can send you a self portrait of me to fap at.
__________________
“PEOPLE STANDING ON ESCALATORS - THAT IS A TESTIMONY TO HUMAN LAZINESS. I mean the guy who invented the escalator is just kicking himself in the ass!”
-Krist Novoselic

Reply With Quote


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 








 
 
- Oddworld Forums - -