View Full Version : KJ is totally innocent!
Hes not a faggot, just easily offended when confronted with his countries politicians.
Nightbrother
28-11-2008, 19:34
Squirrel droppings > everyone here
KJ isn't too bad, he just takes stuff too seriously sometimes
This thread made me think of.
http://i243.photobucket.com/albums/ff50/dolop_ghani/shit.jpg
tbh
There's a separate thread for posting pictures of yourself LiL T.
/*
Project - faget
Test whether crazy is a faget
*/
#include <iostream>
using namespace std;
int main()
{
int kj;
int crazy;
KJ = 1;
Crazy = 0;
if(kj >= crazy) cout << "crazy is a faget";
Return 0;
}
crazy is a faget
ahahaha we need the built exe tbh...
ahahaha we need the built exe tbh...
I'm making a better version, one which asks for a user to enter values however it will be made *cough* unfair *cough* acurrate.
build it and put it on rapidshare, i cba building shit while under massiv mdma rush :D
Its done just need to compile then test it.
lol LiL T, finding ways to motivate you learning programming I see ^_^
Yah ^^ but its not working properly yet >.<
http://postdownload.filefront.com/12503693//95582efb5fff48ce9670b6dbbfe63b9d2c129e36c9a34e6920 1da857f6ab821e33416bb4e7e21b9f
Ok its done and it has to be ran in dos command prompt because thats all I know how to do atm.
If you run it outside of command prompt it will close the window and you wont see the result thats all...
/edit I can see a potential looping problem, oh well...
/edit does not loop but its not how I wanted it to act
Hahahaha it fucking funny :D
/*
Project - faget
Test whether crazy is a faget
*/
#include <iostream>
using namespace std;
int main()
{
int kj;
int crazy;
int yn;
kj:
cout << "Enter rating of 0 being bad and 5 being great for kj\n";
cin >> kj;
if(kj > 5) {
cout << "\n";
cout << "not higher than 5 retard\n";
goto kj;
}
if(kj <= -1) {
cout << "\n";
cout << "unrealistic value you retard\n";
goto kj;
}
crazy:
cout << "Enter rating of 0 being bad and 5 being great for Crazy\n";
cin >> crazy;
if(crazy >= 1) {
cout << "\n";
cout << "I think you're a faget try again\n";
goto crazy;
}
check:
if(crazy <= 0) {
cout << "I guess you really hate crazy huh :) 1 yes 0 no\n";
cin >> yn;
}
if(yn == 1) {
cout << "\n";
cout << "good\n";
goto result;
}
if(yn == 0) {
cout << "\n";
cout << "you fucking faget >.< wrong answer now I eat your hardisk oom nom nom ... j/k\n";
goto check;
}
result:
if(kj > crazy) {
cout << "\n";
cout << "crazy is indeed a faget :D\n";
goto end;
}
if(kj == crazy) {
cout << "\n";
cout << "you retard you messed everything up try again...\n";
goto kj;
}
end:
return 0;
}
I learned quite alot actually :p
meh, I'm such a sad cunt.
or I eat your hard disk om nom nom... rofl
just add in:
system("pause");
at the end of the code before the return statement and it'll leave the window open after the programs run until you hit the "any key" =)
Hahahahah this is like the best lesson in programming since hello world!
or I eat your hard disk om nom nom... rofl
just add in:
system("pause");
at the end of the code before the return statement and it'll leave the window open after the programs run until you hit the "any key" =)
Ah thanks :)
instead of :
int kj;
int crazy;
int yn;
try :
int kj, crazy, yn;
Both ways work but eventually you may find yourself with a ton of int, float, whatevers, you can then separate them like :
int int1, int2, int3, int4... int 574656992346
float float1, float2, float3, float4
Lexx don't you like have a playground near you to terrorize, thought you vowed never to return here again....
he was being helpful and you beat him down with the almighty fist of make believe justice?
I'm just asking him things can't i?
instead of :
int kj;
int crazy;
int yn;
try :
int kj, crazy, yn;
Both ways work but eventually you may find yourself with a ton of int, float, whatevers, you can then separate them like :
int int1, int2, int3, int4... int 574656992346
float float1, float2, float3, float4
I knew that but I like having them going vertical down makes it easyer to read for me :), I know its crap but while I'm learning its just easyer for me.
pixel defending lexxuk against!!!
I think pixel has stockholm syndromekiss
If it works for you, and is helping you learn keep doing it! Programme looks easily modifiable to using else - else if too.
I've not got that far yet, only things I've used so far are: for, if, goto, cout, cin, system, int (aswel as double) and maybe some others.
goto is not objected oriented:(
Only language I seen that had goto was in qbasic, and that was back in college, and qbasic is a really old language.
goto is not objected oriented:(
Only language I seen that had goto was in qbasic, and that was back in college, and qbasic is a really old language.
Well it works for what I was after at the time, I remember using goto in qbasic when I messed around with that as a kid, so I checked it out and sure enough it works.
/edit you have to understand I'm a complete nub and don't know a lot yet.
if and else are the same boat kinda
if (x = true)
{
then
}
else if (y = true)
{
then
}
else (z = true)
{
so
}
Oh I think I understand what you mean now...
Example
start:
cout << "Enter weight\n";
cin >> weight;
If(weight < 50)
{
cout << "sorry You need to be at least 51kg\n";
goto end;
}
else if(weight > 100)
{
cout << "sorry you need to be under 100kg\n";
goto end;
}
else goto start;
end:
return 0;
}
I'm sure I've done it wrong but i'll go look into it, you had me confused >.>
lil t, I've already said it before, don't use goto's, learn classes/functions, a goto is not object oriented, it's going to really hurt you in the long run if you get into a habit of using it. Learn the correct way now, instead of later.
Just trying to help out, take it how you want.
lil t, I've already said it before, don't use goto's, learn classes/functions, a goto is not object oriented, it's going to really hurt you in the long run if you get into a habit of using it. Learn the correct way now, instead of later.
Just trying to help out, take it how you want.
I will...
#include <iostream>
using namespace std;
int main()
{
int weight;
start:
cout << "Enter weight\n";
cin >> weight;
if(weight < 50)
{
cout << "sorry You need to be at least 51kg\n";
goto end;
}
if(weight > 100)
{
cout << "sorry you need to be under 100kg\n";
goto end;
}
else
{
goto start;
}
end:
return 0;
}
That works just tested it I had to know how it worked, now I'll go learn classes and functions, I can see Pete is getting annoyed...
What the sweet fuck have you faggot nerds done to my thread?
It was made useful, unlike you:closedeye
posts that just say 'lol', 'rofl', 'lmfao', etc... are not useful either.
http://www.laughparty.com/funny-pictures/People-Think-Youre-Funny-1287.jpg
pixel, don't start with me, I'll just end up saying something that upsets you, I was just trying to make a point...
yes pete :p
try and make the one point in the one thread rather than spreading your bullshit consistently over ever active thread though, ok?
You're the one that makes it easy for me to do it.
conflict is fun, I'm willing to keep it to after hours, but...
then keep it in after hours :p
its not hard, never is with you... x)
I meant I'm willing to keep it in afterhours if you don't mod it, but that's not possible with you...:shock:
So your saying you can't win an argument on points, and need anything offensive to her to prove your point?
awwww
AWWWW
Pete I really feel sorry for you, having nothing better to do with your time than feel sorry for yourself. You've got issues!
Yea, I got issues pixel, want me to link like about 250 posts from this forum with you talking about issues you have?
vamp, I don't need anything offensive against her to prove a point, against that causes conflict she will fine offensive.
So I guess yes to your question, since everything will be offensive to her if it's against her:)
sigh, pete this broken record has been going on for weeks! I was going to leave you to see how long it would take you to shut up but TWO WEEKS PETE, TWO WEEKS!
lol
I was going to leave you
LEAVE ME?!?!?!?! LEAVE ME!!!!!!!!!!!!?????? But I love you so much!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
oO
Wtf do you mean leave me?
ZOMG
I do love you Pete, but I wouldn't want to ruin our friendship for a short term relationship, I'd rather just remain friends, I'm sorry...
Don't think this means I don't like you, because I do, and I always will, but I just don't think we would work, you know?
No, seriously, you said you wanted to leave me to see if I shut up, I don't know wtf you meant by thatoO
ahhh, k, so you wanted to take attention off the current topic?:p
How?
Remember, I'm not into drugs, so I don't take them and see fucked up meanings in tv shows...
You guys are lucky I cba to turn off google safesearch on this laptop cos there woulda been a massive horse cock posted in this thread right about now.
I don't know how to turn off google safesearch or I'd post horse porn right now
Good crazy, you're the only one that wants to see it anyways...
Good crazy, you're the only one that wants to see it anyways...
agreed!
Yeah thats why I said you guys are lucky.
Fags.
LISTEN TO ZIS: http://deviant.anarchy-breed.co.uk/tmp/random5.mp3
this thread needs more lmfaokiss imo.
/*
To test fuctions.
*/
#include <iostream>
using namespace std;
void start(); //function 1
void end(); //function 2
int weight;
int c;
int main()
{
c = 0;
start();
if(weight < 50)
{
cout << "sorry You need to be at least 50kg\n";
c = 1;
end();
}
if(weight > 100)
{
cout << "sorry you need to be under 100kg\n";
c = 1;
end();
}
if(c == 1)
{
main();
}
return 0;
}
// Functions
void start()
{
system("cls");
cout << "Enter weight\n";
cin >> weight;
}
void end()
{
cout << "\n";
cout << "\n";
cout << "\n";
cout << "\n";
system("pause");
}
There you go Pete I learned functions now no more goto.
awww
You listened to me lil t:p<3
/*
To test fuctions.
*/
cout << "\n";
cout << "\n";
system("pause");
}
There you go Pete I learned functions now no more goto.
If you put the same amount of effort into trying to stop being a faggot as you do into coding then you'd probably be fagfree in a few months.
Do you do group seminars?
Sorry Lil wasn't here to reply to the if/else. If Else is conditional logic or whatever, so if anything in the if, if/else is true then the condition is met so its ENDIF, so something like
if (weight < 50)
{
too thin
}
else if (weight >= 50 && <= 100)
{
getting fat
}
else if (weight >=101 && <= 150)
{
fat bastards
}
else
{
other conditional conditions
}
so say you put the weight in as 140, the first IF condition isn't met, so it goes to the 1st else if, which again isnt met so it goes to the 2nd else if which is met, so it does whatever you have put between the { } and skips the final ELSE and continues with the programme.
/edit -formatting 101
the E of Else should line up with the I of If...
if
else if
else if
else if
else
I keep my (else if / else)'s in line with the original if, guess it's just a matter of preference/standard but I find it easier and made more sense that way.
Unless ofc there is a subsequent if/else if/else within the scope of another if/else if/else statement, in which case I would indent further.
I now know && means AND but why does this not work
if(weight >= 50 && <= 100) c = 0;
The piece of shit keeps spiting out syntax error : '<='
Which should mean less or equal 100 right?
try
if((weight >= 50) && (weight <= 100)) c = 0;
btw after && put in 'weight' again and you're original code should run, i just have a obsessive compulsive disorder with brackets ^_^
so if(weight >=50 && weight <= 100) c=0;
I wish that lexxuk would just go away:(
Makes me sick knowing that a pedophile is lurking around the froum:secret:
/*
To test functions.
*/
#include <iostream>
using namespace std;
void start(); //function 1
void end(); //function 2
void check(); //function 3
int weight;
int c;
int main()
{
c = 0;
start();
check();
if(c == 1)
{
end();
}
if(c == 1)
{
main();
}
return 0;
}
// Functions
void start()
{
system("cls");
cout << "Enter weight\n";
cin >> weight;
}
void end()
{
cout << "\n";
cout << "\n";
cout << "\n";
cout << "\n";
system("pause");
}
void check()
{
c = 1;
if((weight >= 50) && (weight <= 100)) c - 1;
if(c = 1) cout << "you need to be between 50 and 100kg\n";
}
Sigh, it compiles it but when I run it its not exiting the program when weight requirements are met, which are between 50 and 100. 'c' is set to '1' once the function check is called but is meant to be set to '0' if the weight requirements are met. Then when it goes back in main it will check 'c' and if its '1' = true it should call main again if its '0' it will exit the program. It just keeps calling main regaurdless :mad:
I keep my (else if / else)'s in line with the original if, guess it's just a matter of preference/standard but I find it easier and made more sense that way.
Unless ofc there is a subsequent if/else if/else within the scope of another if/else if/else statement, in which case I would indent further.
If I didn't use proper formatting (lining up the text properly) my programming assignments would be returned to me with a "use proper formatting!!".
I can't test if VS lines it up properly cause thats on 2008 and I really cba to reboot atm >.<
If I didn't use proper formatting (lining up the text properly) my programming assignments would be returned to me with a "use proper formatting!!".
I can't test if VS lines it up properly cause thats on 2008 and I really cba to reboot atm >.<
I just had to double check there that I didn't accidentally type in a url for a pedophile forum instead of FA.
/*
To test functions.
*/
#include <iostream>
using namespace std;
void start(); //function 1
void end(); //function 2
void check(); //function 3
int weight;
int c;
int main()
{
c = 1;
start();
check();
if(c == 1)
{
end();
}
if(c == 1)
{
main();
}
return 0;
}
// Functions
void start()
{
system("cls");
cout << "Enter weight\n";
cin >> weight;
}
void end()
{
cout << "\n";
cout << "\n";
cout << "\n";
cout << "\n";
system("pause");
}
void check()
{
if(weight >= 50 && weight <= 100) c = 0;
if(c = 1) cout << "you need to be between 50 and 100kg\n";
}
Man this does not work either, its really doing my nut in...
Set
"if(weight >= 50 && weight <= 100) c = 0;"
To
"if(weight >= 50 && weight <= 100) c = 1;"
?
void check()
{
if(weight >= 50 && weight <= 100) c = 0;
if(c == 1) cout << "you need to be between 50 and 100kg\n";
}
OMFG I've highlighted the bit that was missing in red to make it work, this shit is sick :secret: because I did not have that it must have been setting it to 1 everytime weird.
That's how programming is, one little mistake can mess up a program, just wait until you get into using a database, messing up one little thing can completely fuck up data.
I work with a lot of sales transaction data at work, getting a call because a transaction did not go through right, then looking at it, seeing there was an error in the code, and then thinking about how many other ones might be messed up like it:(
OMFG I've highlighted the bit that was missing in red to make it work, this shit is sick :secret: because I did not have that it must have been setting it to 1 everytime weird.
hehe, yeah at least afaik with c++ it won't detect most semantic errors like that, and since the syntax is all correct you won't realize until you start debugging/running the prog and getting strange results ^_^.
OMFG I've highlighted the bit that was missing in red to make it work, this shit is sick :secret: because I did not have that it must have been setting it to 1 everytime weird.
Stuff like that gets much more annoying when you're towards the end of the 16th hour of programming for the second day in a row >.<
I just had to double check there that I didn't accidentally type in a url for a pedophile forum instead of FA.
Nice for you to admit you actually know the urls to such sites, but keep it to yourself, no one else is interested.
lexxuk wished little girls were interested...
What exactly did lexxuk do to get this reputation anway? He makes me uneasy atm :\
He tried to lure pixel(when she was 14) to his house for sex, and astrix(I think she's 18 right now?) to his house back in nc 1(which was like over 4 years ago?)... no one really knows how many girls, I'm 100% there are more.
So in your eyes, he's more of a sicko than me? Because that would be awesome! :D
giga, I have no problems with you, you have problems with yourself and try to make others listen to them, but whatever...
but lexxuk on the other hand... he's really sick in the head.
giga, I have no problems with you, you have problems with yourself and try to make others listen to them, but whatever...
but lexxuk on the other hand... he's really sick in the head.
OK, so this cybering thing that you keep trying to accuse me of... you'll admit now that it's BS?
no?
trying cyber is way better than trying to lure under aged girls to your parents basement...
no?
trying cyber is way better than trying to lure under aged girls to your parents basement...
Haha, you're so relentless. Some guys find that attractive
being gay is a close second...
being gay is a close second...
The question is, on this forum, which would I rather be?
Nice for you to admit you actually know the urls to such sites, but keep it to yourself, no one else is interested.
Apart from you, since you're a paedophile and try to invite underage girls over the net back to your home for sex.
What exactly did lexxuk do to get this reputation anway? He makes me uneasy atm :\
Pete pretty much got it spot on. We have a grade-A paedophile in our presence here.
oh, and lexxuk I think is over 30 now...
Apart from you, since you're a paedophile and try to invite underage girls over the net back to your home for sex.
Pete pretty much got it spot on. We have a grade-A paedophile in our presence here.
I'm not the one who openly admitted to having links to peaophile forums. if actual admission to such things is an admission of guilt then your previous statement would be correct.
@giga, sociopathic attention whore, known liar etc. spread bullshit to other people (clur) which those of an IQ lower than 0 seem to believe. I wouldn't really worry about it, I'm not. Same sort of people who believe I live in a basement, you know the sort ;)
Lexx instead of denying the sad truth seek help, chemical castration will do you lots of good! Honest!
I'm not the one who openly admitted to having links to peaophile forums. if actual admission to such things is an admission of guilt then your previous statement would be correct.
I'm not one who openly admitted to having links to paedophile forums either you faggot. Of course you would never admit it, you want to keep the fact that you are a paedophile a secret, I can fully understand that.
I just had to double check there that I didn't accidentally type in a url for a pedophile forum instead of FA.
I again quote where you openly stated you almost typed in a link to a paedophile forum, which would be an open admission that you have links to such forums, idiot.
Hahaha o man digging around the old history files brings up some tasty shit.
http://www.furious-angels.com/showthread.php?p=34776#post34776
im cold :(
i'll warm you up GROUPSEX
changed sig to scar :p
brb gonna go get changed :sleep:
dont ever change, your perfect the way you are love love love love
suck up lexx she's 15
1 and 5
15
aye, get em whilst their hot I say, then when they are 16, drag em to gretna green!! (remember kids, no sex before marraige :D)
Golly gosh good sir I do believe that you are a paedophile.
Watch out or he'll call his team of imaginary elite lawyers to sue you for libel!
For anyone that wants to fuck with lexx, just pretend you're a 14 year old girl, and tell him you hate the tv show 'to catch a predator', he would be all over you, trying to get you to go to his parents basement.
He has me blocked, so don't worry about him reading this.
Watch out or he'll call his team of imaginary elite lawyers to sue you for libel!
I would, but I would also have to sue Hinch and his web host at the same time, and I actually like Hinch. Crazy would have to prove what he is said is true, and as it is not true there is no possible way he could prove what he said is true so would lose, that would open up Hinch, Hinch's host and Crazy to an award of upto £250,000 each. There would be no fee on my part (no win, no fee with after case insurance whereby the solicitors recover costs from hinch, hinch's host and crazy).
Whilst I would happily sue crazy, and of course let people know which court he would be appearing at, I wouldn't sue hinch.
@giga, sociopathic attention whore, known liar etc. spread bullshit to other people (clur) which those of an IQ lower than 0 seem to believe. I wouldn't really worry about it, I'm not. Same sort of people who believe I live in a basement, you know the sort ;)
Listen, I don't really know if your a paedophile or not, maybe you've done some things in the past that are questionable, but whatever, people make mistakes. But what I can tell now, is that you are pretty quick to go for the throat. I can assure you that if I got any satisfaction at all from pretending to be someone who I'm not, then I'd do it and I'd probably be a lot happier that way. Fact is that I can't, all I can do is to be honest with people, if they don't like me then that's OK. I know that people walk around pretending to be someone else, I know the disadvantage that I have by being honest, so I'm not going to get upset over it. On the other hand, if I get something positive from it, then yes, it does give me something good.
I don't know where clur comes into this, although I'd like to know.
I would, but I would also have to sue Hinch and his web host at the same time, and I actually like Hinch. Crazy would have to prove what he is said is true, and as it is not true there is no possible way he could prove what he said is true so would lose, that would open up Hinch, Hinch's host and Crazy to an award of upto £250,000 each. There would be no fee on my part (no win, no fee with after case insurance whereby the solicitors recover costs from hinch, hinch's host and crazy).
Whilst I would happily sue crazy, and of course let people know which court he would be appearing at, I wouldn't sue hinch.
Seeing reasonably speaking Hinch can not be held accountable for user generated content, all your lawyers could do is contact him to then get crazy's details and sue him solely.. Stop making up funky stories to chicken out man! Just accept the truth that he IS infact RITE about you!
I would, but I would also have to sue Hinch and his web host at the same time, and I actually like Hinch. Crazy would have to prove what he is said is true, and as it is not true there is no possible way he could prove what he said is true so would lose, that would open up Hinch, Hinch's host and Crazy to an award of upto £250,000 each. There would be no fee on my part (no win, no fee with after case insurance whereby the solicitors recover costs from hinch, hinch's host and crazy).
Whilst I would happily sue crazy, and of course let people know which court he would be appearing at, I wouldn't sue hinch.
Here he comes with his fucking legal jargon. Lexx you do this everytime you get into a flame debate with someone, you ride the fucking law bus into FA country and start spewing shit about how people have 'openly admitted' this and that and how you will start owning bitchez with your lawyers.
If you want to prove that what everyone says about you is false then get a fucking grip. In the mean time I will post further things YOU posted yourself good sir which are really, rather self explanatory.
http://www.furious-angels.com/showthread.php?p=35462#post35462 She was only like 15 at the time you sick faggot.
Theres enough to prove lexxuk is a pedophile... there are two girls on this forum that would be willing to testify what he has done to them(well, atleast one, pixel hates conflict so she'd deny it just to make lexxuk happy, despite what he has done)...
I'd be a witness as well!!! He told me his love for pixel back while I played nc!!! And what he wanted from her, among of other things... if I only knew what he was back then:(
Seeing reasonably speaking Hinch can not be held accountable for user generated content, all your lawyers could do is contact him to then get crazy's details and sue him solely.. Stop making up funky stories to chicken out man! Just accept the truth that he IS infact RITE about you!
Thats the problem, Hinch has moderation of this forum which means he has a duty to moderate and ensure that the content is not libel (same as K does now), hinch in this content is the publisher of the content, a bit like you sue the news paper for what the journalist writes, the webhost is also liable for hosting said content, and crazy is liable for repeating said libel.
@giga - nah, I'm not quick to go to the throat really, I've been ignoring these comments (and got K to remove one even), but I'm quite bored.
Thats the problem, Hinch has moderation of this forum which means he has a duty to moderate and ensure that the content is not libel (same as K does now), hinch in this content is the publisher of the content, a bit like you sue the news paper for what the journalist writes, the webhost is also liable for hosting said content, and crazy is liable for repeating said libel.
@giga - nah, I'm not quick to go to the throat really, I've been ignoring these comments (and got K to remove one even), but I'm quite bored.
Send him a friendly cease and desist then. See how hard he laughs at you in return? Stop making empty threats tbh.. Actually read the disclaimer you saw before signing up to this forum?
Send him a friendly cease and desist then. See how hard he laughs at you in return? Stop making empty threats tbh.. Actually read the disclaimer you saw before signing up to this forum?
It isn't an empty threat, I've told you I have no desire to sue hinch.
When you signed up you agreed to:
"Although the administrators and moderators of Furious Angels :: Kicking your ass for 10 years will attempt to keep all objectionable messages off this forum, it is impossible for us to review all messages. All messages express the views of the author, and neither the owners of Furious Angels :: Kicking your ass for 10 years, nor Jelsoft Enterprises Ltd. (developers of vBulletin) will be held responsible for the content of any message.
"
So, sue crazy tbh.
The reason Lexx would never participate in legal action is because of the following:
1). He'd waste his fucking time
2). He'd waste all of his mothers money
3). A large majority of his 3,388 posts over the last few years have involved extremely suspicious comments towards girls of the age of 14 and 15.
@giga - nah, I'm not quick to go to the throat really, I've been ignoring these comments (and got K to remove one even), but I'm quite bored.
OK, I half took the sociopathic part as compliment anyway. If people think that everything that I say is engineered to make myself look good then for me, in knowledge that it's not lies, it's a nice thing to hear.
As for the paedophilia side of things, I wouldn't really take them too seriously, I've even been called a paedophile just for saying that NB's kid is hotter than crazy oO
The reason Lexx would never participate in legal action is because of the following:
1). He'd waste his fucking time
2). He'd waste all of his mothers money
3). A large majority of his 3,388 posts over the last few years have involved extremely suspicious comments towards girls of the age of 14 and 15.
I don't have to prove I am innocent, you have to prove, under legal definition and by legal status that what you say is true, you could obtain a police computer check through the correct channels to obtain my criminal record, it would return with "no record found" as I'm not even in the police database, your whole argument would be "well, someone said something" which isn't a defence.
I'd not have to pay a penny, I told you, no win no fee with the solicitors getting their fees from the other party involved, getting your information would simply be a case of handing hinch a Norwich Pharmacal.
So, prove what you had said it true, oh that's right, you can't.
/edit @ giga - that sociopathic wasn't actually aimed at you :P
You can't sue someone because you're a pedophile...
"boohoo... I'm a pedophile, leave me alone so I can get more little girls to come to my parents basement!!!!!!!!!!"
lol, yea, I'm sure a court will feel sorry for him because he needs to prey on little girls online...
Not convicted or arrested for something doesn't say you didn't do it Lexx...
Not convicted or arrested for something doesn't say you didn't do it Lexx...
Quite true, I shot JFK. However, to say someone has done something in written form you actually need to be able to prove that person has done that something, as only a court can decide if a person has a sexual interest in a pre-pubesant child (definition of a paedophile) then only a criminal record stating such an item would be considered proof.
/edit @ giga - that sociopathic wasn't actually aimed at you :P
OK but now I'm having problems understanding what you meant ^^
Quite true, I shot JFK. However, to say someone has done something in written form you actually need to be able to prove that person has done that something, as only a court can decide if a person has a sexual interest in a pre-pubesant child (definition of a paedophile) then only a criminal record stating such an item would be considered proof.
It's fairly easy to establish it by looking at someones previous standing and statement made on the subject, you don't really need a team of judges to look over the aforementioned quotes to conclusively see that they were made by someone leaning towards pedophilia.
OK but now I'm having problems understanding what you meant ^^
umm "a person who was a socio.... said stuff that was bullshit"
I don't have to prove I am innocent, you have to prove, under legal definition and by legal status that what you say is true, you could obtain a police computer check through the correct channels to obtain my criminal record, it would return with "no record found" as I'm not even in the police database, your whole argument would be "well, someone said something" which isn't a defence.
I'd not have to pay a penny, I told you, no win no fee with the solicitors getting their fees from the other party involved, getting your information would simply be a case of handing hinch a Norwich Pharmacal.
So, prove what you had said it true, oh that's right, you can't.
/edit @ giga - that sociopathic wasn't actually aimed at you :P
Did not read, QQ more faggot.
It's fairly easy to establish it by looking at someones previous standing and statement made on the subject, you don't really need a team of judges to look over the aforementioned quotes to conclusively see that they were made by someone leaning towards pedophilia.
except that I have no interest in pre-pubesant children and have never expressed an interest in them either offline nor online, there is no evidence anywhere that I have, or intent to lean, in that direction. Right down to having an ISP that is an active member of the IWF so if I *did* have an interest in such a thing (which again, I'll state that I do not) I would have a criminal record by now, as my ISP would have informed the police.
Did not read, QQ more faggot.
yes you did, you fail at trolling.
except that I have no interest in pre-pubesant children and have never expressed an interest in them either offline nor online, there is no evidence anywhere that I have, or intent to lean, in that direction. Right down to having an ISP that is an active member of the IWF so if I *did* have an interest in such a thing (which again, I'll state that I do not) I would have a criminal record by now, as my ISP would have informed the police.
So now your saying "if i ever did naughty stuff like that my isp who clearly sniffs all my traffic would call the police?", so basically what your now denying everything you once did. It's clear as a whistle that your unable to defend against what you did, so rather be in deep shame than treaten with hollow threats please!
So now your saying "if i ever did naughty stuff like that my isp who clearly sniffs all my traffic would call the police?", so basically what your now denying everything you once did. It's clear as a whistle that your unable to defend against what you did, so rather be in deep shame than treaten with hollow threats please!
No, I'm saying my ISP is a member of the IWF which has a huge database of illegal web sites, so trying to visit said sites would raise a flag with my ISP, as I have never had said flag raised with my ISP there is zero proof in that department. You appear to have misread what I typed, please read it again.
No, I'm saying my ISP is a member of the IWF which has a huge database of illegal web sites, so trying to visit said sites would raise a flag with my ISP, as I have never had said flag raised with my ISP there is zero proof in that department. You appear to have misread what I typed, please read it again.
Proves nothing at all, your game is trying to get underage girls to meet you in real life, not finding pictures of them on the web. As i'm not english i have fuck all knowledge of what the IWF is, and i couldn't really be arsed to google it.
Proves nothing at all, your game is trying to get underage girls to meet you in real life, not finding pictures of them on the web. As i'm not english i have fuck all knowledge of what the IWF is, and i couldn't really be arsed to google it.
And I'm asking you to prove it, you can't, because its untrue.
Narcolepsy Jones
01-12-2008, 00:44
Sociopaths are generally socially skilled, but lacking in conscience and concern for anyone but themselves... and they're skilled at the manipulation of others.
The mind boggles as to quite how giga could be construed as a sociopath.
There is so much proof... lexxuk is so pathetic.
pixel/astrix have posted on this forum about how lexxuk tried to lure them to his house... what more proof is needed? He never talked to me about pixel before I found out what he was, theres more out there that he talked to about this...
Sociopaths are generally socially skilled, but lacking in conscience and concern for anyone but themselves... and they're skilled at the manipulation of others.
The mind boggles as to quite how giga could be construed as a sociopath.
I didn't call giga one, giga seems like a reasonable enough person :o
And I'm asking you to prove it, you can't, because its untrue.
Read tru your history here... It makes it pretty clear for anyone except for you yourself because your in denial.
http://black-prophecy.org/jesuscat.jpg
Keep believing Lexx! Your the only one doing so!
Narcolepsy Jones
01-12-2008, 00:46
I didn't call giga one, giga seems like a reasonable enough person :o
I know, but that he assumed it was aimed at him is staggering. One wonders if the man could manipulate a dog into fetching a stick.
still, prove what has been said is true, and would stand up in a court of law and be shown to prove that was has been said is true and not libel, you cannot because such things have not been said, and the things that are libelous are actually libel. Which part of that are you unable to grasp?
Narcolepsy Jones
01-12-2008, 00:50
still, prove what has been said is true, and would stand up in a court of law and be shown to prove that was has been said is true and not libel, you cannot because such things have not been said, and the things that are libelous are actually libel. Which part of that are you unable to grasp?
No! It's not me levelling the accusations!
I know, but that he assumed it was aimed at him is staggering. One wonders if the man could manipulate a dog into fetching a stick.
only if the dog really wanted to.
/edit - I doubt you would accuse anyone of anything unless it was in an intelligent yet humorous way, possibly :P
awww
The pedophile wants us to prove that he is one...
Anyone have an uder aged kid?!?!?
Narcolepsy Jones
01-12-2008, 00:53
You could try using Elmo when he arrives...
I got him yesterday nish!!!
Narcolepsy Jones
01-12-2008, 00:54
gief pics/video
I can post pictures, maybe videos later...
At first I thought I got ripped off because he wouldn't fall over or stand up, but then I went and bought new batteries, and he worked exactly like in the video!!!!
Narcolepsy Jones
01-12-2008, 00:57
Post a video of you and Elmo going into fits of laughter and writhing around on the floor uncontrollably!
Only if you give me porn in exchange!!!
Narcolepsy Jones
01-12-2008, 01:00
What, of me or just anyone? Like would some dirty Algerian backstreet action do?
Sociopaths are generally socially skilled, but lacking in conscience and concern for anyone but themselves... and they're skilled at the manipulation of others.
The mind boggles as to quite how giga could be construed as a sociopath.
Yeh, that's why I found it quite flattering :D
What, of me or just anyone? Like would some dirty Algerian backstreet action do?
wtf you talking about?!?! I'm not into porn, I don't like to make women exploit themselves!!!
So...whos gonna sue who? lets get back to that
¡¿
lexxuk says he's going to sue us...
He does not like it when we tell other people about how he has tried to lure little girls to his house to have sex with them. If he wants to sue, go for it, only thing that will come out of it is him going to jail for being a pedophile.
Imagine him actually doing it... He'd have to actually leave the house, so i seriously doubt it. He'd win several points of respect sueing internationally, so go for me lexx! :p
vamp, you'd be the last person he'd tried to sue...
He's never get to you, he's be put in jail after the first person he tried to sue, which is me:closedeye
He'd haveto sue hinch and his webhost and bush and the governor of your state first and he likes hinch too much for that.
Such American culture, "He looked at me, time for a lawsuit"...
pixel, if you would of believed him, and went to visit him, he would of had sex with you, he would of exploited you, he tried to!!!
never again pixel can you talk about women being exploited if you want to continue defending him... you are such a fucking hypocrite, it's not even funny really...
It's not even your fault though, you have no idea what you want.
I'm not defending anybody, I'm completely avoiding the topic "for personal reasons" or else I'd ban everybody involved in consistently reviving it as a topic of conversation.
pixel, just admit to it, it's afterhours, no one gives a fuck... except you, but it's you, so who cares?
Hm? i told you i'm avoiding the topic, im not changing that stance... "No modding for personal reasons" remember?
tnx
lol im in the middle of such a huge comedown after the weekend... feels like the world is moving 10x faster than me, just sitting here in the corner at work listening to music pretending to work, only felt like i've been here 30 minutes but ive been here like 4 hours...
Lexx said that I'm a reasonable guy, he can be my new best forum friend :D
so u've had enough with being bitched at and would instead like to start ur own circle jerking ego massaging group with a guy that has had a questionable outlook on the world for some time...? is that really the sort of direction you would like to take with yourself giga?
damn, you are grouchy arnt you?
damn right lol, the 'reasoning' part of my brain will not wake up for days at this rate :p
all i can think about is music :( i have an addiction to music
i have an addiction to music
How many addictions do you have:(
lots and lots :p
we all have addictions pete, whether you're too closed minded to realise this or not.
I'm so open minded, that you can't even understand it!!!
Doesn't mean I don't have opinions though. I've done drugs and still do on occasion, I still think they're bad though...
oh sure pete, everything that is enjoyable in life is bad for you in one way or another...
key word, life...
Any drug you need to alter your life, trying to make it better, I think is wrong, you should enjoy life because you have it, not because of what you have to take to enjoy it. If you're having a bad time, change it, not use drugs to change it though.
That was beautiful pete tbh.
Feel like I gotta quit drinking grog now...
pete; don't you drink?
im not trying to justify that i take drugs or defend it, but there are more drugs in life than the illegal ones, there are millions of people in the world on legal drugs like antidepressants or painkillers... these people are just as bad as me, anybody who drinks to make their day better (most of them then) is just as guilty, people who need nicotine to relax themselves when they're stressed...
the addict that won't admit they have a problem is the worst kind...
I have a problem, I just don't see it as a big enough problem when I'm presented with the list of what I would be doing without the drugs.
Yea... saying you expect to die in five years because of your drug use, is not a problem at all!!!
Lets just drop it, not the place to really talk about something like this...
so u've had enough with being bitched at and would instead like to start ur own circle jerking ego massaging group with a guy that has had a questionable outlook on the world for some time...? is that really the sort of direction you would like to take with yourself giga?
Honestly, I'd much rather be bitched at, but you usually this only happens when you're drunk :(
lol thanks
nah im just feeling very withdrawn from life atm, not got the inclination to be hostile heh
I dont really think its a fair comparison, Whiskey and Coke doesnt have as much of an impact on who you are as crack per say.
Its sort of a bitch of an argument because both sides have its zealots and there are a ton of reasons to do drugs or drink, if they are good reasons or not is entirely up to the individual.
I just call it the way i see it. ive seen people tank their lives because pot makes them sit infront of the TV all day and skip school, lose their job sink into debt and start grouping up with other similar people digging themselves deeper into that hole.
Ive also seen people almost kill themselves drinking. But if they got out of it they usually never did it again.
Personally, I drink either because I am bored and just want to kill time, which is basically a bad reason or because im out on a pub crawl with friends or whatever and we all wanna be a little shitfaced because its fun. Ive litterally gone months without even having a beer.
However, i dont need booze to get me through the day, where as the pot heads I know get really grouchy and moody and if they worked would probably bitch out their boss in an instant because they didnt get their wake and bake.
on a pub crawl
WTF in the US do you live!!?!?!?! I don't know anyone who is American that calls a bar a pub...
Ah my grouchy-ness is not due to the week, its because im coming down off a load of uppers
WTF in the US do you live!!?!?!?! I don't know anyone who is American that calls a bar a pub...
He's not American, he just wishes he was :p
I knew it!!!!
I said he was not cool enough!!
lol thanks
nah im just feeling very withdrawn from life atm, not got the inclination to be hostile heh
"Bitched at" were your words not mine ^^
Tell me when you have your next bottle of rum though, I need some advice from the pro.
lmfao
congratulations giga, u win the 'first smile of the day' award haha
Well I noticed this board was mostly eurpeans, so I said pub.
I used to live in new Jersey, now I live in australia, maybe thats why I said pub.
or maybe its because my post was directed at pixel and she probably says pub, being english and all.
im like a cultural chameleon. I was giving tourists directions on how to get to places using the trains in new york :P
Also, from a marketing perspective I can see the difference between a bar and a pub.
And I was born on the Fourth of Joolai.
If anything, being mexican american makes me more american than being european american, if that even makes sense :P
I figure its about as close as you can get to being an american without being a native.
giga's sadness is making me depressed!!!
if I buy you a hooker, giga, will you stop it? And I swear, if you answer this with a 'i don't like to exploit women'...
giga's sadness is making me depressed!!!
if I buy you a hooker, giga, will you stop it? And I swear, if you answer this with a 'i don't like to exploit women'...
lol, vamp's already offered to get me an escort from his friend's escort company, but again I think it's going to have to be a firm "No" :p
you could get one and just get her to clean your house or make your dinner.
lol she'd be well impressed :p not!
Pay her enough, and she will...
i would expect her to offer him money to clean his room instead.
Ide take the money tbh.
I'm far too out of it to actually work today... spent an hour investigating this fault so far and I'm still nowhere near working it out...
enough drug talk...
so carl, how long you lived in the US? were you born here?
the cognitive reflex relay in the flux capcitor is off by 7.13 mhz preventing it from ionizing correctly and preventing compressor surge in the secondary wastegate causing excess carbonization in the primary solenoid valve of the gauss-hadron hybrid volumetric accelerator.
Smack it on the side, that usually works.
I've lived in the US my whole live, love it, don't want to move anywhere tbh, other than maybe the bahamas because of how nice the weather is over there.
enough drug talk...
so carl, how long you lived in the US? were you born here?
Few years on and off between NJ asia and TX.
I was born there meaning I didnt have to stand in the fucking tourist line at the airport and wasnt searched for drugs or bombs and other bullshit like I usually am and could just get my shit and leave.
nothing else to say really.
I find some aspects of Australia to be really similar to the US, although they dont like it when I say that.
I would but it down to a mild case of wewannabelikeamericafuckyeacephalothopy
Why would you call a pub a bar ffs? ITS public house thats why its called pub, god you Americans are dumb.
I think that term is a little out dated. Like your queen.
You cant take your kids to a bar, you can take them to a pub.
lol, the queen...
Actually, an honest question, when she dies, who will be the new queen?
I think there will be a king.
But I think at this point its safe to say that she is clearly beyond death.
lol, the queen...
Actually, an honest question, when she dies, who will be the new queen?
Prince Charles will become the King.
I think there will be a king.
But I think at this point its safe to say that she is clearly beyond death.
How is she clearly beyond death?
Camilla Parker Bowles for queen tbh!
vamp trying to continue his stalking of vamp...
Pete trying to be a faggot like Pete.
I fucked that up, I meant pixel, I know all of you already assumed that!!
Well i haveto admit i do stalk myself often... It's true!
vamp, you don't have to, everyone can see it...
that's what she said
vamp, you don't have to, everyone can see it...
that's what she said
Who said that i stalk myself all day?
Kjeldoran
01-12-2008, 14:52
Now see what you all done to my thread !!!
Pixel, plz mod the 210 offtopic replies in this thread thx :)
Now see what you all done to my thread !!!
Pixel, plz mod the 210 offtopic replies in this thread thx :)
Ahaha crazy is the only one who can do that cause he is the threadstarter.... SRY!!
Kjeldoran
01-12-2008, 15:04
Ahaha crazy is the only one who can do that cause he is the threadstarter.... SRY!!
I'm the thread topic !!!
That's like saying the pope is holier then God.
Now see what you all done to my thread !!!
Pixel, plz mod the 210 offtopic replies in this thread thx :)
This is afterhours :)
Narcolepsy Jones
01-12-2008, 15:59
You deleted my thread about ClUR, which was far less inflammatory than this, which insults Kjeldoran in the very title. Either do as he requests or restore mine.
nobody has made a valid complaint against this thread.
Narcolepsy Jones
01-12-2008, 16:03
Now see what you all done to my thread !!!
Pixel, plz mod the 210 offtopic replies in this thread thx :)
All in the game.
/Edit: you sneaky fuck. Was Clur's complaint valid? She didn't give a flying fuck, she was just showing me her strength.
uhuh, was perfectly reasonable and valid in my eyes
Narcolepsy Jones
01-12-2008, 16:09
Then so is Kj's. He sees a thread with his name in it, can't he expect every post to be about him and whether or not he is a fag?
Speaking about Clur, have any of our Spanish reporters seen her drunk on the boulevard yet??
Narcolepsy Jones
01-12-2008, 16:13
Do be quiet, Vampire.
nish cut out the whine please, I'm not over my comedown yet... If this thread genuinely bothered KJ he would have PM'd me already, as he hasn't and the thread has got to this size I'm not going to do anything about it unless it suddenly explodes and gets out of hand.
Not gonna take orders from you Dipsy!
Narcolepsy Jones
01-12-2008, 16:15
Whine? Try logic, sweet cheeks.
And Vamp, I suggest you keep that to a minimum.
uhuh, tell yourself that.
After hours = I do not moderate unless asked to and even then only when I see valid reason. Nobody asked until the thread got huge, I'm not going to do anything about it now. This thread has a good balance of pro-KJ vs whiners-vs-KJ and I'm sure KJ will agree there are no valid arguments against him in this thread.
Kjeldoran
01-12-2008, 16:17
You deleted my thread about ClUR, which was far less inflammatory than this, which insults Kjeldoran in the very title. Either do as he requests or restore mine.
Yes, may I add I've never felt more insulted in my entire online life? :)
Narcolepsy Jones
01-12-2008, 16:18
Shutup.
Kjeldoran
01-12-2008, 16:18
Then so is Kj's. He sees a thread with his name in it, can't he expect every post to be about him and whether or not he is a fag?
Correct, every post in this thread should be about me, or you get the fuck out of it. Comprende ???
whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine whinewhinewhinewhinewhinewhinewhinewhinewhinewhine
Narcolepsy Jones
01-12-2008, 16:20
I'm fighting your corner for you here, you big cock. But if you're going to be an ungrateful barrel of shit, then I'll take my services elsewhere.
Kjeldoran
01-12-2008, 16:20
Speaking about Clur, have any of our Spanish reporters seen her drunk on the boulevard yet??
Perhaps she did tell her BF she's pregnant. He probably pushed her from the stairs :(
They don't have stairs in Spain, their a bit uh... backward...
Kjeldoran
01-12-2008, 16:21
I'm fighting your corner for you here, you big cock. But if you're going to be an ungrateful barrel of shit, then I'll take my services elsewhere.
Nish, in all honesty I was just joking with Pixel. I don't want anything to be mod'd out. I don't care about this thread, why else do you think I only replied on it after 210 posts?
But it's good you're talking about me here, that's atleast on topic !!!
Kjeldoran
01-12-2008, 16:21
They don't have stairs in Spain, their a bit uh... backward...
Kicked her from a cliff then. Same effect really.
Maybe they mistook her for a bull and stabbed her...
Narcolepsy Jones
01-12-2008, 16:22
I know you were joking. You're not exactly complex. But I still want to help people when I see them so destitute and needy.
Kjeldoran
01-12-2008, 16:22
uhuh, tell yourself that.
After hours = I do not moderate unless asked to and even then only when I see valid reason. Nobody asked until the thread got huge, I'm not going to do anything about it now. This thread has a good balance of pro-KJ vs whiners-vs-KJ and I'm sure KJ will agree there are no valid arguments against him in this thread.
Did you just use my name 3 times in 1 post? :)
Kjeldoran
01-12-2008, 16:24
I know you were joking. You're not exactly complex. But I still want to help people when I see them so destitute and needy.
I'm not complex? Damnit ...
Thanks for the help offering though, but I'm fine :)
Kjeldoran
01-12-2008, 16:24
Maybe they mistook her for a bull and stabbed her...
So you just called Clur the male version of a fat cow? I'm sure any woman loves to hear such a compliment !!!
vBulletin® v3.8.4, Copyright ©2000-2010, Jelsoft Enterprises Ltd.