Yup that Possibility ..
but look for this may this work..??
[php]
if( Menu.mOpt[7].nopt > 0 )//Ghostmode
move8 = 0;
move6 = 0;
move4 = 0;
if(GetAsyncKeyState(VK_UP)&1)
this->move8+=1
if(GetAsyncKeyState(VK_DOWN)&1)
this->move8+=-1
if(GetAsyncKeyState(VK_LEFT)&1)
this->move4+=1
if(GetAsyncKeyState(VK_RIGHT)&1)
this->move4+=-1
this->PushToConsole("CamMaxPosZOffset ",move8); //i'm not sure about how add variable to the PuchtoConsole
this->PushToConsole("CamMaxPosXOffset ",move6); //i'm not sure about how add variable to the PuchtoConsole
this->PushToConsole("CamMaxPosYOffset ",move4); //i'm not sure about how add variable to the PuchtoConsole
else
move8= 0 ;
move6= 0 ;
move4= 0 ;
this->PushToConsole ("CamMaxPosZOffset 0 ");
this->PushToConsole ("CamMaxPosXOffset 0 ");
this->PushToConsole ("CamMaxPosYOffset 0 "); [/php]