| The Rainbow Force! | |
|
|
Author | Message |
---|
eblu
Posts : 181 Join date : 2013-09-06
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 1:23 am | |
| |
|
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 5:25 am | |
| I have enough points to buy shit now so I will buy Shaded Emerald please. |
|
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | |
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | |
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 11:38 am | |
| |
|
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 12:36 pm | |
| |
|
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 12:43 pm | |
| 7/10
that explains the halo I guess you're doing serious make-up ass kissing to the gods of FUALL |
|
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 3:19 pm | |
| me kissing up to the FUALL gods:- Spoiler:
-
|
|
 | |
dragonslayer oddish

Posts : 363 Sand : 376 Reputation : 1 Join date : 2013-08-21 Location : in ur pants soon enough ;) Age : 18
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 4:31 pm | |
| _________________  Tumblr: |
|
 | |
Keatonlabs

Posts : 11 Sand : 11 Reputation : 0 Join date : 2014-02-17 Age : 17
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 5:26 pm | |
|  These graphics were amazing back then
Last edited by Keatonlabs on Tue Feb 25, 2014 7:27 pm; edited 1 time in total |
|
 | |
eblu

Posts : 181 Sand : 189 Reputation : 2 Join date : 2013-09-06 Location : ci hell Age : 16
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 5:26 pm | |
| @ Mana: 4/10 _________________ GLORY AND JOY TO THE ALMIGHTY SPRING |
|
 | |
CasualCollision Admin

Posts : 607 Sand : 637 Reputation : 10 Join date : 2013-08-21 Location : Redneck Land Age : 21
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 6:45 pm | |
| - Manaman wrote:
- me kissing up to the FUALL gods:
- Spoiler:
-
You have to use your entire body. #hugjob _________________ (20:20:45) Skyralie: @ TheMayorOfChaopolis: yOYOYOYO WE GOTTA YIFF IN A BIT
|
|
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Tue Feb 25, 2014 9:46 pm | |
| - Keatonlabs wrote:

These graphics were amazing back then
4/10   dang did I really look like that back then EDIT: Gave keaton some marks and  IM SO SORRY
Last edited by JmTsHaW on Wed Feb 26, 2014 7:06 pm; edited 5 times in total |
|
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 7:27 am | |
| @ Billy: 3/10
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ Keaton: 2/10
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ Will: Would pole dancing on his dong work too? - 4/10
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ JmT: 3/10, 4/10, and finally a glorious 7/10. |
|
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 7:54 am | |
|  All hail ricky our benevolent gay satan of FUALL
Last edited by CasualCollision on Wed Feb 26, 2014 3:58 pm; edited 1 time in total (Reason for editing : Edited your edit. No nudity is permitted, not even artistic nudity.) |
|
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 7:57 am | |
| @ JmT: 8/10, I'm thoroughly impressed. (Also I'm now a MANa.) |
|
 | |
Jeffery Mewtamer
Posts : 38 Sand : 38 Reputation : 0 Join date : 2014-02-16 Location : Sitting in a Dark Room Age : 31
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 2:12 pm | |
| You like rainbows? Here, have all 16,777,216 colors of the 24-bit RGB Colorspace! If the image upload worked properly, the linked image should be 4096x4096. For those interested, her is the C++ code used to generate that image)naturally, I fed the resulting ppm file through a png optimizaer since ASCII ppms are Huger than the original xbox. - Code:
//Program Name: Pallette //Author: Jeffery Wright //Date: 2014/02/23 //Description: Creates an ASCII Portable Pixelmap of the 24-bit RGB Colorspace.
#include <iostream> #include <cstdlib> #include <fstream>
using namespace std;
int main() { //create reference for file ofstream out; out.open("pallette.ppm"); //connect program to physical data file out << "P3" << endl; out << "4096 4096" << endl; out << "255" << endl;; for (int r = 0; r < 256; r++) { for (int g = 0; g < 256; g++) { for (int b = 0; b < 256; b++) { out << r << " " << g << " " << b << endl; } //end for } //end for } //end for out.close(); //put things back the way we found them system("pause"); return 0; } //end main
Also, if I have enough points saved up, I would like to buy Shadowed Amethyst. |
|
 | |
CasualCollision Admin

Posts : 607 Sand : 637 Reputation : 10 Join date : 2013-08-21 Location : Redneck Land Age : 21
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 4:02 pm | |
| I edited your post JmT, to make it even more beautiful whilst simultaneously making it acceptable for FUALL guidelines. Do I get points, Mana? :3c _________________ (20:20:45) Skyralie: @ TheMayorOfChaopolis: yOYOYOYO WE GOTTA YIFF IN A BIT
|
|
 | |
dragonslayer oddish

Posts : 363 Sand : 376 Reputation : 1 Join date : 2013-08-21 Location : in ur pants soon enough ;) Age : 18
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 4:57 pm | |
| what does an archer use on a stormy day - Spoiler:
-
a rain bow
_________________  Tumblr: |
|
 | |
