Apply for an award. [Updated rules]

I'd suggest removing the league camp poster award. I go there all the time but it now seems to be filling with spam bots.
 
Name of award: Beginner Poster
Why you deserve the award(s)(25 words minimum): I've had 500 posts for over a year.

Name of award: Master Troller
Why you deserve the award(s)(25 words minimum): Trolled Michael to the point of insanity causing him to Q.Q and dump his User/Pass in the lobby and delete all of my rep.

Name of award: Ass Wipe
Why you deserve the award(s)(25 words minimum): Ask around the forum...or just ask Glen himself.
 
Pro said:
Name of award: Beginner Poster
Why you deserve the award(s)(25 words minimum): I've had 500 posts for over a year.

Name of award: Master Troller
Why you deserve the award(s)(25 words minimum): Trolled Michael to the point of insanity causing him to Q.Q and dump his User/Pass in the lobby and delete all of my rep.

Name of award: Ass Wipe
Why you deserve the award(s)(25 words minimum): Ask around the forum...or just ask Glen himself.

FUCK YEAH TROLLING, I'M A PRETTY COOL GUY FOR MAKING OTHERS HAVE A BAD TIME.
 
Name of award: Master Troller
Why you deserve the award(s)(25 words minimum): Trolled Michael to the point of insanity causing him to Q.Q and dump his User/Pass in the lobby and delete all of my rep. Known to drive users who oppose me to insanity.
 
Pro said:
Name of award: Master Troller
Why you deserve the award(s)(25 words minimum): Trolled Michael to the point of insanity causing him to Q.Q and dump his User/Pass in the lobby and delete all of my rep. Known to drive users who oppose me to insanity.

Approved, 4 remaining.
 
Name of award: Swagger
Why you deserve the award(s)(25 words minimum): I should have it because I deserve it. I am a mod and therefore I will not abide to the 25 words minimum rule.
 
Adam said:
Name of award: Swagger
Why you deserve the award(s)(25 words minimum): I should have it because I deserve it. I am a mod and therefore I will not abide to the 25 words minimum rule.

That's up to @"Mike"
 
@"Carbon"

Programmer
programmer.png
: Members who know their stuff in regards to programming languages.

Created programs, both big and small, in Pascal, Java and C. Also know HTML, CSS and JS.
Here's a very small example in Pascal of a program that creates 10 small, random coloured bikes and prints them to random locations in a 800 x 400 sized window. It uses my own game engine.

program Bikes;
uses myLibrary;
const WHEEL_SIZE = 10;
const WHEEL_GAP = 10;
const SEAT_GAP = 5;
const BIKE_WIDTH = 50;



procedure DrawBike(x, y : Integer);
var
leftWheel, rightWheel: Single;
seatX, seatY: Single;
wheelY : single;
rndColour : Color;
begin
rndColour := RandomRGBColor(255);
leftWheel := x + WHEEL_SIZE;
rightWheel := leftWheel + WHEEL_SIZE * 2 + WHEEL_GAP;
wheelY := y + WHEEL_SIZE + SEAT_GAP;
seatX := (rightWheel - leftWheel) / 2.0 + leftWheel;
seatY := y + SEAT_GAP;

DrawCircle(rndColour, leftWheel, wheelY, WHEEL_SIZE);
DrawCircle(rndColour, rightWheel, wheelY, WHEEL_SIZE);
DrawTriangle(rndColour, leftWheel, wheelY, rightWheel, wheelY, seatX, seatY);
DrawLine(rndColour, rightWheel, wheelY, rightWheel, y);
end;

procedure Main();
var
x, y: Integer;
count : Integer;

begin
OpenGraphicsWindow('Bike Race!', 800, 400);
LoadDefaultColors();
ClearScreen(ColorWhite);
count := 0;

while count <> 10 do
begin
x := Random(750);
y := Random(350);

DrawBike(x, y);
count += 1;
end;
repeat
ProcessEvents();
RefreshScreen();
until WindowCloseRequested();
end;

begin
Main();
end.
Risk Taker
risktaker.png
: A member who has been proven to take risks.

I'm the only one here who has created a bot farm on RS with 'xxxxBot' in every username. Not only that, I close to suicide botted most of them (including SW) and still they're untouched. No bans. That's gotta count for something.. :)
Debater
debate.png
Earn this by proving yourself worthy in the Debates section.

Put loads of time into a few debates.
Grammar Nazi
grammar.png
Because grammar matters.... to you.

Meh. Near perfect grammar in every post.
Master Troller
troll.png
You have to pull a good stunt to receive this award.

Ask Mike. lul
 
Name of award: Swagger
Why you deserve the award(s)(25 words minimum): Known mike since before I knew him. Hockeynut35 and Techn0. There was also that time I got a girl to blow you under the bleachers in highschool. @"mike"
 
Back
Top