Jump to content

Paine

Members
  • Joined

Everything posted by Paine

  1. Nightwish - Dead to the world
  2. Paine posted a post in a topic in Computer Discussion
    You need to use JDK 1.5 to compile it. Also there's a small error in your code: stringInput = input.nextInt(); Needs to be: intInput = input.nextInt();
  3. Pull something like t3rm1ght did? You mean make a really simple program and post part of it? Considering I don't make worthless crap to steal cd-keys, I doubt I could post anything of use on here, but here you go: public class SpiralEffect implements Runnable { Thread t; Particle particle; private float angle = 0F; float liftAmount = 0.5F; float anglePlus = 15F; float maxHeight = 12F; float minHeight = -12F; float pos[] = new float[3]; float radius = 15F; private float liftedHeight = 0F; private boolean up = true; public SpiralEffect(Particle particle) { this.particle = particle; pos = particle.GetPosition(); } public void go() { if(particle.canAnimate()) { particle.play(); t = new Thread(this); t.start(); } else { CodexConsole.Print(0,1, "Particle cannot be animated - " + particle.GetName(),0xffffff); } } public void run() { while(particle.isPlaying()) { try { pos = particle.getSpawnPos(); if(liftedHeight>=maxHeight) { up = false; liftedHeight = 0F; } else if(liftedHeight<=minHeight) { up = true; liftedHeight = 0F; } angle+=anglePlus; if(up) { liftedHeight+=liftAmount; } else { liftedHeight-=liftAmount; } pos[0]+=(float)(radius*Math.sin(angle*Math.PI/180)); pos[1]+=(float)(radius*Math.cos(angle*Math.PI/180)); pos[2]+=liftedHeight; particle.SetPosition(pos); t.sleep((long)(250)); } catch(InterruptedException e) { } } if(particle.doReset()) { particle.SetPosition(particle.getSpawnPos()); } } } A simple spiral animation for a game I used to work on.
  4. They're just showing the collective intelligence of VB coders.
  5. Very intelligent response, as usual. I say you suck, so I must be raged? You could look at it another way though, I'm saying you suck because you suck, not because I'm "raged". Although none of it makes any difference to me, I honestly couldn't care if you think I'm "raged".
  6. No, I'm not raged. You just suck.
  7. What's the point in you posting some of the code then? Seems like a big waste of time and an attempt to "show off" your insane VB skillz, no one cares about you and your piece of shit "work", learn a real language and make something of value or just stop coding.
  8. Yea, I didn't bother changing any of the horrible grammar in there. :\ Although I did understand it, so I still win. :D
  9. ur now loked on2da v.y boyz syte. dis izour 1st eva syte n ting, so haytin strictli iznt wntd upin here. n stay loked up 4newz onda syte based onda crew n all dat!!! u'll also gyet soon 2cum dubz frm da crew so stay loked 4dat. & woch da gallery coz sik pikz r gna b up onder!!! You're now locked on to the v.y boys site. This is our first ever and things, so hating strictly isn't wanted up in here. And stay locked up for news on the site based on the crew and all that!!!! You'll also get soon to come dubz from the crew so stay locked for that. And watch the gallery because sick pics are going to up on there!!! I win?
  10. Paine posted a post in a topic in Computer Discussion
    <sarcasm> Yes, such a believable excuse. </sarcasm> Would this reason also apply to why you fail at spelling and simple grammar?
  11. Paine posted a post in a topic in Computer Discussion
    I believe the post I quoted was not directed at him and all comments I made had nothing to do with whatever you replied to him with. Unbelievable, a guy who spells this bad telling me to learn to read. I seriously hope you're joking.
  12. Paine posted a post in a topic in Computer Discussion
    I'm too noob to learn VB? That's an extremely retarded comment, I have coded in VB but that was years ago, it was a joke then and still is now. No matter what you say, VB will NEVER be considered a good language, as I already said: It's slow and inefficient. You keep referring to what you can do in it, when I haven't mentioned anything like that, learn to read, I'm sure they'll teach you that at school time. ;) If you want to continue this argument, go learn a "real" language then maybe your opinion on this matter will have some value.
  13. Paine posted a post in a topic in Computer Discussion
    C++ is faster and more efficient. I won't go into any more detail than that, as I'd be wasting my time. Just un-install anything programming related and get back to doing your homework, kid.
  14. Paine posted a post in a topic in Computer Discussion
    The version of VB is irrelevant, it's a shit language. You're obviously too n00b to realise that. You're so stupid t3rm1ght. Everyone knows C++ is better than VB, except for you, were you dropped on the head as a baby?
  15. Paine posted a post in a topic in Computer Discussion
    Anyone who thinks VB is a good language needs to grow up. If it wasn't a piece of shit, why would pretty much all commercial software not be written in it? As you say it's obviously an easy language. Just think about it.
  16. Were those idiotic comments directed at me or him? I don't see why you keep saying you can visit a web page without a browser. It's like you just learnt something and want to show everyone how "smart" you are. Everyone knows you can access websites without a web browser. You would start IExplore because that's what he ASKED for help on? You seriously need to learn this magical thing called READING. I'm guessing he wants to use a bug in IE to mess with someone's computer, like making it go to one of the many "virus" sites out there and he wants to hide the fact that it's doing that. Correct me if I'm wrong. "dark_urza" I really don't see why you're replying, you're too stupid to post anything relevant to what he's asking.
  17. You're so stupid it's not even funny. Actually, do either of you two have any clue what he's asking to do? Can you not read? To direct to a web-page simply put the url after start IExplore <url here> I don't think you can hide a process using a batch script, I could be wrong though.
  18. copy "file.txt" "C:\Documents and Settings\All Users\Desktop" You need quotes around any text that contains a space.
  19. Paine posted a post in a topic in Flames
    You're 15, you aren't even old enough to view the content of these forums. Get back to leeching off your parents, kid.
  20. Paine posted a post in a topic in General Discussion
    http://www.colinmiller.co.uk/portfolio_images/stella.jpg
  21. Paine posted a post in a topic in Artwork Showcase
    His sig is MUCH better than yours.
  22. Paine posted a post in a topic in Computer Discussion
    No, it wouldn't work as it wouldn't compile. Why ask if it would work when you can test it and find out for yourself?
  23. Paine posted a post in a topic in General Discussion
    I hacked someone's webserver, the guy threatened that he was gonna fly over to England and kill me. He also went on about how I shouldn't have fucked with his shit and that he'd get some of his family in England to "kick the shit out of me", then eventually he gave up and probably went to cry in a corner. Great fun.
  24. Paine posted a post in a topic in Computer Discussion
    One of those noobs is you.
  25. Paine posted a post in a topic in General Discussion
    You sent Valve a virus, hopefully Gabe runs it.. haha