eblu

Posts : 181 Sand : 189 Reputation : 2 Join date : 2013-09-06 Location : ci hell Age : 16
 | |
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 6:49 pm | |
| |
|
 | |
eblu

Posts : 181 Sand : 189 Reputation : 2 Join date : 2013-09-06 Location : ci hell Age : 16
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 7:24 pm | |
| _________________ GLORY AND JOY TO THE ALMIGHTY SPRING |
|
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 7:50 pm | |
| @ Jeffery: Not exactly eye-pleasing, but highly related nonetheless. - 10/100 for the image being done yourself although not exactly art, 4/10 for being related to rainbows, and 3/10 for the comedy of it.
Now then, that brings you up to having just barely enough to afford another color.- - - Payment accepted. Jeffery, the Ancient Sage of Shadowed Amethyst (Color Code: 4A00BF) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ Will: 4/10, no fun allowed.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ Billy: 4/10
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ Eboy: 7/10, I laughed my ass off at that the other day.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ JmT: 7/10, if I had admin powers I would change the site banner to 'NO FUN ALLOWED'.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ Eboy again: 10/100 for making something, and 5/10 because the song was funny. |
|
 | |
CasualCollision Admin

Posts : 607 Sand : 637 Reputation : 10 Join date : 2013-08-21 Location : Redneck Land Age : 21
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 7:56 pm | |
|  This can be meant both ways. _________________ (20:20:45) Skyralie: @ TheMayorOfChaopolis: yOYOYOYO WE GOTTA YIFF IN A BIT
|
|
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 8:06 pm | |
| 4/10 DIIIIIIIIIIIIIIIIIIIIIIIIIIIIIICKS |
|
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 9:18 pm | |
| |
|
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 9:19 pm | |
| |
|
 | |
Keatonlabs

Posts : 11 Sand : 11 Reputation : 0 Join date : 2014-02-17 Age : 17
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 9:25 pm | |
| |
|
 | |
Vapor Co-Owner

Posts : 457 Sand : 493 Reputation : 8 Join date : 2013-08-21 Location : hell Age : 22
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 10:26 pm | |
| @ Joshy: I can only give so many points for game edits so 40/100, and 10/10 for humor. (Best thing yet.)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ Keaton: 2/10 |
|
 | |
eblu

Posts : 181 Sand : 189 Reputation : 2 Join date : 2013-09-06 Location : ci hell Age : 16
 | Subject: Re: The Rainbow Force! Wed Feb 26, 2014 10:49 pm | |
| jmt you win _________________ GLORY AND JOY TO THE ALMIGHTY SPRING |
|
 | |
JmTsHaW

Posts : 93 Sand : 105 Reputation : 5 Join date : 2013-08-21 Location : Wales, UK Age : 20
 | Subject: Re: The Rainbow Force! Thu Feb 27, 2014 5:30 am | |
| - eboyblue3 wrote:
- jmt you win
- Spoiler:
-
I'll buy shaded grass now please
|
|
 | |
Sponsored content
 | Subject: Re: The Rainbow Force!  | |
| |
|
 | |
| The Rainbow Force! | |
|