Worlds

Discussion in 'General Mayhem' started by kitana, Dec 10, 2001.

  1. Disorder

    Disorder New Member

    Messages:
    2,055
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Nursey:
    Cowards????Of what,exactly???
    Of being associated with a spineless piece of shit?You know-i think you have a point there!!!
    <HR></BLOCKQUOTE>

    if anyone wants to drop me a visit, my address is:

    24 coates road
    broadfields
    exeter
    devon
    ex2 5rw

    my daytime phone is 01392 412689 and my mobile is 07790373833, i have 2 email addresses, one disorder2001 and one disorder2002@hotmail.com.


    you are cowards, because you have no intention OF EVER going up against anyone strong in this place.. yes i know your type, its called a bully, its make friends with the strong people, prey on the weak.. isnt it? do you remember the times i went up against you? that is called 'balls', you will never have any...
     
  2. Nursey

    Nursey Super Moderator

    Messages:
    7,378
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Nursey:
    Cowards????Of what,exactly???
    Of being associated with a spineless piece of shit?You know-i think you have a point there!!!
    <HR></BLOCKQUOTE>

    *Pokes at Disorder with pointy stick*
    BACK...GET BACK I SAY!!!
     
  3. Disorder

    Disorder New Member

    Messages:
    2,055
    does this really look like the ramblings of a retard, or the structered intricacies of a man with BRAINS!!.. take a fucking look..


    Procedure RGBToHSV( R, G, B : Double; Var H, S, V : Integer );
    Procedure HSVToRGB( H, S, V : Double; Var R, G, B : Integer );
    Procedure SplitColour( Colour : LongInt; Var R, G, B : Integer );
    Function ColourToHex( Colour : LongInt ) : String;

    Implementation

    Uses Math, SysUtils;

    Procedure RGBToHSV( R, G, B : Double; Var H, S, V : Integer );

    Var
    MinCol : Double;
    MaxCol : Double;

    TH : Double;
    TS : Double;
    TV : Double;

    Begin

    { Convert all values to the range 0 - 1 }
    R := R / 256;
    G := G / 256;
    B := B / 256;

    { Get maximum and minimum values }
    MaxCol := Max( Max( R, G ), B );
    MinCol := Min( Min( R, G ), B );

    TV := (MaxCol + MinCol) / 2;

    { If the colours are the same (some kind of grey) set S and H to 0 and exit. }
    If MaxCol = MinCol Then
    Begin
    H := 0;
    S := 0;
    V := Floor( TV * 100 );
    Exit;
    End;

    If TV < 0.5 Then TS := (MaxCol - MinCol) / (MaxCol + MinCol);
    If TV >= 0.5 Then TS := (MaxCol - MinCol) / (2.0 - MaxCol - MinCol);

    If R = MaxCol Then TH := (G - B) / (MaxCol - MinCol);
    If G = MaxCol Then TH := 2.0 + (B - R) / (MaxCol - MinCol);
    If B = MaxCol Then TH := 4.0 + (R - G) / (MaxCol - MinCol);

    H := Floor( TH * 60.0 );
    S := Floor( TS * 100.0 );
    V := Floor( TV * 100.0 );

    If H < 0 Then H := H + 360;

    End;

    Procedure HSVToRGB( H, S, V : Double; Var R, G, B : Integer );

    Var
    Temp1 : Double;
    Temp2 : Double;

    RTemp : Double;
    GTemp : Double;
    BTemp : Double;

    Temp3 : Double;

    Begin

    { Convert all values to the range 0 - 1 }
    H := H / 360;
    S := S / 100;
    V := V / 100;

    { If there's no colour saturation then return the light value }
    { This results in a grey at the relevant light level. }
    If S = 0.0 Then
    Begin
    R := Floor( V * 256.0 );
    G := Floor( V * 256.0 );
    B := Floor( V * 256.0 );
    Exit;
    End;

    If V < 0.5 Then Temp2 := V * (1.0 + S);
    If V >= 0.5 Then Temp2 := V + S - V * S;

    Temp1 := 2.0 * V - Temp2;

    RTemp := H + 1.0 / 3.0;
    If RTemp < 0 Then RTemp := RTemp + 1.0;
    If RTemp > 1 Then RTemp := RTemp - 1.0;

    GTemp := H;
    If GTemp < 0 Then GTemp := GTemp + 1.0;
    If GTemp > 1 Then GTemp := GTemp - 1.0;

    BTemp := H - 1.0 / 3.0;
    If BTemp < 0 Then BTemp := BTemp + 1.0;
    If BTemp > 1 Then BTemp := BTemp - 1.0;

    If 6.0 * RTemp < 1 Then Temp3 := Temp1 + (Temp2 - Temp1) *6.0 * RTemp
    Else If 2.0 * RTemp < 1 Then Temp3 := Temp2
    Else If 3.0 * RTemp < 2 Then Temp3 := Temp1 + (Temp2 - Temp1) * ((2.0 / 3.0) - RTemp) * 6.0
    Else Temp3 := Temp1;
    R := Floor( Temp3 * 256.0 );

    If 6.0 * GTemp < 1 Then Temp3 := Temp1 + (Temp2 - Temp1) *6.0 * GTemp
    Else If 2.0 * GTemp < 1 Then Temp3 := Temp2
    Else If 3.0 * GTemp < 2 Then Temp3 := Temp1 + (Temp2 - Temp1) * ((2.0 / 3.0) - GTemp) * 6.0
    Else Temp3 := Temp1;
    G := Floor( Temp3 * 256.0 );

    If 6.0 * BTemp < 1 Then Temp3 := Temp1 + (Temp2 - Temp1) *6.0 * BTemp
    Else If 2.0 * BTemp < 1 Then Temp3 := Temp2
    Else If 3.0 * BTemp < 2 Then Temp3 := Temp1 + (Temp2 - Temp1) * ((2.0 / 3.0) - BTemp) * 6.0
    Else Temp3 := Temp1;
    B := Floor( Temp3 * 256.0 );

    End;

    Procedure SplitColour( Colour : LongInt; Var R, G, B : Integer );
    Begin

    R := Colour And 255;
    G := (Colour Shr 8) And 255;
    B := (Colour Shr 16) And 255;

    End;

    Function ColourToHex( Colour : LongInt ) : String;

    Var
    R : Integer;
    G : Integer;
    B : Integer;

    Begin

    SplitColour( Colour, R, G, B );
    ColourToHex := IntToHex( R, 2 ) + IntToHex( G, 2 ) + IntToHex( B, 2 );

    End;

    End.

    ---

    Var
    Red : Integer;
    Green : Integer;
    Blue : Integer;
    X : Integer;
    Y : Integer;

    SX : Integer;
    SY : Integer;
    DX : Integer;
    DY : Integer;

    DR : Double;
    DG : Double;
    DB : Double;

    Deg : Double;

    begin

    X := 0;
    Y := 0;

    Red := 0;
    Green := 0;
    Blue := 0;

    (*
    While Red <= 255 Do
    Begin

    While Green <= 255 Do
    Begin

    While Blue <= 255 Do
    Begin

    X := 512;
    Y := 400;

    {
    Y := Y - Red;
    X := X + Green;
    Y := Y + (Green Div 2);
    X := X - Blue;
    Y := Y + (Blue Div 2);

    }

    X := X + (Red + (Blue Div 2));
    Y := Y + (Green + (Blue Div 2));

    Form1.Canvas.Pixels[X Div 2,Y Div 2] := RGB( Red, Green, Blue );

    Inc( Blue, 2 );

    End;

    Inc( Green, 2 );
    Blue := 0;

    End;

    Inc( Red, 2 );
    Blue := 0;
    Green := 0;

    End;

    *)

    Deg := 0.0;
    While Deg < 359 Do
    Begin

    HSVToRGB( Deg, 99, 30, Red, Green, Blue );
    Form1.Canvas.Pen.Color := RGB( Red, Green, Blue );

    SX := 100 + Round(50.0 * cos( DegToRad( Deg ) ));
    SY := 100 + Round(50.0 * sin( DegToRad( Deg ) ));
    DX := 100 + Round(70.0 * cos( DegToRad( Deg ) ));
    DY := 100 + Round(70.0 * sin( DegToRad( Deg ) ));

    Form1.Canvas.MoveTo( SX, SY );
    Form1.Canvas.LineTo( DX, DY );

    Deg := Deg + 0.05;

    End;

    end;

    End.


    IMC.. i think you are a programmer, if you use object pascal, feel free to use these..
     
  4. Disorder

    Disorder New Member

    Messages:
    2,055
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Stranger:
    I'll stick up for ya Kit, cos I think that is a low act Disorder.
    You led her on and then laid the no-nuts cowardly guilt trip that it was her who ruined the scene. Yeah she is a little nieve, but it seems to me that you didn't tell her the full story if you were planning on slutting round the place. You certainly gave us the impression that you were pritty keen on her (and that you didn't even like wanker). So as far as I can see you are a con artist and you have taken advantage of her. Grow up and start treating women with respect if you are ever going to be the ladiesman you pitifully attempt too portray yourself to be. And give the girl the apology she deserves you coward.
    <HR></BLOCKQUOTE>


    yeah, thats it stranger, just act like the useless peice of garbage you are, and sway, and drift, side to side, with the movement of the greater body. you have no mass, you have no control, the only thing you can do is flow with the tides...
     
  5. D

    D New Member

    Messages:
    1,637
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Stranger:

    Face it Wanker, your a slut and we all know it. I used to wonder what Disorder saw in you, know I know.
    <HR></BLOCKQUOTE>

    And thats bad...?
     
  6. Emetic

    Emetic New Member

    Messages:
    897
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>The latest Disordered dissembling:
    does this really look like the ramblings of a retard, or the structered intricacies of a man with BRAINS!!.. take a fucking look..<HR></BLOCKQUOTE>
    We are looking. And what it looks like more than anything else is a sliming, would-be playa caught with his pecker hanging out in public and now, in Meltdown Mode, is fruitlessly back-tracking & trying to spin it as best he can.

    So keep on pissing on people's shoes & telling them that it's raining. Doesn't seem like Kitana - much less anyone else - is buying it. But it's really entertaining to watch.
     
  7. kitana

    kitana New Member

    Messages:
    5,555
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Nursey:
    WHOAH!!![/b]SOMEONE ALERT NAUSEOUS QUICK!!!!! [/B]<HR></BLOCKQUOTE>

    no! not nauseous!

    its education and castration and backyard domination...
     
  8. kitana

    kitana New Member

    Messages:
    5,555
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Disorder:
    you are cowards, because you have no intention OF EVER going up against anyone strong in this place..
    yes i know your type, its called a bully, its make friends with the strong people, prey on the weak.. isnt it? do you remember the times i went up against you? that is called 'balls', you will never have any...
    <HR></BLOCKQUOTE>

    isnt that what you are? Damned hypocrite, everyone is a hypocrite, but you just made a fool of yourself.
     
  9. kitana

    kitana New Member

    Messages:
    5,555
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by wank*:
    And thats bad...?<HR></BLOCKQUOTE>

    it will be when i have a pic of your infected genitalia in my collection...





     
  10. kitana

    kitana New Member

    Messages:
    5,555
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Disorder:

    yeah, thats it stranger, just act like the useless peice of garbage you are, and sway, and drift, side to side, with the movement of the greater body. you have no mass, you have no control, the only thing you can do is flow with the tides...
    <HR></BLOCKQUOTE>

    that's exactly what you are doing
     
  11. Dwaine Scum

    Dwaine Scum New Member

    Messages:
    11,130
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Disorder:


    as always, i would leave it to you lot, the no hopers, the people with more time than money in their pockets, and more biterness about their own situation than anyone i have encountered.. i am not a fucking retard.. i am going to london to start a business, its going to be a fucking GOOD business, and i WILL see my ROI!!!

    fuck you all..
    <HR></BLOCKQUOTE>

    Just so you know, i AM a successful bussiness owner... and a bully... right now I have $1800 USD ( approx 1000 UKP) in my pocket... Just thought Id Clarify something...
     
  12. Emetic

    Emetic New Member

    Messages:
    897
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by kitana:
    <HR></BLOCKQUOTE>
    I've always wondered just where the fuck these subjects come from, but more importantly: what was the crucial point or catalyst that led them to finally suspect maybe something's wrong & go see a doctor?

    HE: "Gee, honey, you know, those mushroom-sized chancres on your labia are starting to look a little ominous."

    SHE: "Oh, don't be silly - they're nothing."

    HE: "Hmph...if you say so....But...well...your clit..."

    SHE: "What about my clit?"

    HE: "Don't get me wrong - I like it being as big and floppy as a cow's tongue...but..."

    SHE: "But what?

    HE: "I'm really starting to hate the way pieces of it flake off and get stuck between my teeth!"
     
  13. D

    D New Member

    Messages:
    1,637
    Thats very good Tit. well done... thats exactly what my vadge looks like... And for some reason all the men I 'shag' dont seem to mind... Strange that


    There does seem to be the small problem here that people are taking this a bit too seriously...?
    I believe it was Kitana who said that people are different in 'real life' to this 'online' life... Although, I can see that for most people here they cant distinguish the difference between the two...

    not that that's a bad thing... most of the time
     
  14. Disorder

    Disorder New Member

    Messages:
    2,055
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by I Murder Children VIOLENTLY:
    Just so you know, i AM a successful bussiness owner... and a bully... right now I have $1800 USD ( approx 1000 UKP) in my pocket... Just thought Id Clarify something...<HR></BLOCKQUOTE>

    good for you dude, i have no time for anyone else in here anymore... going to see a girl that likes me a lot, one of many.. . and i am not just leaving because of this, i was going anyway, its what 'the last day' post was all about, the plan had just changed..

    so have a nice life everyone, i will


    ....................
     
  15. Emetic

    Emetic New Member

    Messages:
    897
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Disorder yelled over his shoulder:
    ...i have no time for anyone else in here anymore...i am not just leaving because of this, i was going anyway<HR></BLOCKQUOTE>


    "Run, Forrest, Run-n-n-n!"
     
  16. pimpchichi

    pimpchichi Active Member

    Messages:
    7,211
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Kitana:
    Eddie Sombrino, Coke Smuggler/Part Time Samaritan says:
    then what? what am i, i lyar? i dont lie? what i said to dawn was true, maybe i will get to see her, maybe not, but she wont betray me. that i am assured of, niether will nursey, or anyone else i know..
    <HR></BLOCKQUOTE>

    hmm betrayal... funny you should mention that because your (ex)-friend Nursey wouldn't betray you.... but she will confront you.... which she did after your downright shitty treatment of kitana....

    and as soon as she does what do you do??

    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally threatened by Disorder:
    would you like me to drop your address too?<HR></BLOCKQUOTE>

    threaten her with betrayal... nice one edson you slimy piece of shit....
     
  17. PinkorBrown69

    PinkorBrown69 New Member

    Messages:
    1,348
    *Gives the birdie*

    And don't come back!
     
  18. kitana

    kitana New Member

    Messages:
    5,555
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Emetic:

    <HR></BLOCKQUOTE>

    you should have put a scalpel or scissors or a knife in my hand
     
  19. kitana

    kitana New Member

    Messages:
    5,555
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Cheezedawg:
    If there was anything on my cock that didn't belong there.... you're damn right I'd be at the doctor. Do you think I'd try to scrape it off? But if my crotch looked like that guy's... I wouldn't go to a doctor. I would simply put a bullet in my head.<HR></BLOCKQUOTE>

    hey, cheeze, if anything starts growing on your cock, drop me a line, i will cut it off for you
     
  20. pimpchichi

    pimpchichi Active Member

    Messages:
    7,211
    <BLOCKQUOTE><font size="1" face="verdana">quote:</font><HR>Originally posted by Disorder:
    if anyone wants to drop me a visit, my address is:

    24 coates road
    broadfields
    exeter
    devon
    ex2 5rw

    my daytime phone is 01392 412689 and my mobile is 07790373833, i have 2 email addresses, one disorder2001 and one disorder2002@hotmail.com.
    <HR></BLOCKQUOTE>

    isn't that the place you've just told everybody you're leaving... damn.. how brave of you

    <BLOCKQUOTE><font size="1" face="verdana">quote
    moi?

    <BLOCKQUOTE><font size="1" face="verdana">quote
    but eddison... i am the 'strong' in this place... i have been ever since i joined... and i didn't gain the respect of my peers by name-dropping and imitating the 'stronger' of the forum, but by carving out my own niche and seeing off those who would try and take me on...

    <BLOCKQUOTE><font size="1" face="verdana">quote
    no, just intolerant of fools...

    <BLOCKQUOTE><font size="1" face="verdana">quote
    actually it's more aboutta da humour... i make friends with the people i like... and prey on the rest...

    <BLOCKQUOTE><font size="1" face="verdana">quote
    LOL.. yeah.. and came away smarting... do you remember the times you came to me in messenger sulking after 'taking me on' and coming off worse...

    <BLOCKQUOTE><font size="1" face="verdana">quote
    oh wait.. i see... you quoted nursey before this rant... well i guess you have her there... she will never have any balls... being female and all...

    but she'll always have more balls than you
     

Share This Page