View Full Version : Toggling code
PAS3I2
15th December 2003, 23:49
where are you guys putting your toggling code? im having trouble wherever i put it? i had it barely working, but now nothing...
thanks for any help.
Shard
16th December 2003, 00:43
I use wglSwapBuffers for toggling and drawing.
PAS3I2
16th December 2003, 00:47
ok maybe ill try that again, but im pretty sure that i didnt get great results. ill try now and change some stuff around. thanks!
EDIT: not working... hmmm. what could i be doing wrong!!!
if(getasynckeystate(VK_F7)&1==1)
{
if(esp>6)esp=0;
else esp++
}
not working....
virussss
16th December 2003, 02:14
all i use is exactly like this in glDrawElements its shorter and quicker to work with.
bool CoDTest;
if (CoDTest){
blah blah;
}
if(GetAsyncKeyState(VK_F1)&1==1) CoDTest=!CoDTest;
or scrolling through ...
if((GetAsyncKeyState(VK_F2)) && !last_hack){
hack ++;
if(hack == 8) hack = 0;
last_hack = true; }
if(!(GetAsyncKeyState(VK_F2))) last_hack = false;
Manpreet
16th December 2003, 04:20
okay did pb get the fist hack that was realesed within 24 hours of the games release??
like, is it detectabe?
PAS3I2
16th December 2003, 05:22
pb isnt made for CoD yet....
Manpreet
16th December 2003, 05:23
o
THATS GOOD
but too bad im getting cod in a month
is there a official date when pb will come into effect?
[oC]pingu
16th December 2003, 05:25
Originally posted by virussss
all i use is exactly like this in glDrawElements its shorter and quicker to work with.
bool CoDTest;
if (CoDTest){
blah blah;
}
if(GetAsyncKeyState(VK_F1)&1==1) CoDTest=!CoDTest;
or scrolling through ...
if((GetAsyncKeyState(VK_F2)) && !last_hack){
hack ++;
if(hack == 8) hack = 0;
last_hack = true; }
if(!(GetAsyncKeyState(VK_F2))) last_hack = false;
ye its what i use, but, after all you are my guide for unknown opengl =)
me123
16th December 2003, 09:20
Originally posted by Manpreet
o
THATS GOOD
but too bad im getting cod in a month
is there a official date when pb will come into effect?
i heard when the frist pacth is out . but when that is who knows????????????????:alien:
vBulletin® v3.8.4, Copyright ©2000-2009, Jelsoft Enterprises Ltd.