Everything posted by ViperX
-
Isometric Room
SetPixel is SLOW. Don't use it. GDI is slow enough already, SetPixel is probably one of the worst functions performance-wise.
- Paris Hilton Sex Tape
-
Paris Hilton Sex Tape
The botox did its job..
-
MSN Groups are pro
Rage them and there will be another fucking bomb somewhere in UK. Stupid pakis, they're all terrorists.
- Learn most hex symbols
-
Learn most hex symbols
It's called: Learn how to think like Ephraim. Now go to hell.
-
Asterix, ViperX, someone... help.
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.
-
Asterix, ViperX, someone... help.
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) }
-
OpenGL book
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.
-
http://www.gametutorials.com/
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.
-
blackjack in JAVA
Of course it's also slow and resource hogging. Even C# is better.
- blackjack in JAVA
-
Enemy Territor (Q3 Eng) - Hacks or Lag?
Well if you lag it most likely affects other people because your computer won't send/respond to messages.
-
Enemy Territor (Q3 Eng) - Hacks or Lag?
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.
-
Dante's Inferno
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.
-
coding a forum using SQL and php
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.
-
reprogramming keys
A character on a 32 bit OS is 1 byte. An integer is 4 bytes (32 bit!). Don't mix it.
-
Wtf are you listening to now?
Disturbed - Stricken. And next number, Rage Against The Machine - Killing In The Name Of.
-
Need A detectable hack getting back at somone
Spork doesn't have VAC protection..
-
source codes for hacks
Patrick's HLH.
-
new ******* source
I am looking through the source now ^^ If I find anything to pick on I will post it here ;P
-
cursor lock (aimbot)
You know opengl/directx?
-
Raster Graphics
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.
-
Network attack question
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.
-
Raster Graphics
Double buffering :P