[HELP] How To Freeze Value on C++

03/31/2014 23:27 Chromium1337#1
please how to freeze the value of No Skill Delay
for example:
if (GetKeyState (VK_F1) <0)
{
* (DWORD *) NSD = 170;
Sleep (1);
}
* correct if I'm wrong

Sleep when you remove
Just stack up my character
please help me
04/01/2014 18:54 Wayntressierts#2
Freeze = continuous overwriting

It doesn't help to set the value just once.

Code:
if (GetKeyState (VK_F1) <0) 
{
   NoSkillDelay = 1
} 


if (GetKeyState (VK_F2) <0) 
{
   NoSkillDelay = 0
} 


if (NoSkillDelay = 1)
{
  * (DWORD *) NSD = 170;
}

Sleep (1);
Like this you turn it on with F1 and off with F2 :-)
04/03/2014 07:23 Chromium1337#3
Thankz Men
04/16/2014 05:30 ΣasyCodΣ#4
Ah i GEt it ^_^
Thankz Wayn!