Jump to content

ViperX

Members
  • Joined

Everything posted by ViperX

  1. ViperX posted a post in a topic in Computer Discussion
    SetPixel is SLOW. Don't use it. GDI is slow enough already, SetPixel is probably one of the worst functions performance-wise.
  2. ViperX posted a post in a topic in General Discussion
    Perfect.
  3. ViperX posted a post in a topic in General Discussion
    The botox did its job..
  4. ViperX posted a post in a topic in General Discussion
    Rage them and there will be another fucking bomb somewhere in UK. Stupid pakis, they're all terrorists.
  5. ViperX posted a post in a topic in Computer Discussion
    Rifk.
  6. ViperX posted a post in a topic in Computer Discussion
    It's called: Learn how to think like Ephraim. Now go to hell.
  7. All public and protected members are inherited. But, since i redefined the function, I had to redeclare it too. If the 2 classes have nothing in common, don't inherit. Usually, when you inherit you only EXTEND it's functionality. If you only redefine it's functionality, just rewrite everything.
  8. Lets say we have a member function Draw() in BitmapObject. Now, to inherit, we do this: class PaddleObject : public BitmapObject { // ... public: void Draw() const; // Exactly same declaration as in BitmapObject. // ... }; Then, to make the Draw function in PaddleObject, we can do like this: void PaddleObject::Draw() const { BitmapObject::Draw(); // Do whatever BitmapObject does // Here, do whatever extra you want PaddleObject to do (if you have nothing here, you might want to think about a different method than inheriting) }
  9. ViperX posted a post in a topic in Computer Discussion
    OpenGL Red Book. Probably best OpenGL book ever. And a more reasonable PDF size of 8 mb, it's well worth the download. Or you could check the HTML version.. Just Google it.
  10. Use gl.h and glu.h You can get them from microsofts site. Do NOT use glaux at all, glut might be okay, but generally don't. And erm.. if you're using WinAPI to set up the window, it will be hard if you want to port it anyways ;) If you wanna learn OpenGL, the OpenGL Red Book is VERY nice.
  11. ViperX posted a post in a topic in Computer Discussion
    Of course it's also slow and resource hogging. Even C# is better.
  12. ViperX posted a post in a topic in Computer Discussion
    Ew, Java.
  13. Well if you lag it most likely affects other people because your computer won't send/respond to messages.
  14. As greeneyes said, probably just crappy servers. But, a hack does require extra CPU power, and does modify the game code in such a way that it might lag an old computer.
  15. ViperX posted a post in a topic in General Discussion
    The wretched King Minos has decided your fate. His tale wraps around his body 6 times. The sweet light no longer strikes against your eyes. Your shade has been banished to... the Sixth Level of Hell - The City of Dis! Sixth Level of Hell - The City of Dis You approach Satan's wretched city where you behold a wide plain surrounded by iron walls. Before you are fields full of distress and torment terrible. Burning tombs are littered about the landscape. Inside these flaming sepulchers suffer the heretics, failing to believe in God and the afterlife, who make themselves audible by doleful sighs. You will join the wicked that lie here, and will be offered no respite. The three infernal Furies stained with blood, with limbs of women and hair of serpents, dwell in this circle of Hell. First time i tried it.
  16. It's easy.. If I can remember PHP (I think I can, since the syntax is very similar to all other languages i use), you can just ask me questions if you need help.
  17. ViperX posted a post in a topic in Computer Discussion
    A character on a 32 bit OS is 1 byte. An integer is 4 bytes (32 bit!). Don't mix it.
  18. Disturbed - Stricken. And next number, Rage Against The Machine - Killing In The Name Of.
  19. Spork doesn't have VAC protection..
  20. ViperX posted a post in a topic in Computer Discussion
    Patrick's HLH.
  21. ViperX posted a post in a topic in Computer Discussion
    I am looking through the source now ^^ If I find anything to pick on I will post it here ;P
  22. ViperX posted a post in a topic in Computer Discussion
    You know opengl/directx?
  23. ViperX posted a post in a topic in Computer Discussion
    A general example would be creating one bitmap (or surface, or whatever it's called), then drawing everything to that, and at last drawing that bitmap/surface to the screen.
  24. ViperX posted a post in a topic in Computer Discussion
    Use a Live Linux to email mount\hd1\windows\system32\config\sam and system files to you. Then simply bruteforce them or whatever you want to get the admin pass.
  25. ViperX posted a post in a topic in Computer Discussion
    Double buffering :P