Some AOBs

10/04/2015 15:30 makoyecol#31
any for conqest?
10/04/2015 17:55 Shinzuya#32
Quote:
Originally Posted by makoyecol View Post
any for conqest?
as you can see, no
10/04/2015 20:21 makoyecol#33
Quote:
Originally Posted by Shinzuya View Post
as you can see, no
CAN YOU MAKE A CONQUEST? for VALOFE?
10/05/2015 09:59 Shinzuya#34
Quote:
Originally Posted by makoyecol View Post
CAN YOU MAKE A CONQUEST? for VALOFE?
no.

---------------------------------

Is it possible to do a request for which value you want to take?
Example

/blabla
[Request] Select a Value from xx to xx
/1
[Answer] Blabla activated!

Always when I do /1 or what ever, it tells me that the Command is wrong and nothing has changed
10/05/2015 17:06 Kernel's#35
[Only registered and activated users can see links. Click Here To Register...]

What i do wrong i can compile inject get the console but not change the function and not get any error :(

Edit: Solved Problem!
10/05/2015 18:41 BlackAce89#36
You only need the !=nullptr for the first command
And you should check, it was really compiled... #lookatthedate x3
10/05/2015 18:44 Kernel's#37
Quote:
Originally Posted by BlackAce89 View Post
You only need the !=nullptr for the first command
hahah solved and no no need to change nothing the fkin address get fail my fail :/ so all work good!
10/05/2015 19:53 BlackAce89#38
Mh.. right after i injected the dll S4 Crashes D:

Edit. fixed it... o_o
10/05/2015 21:10 makoyecol#39
Quote:
Originally Posted by Shinzuya View Post
no.

---------------------------------

Is it possible to do a request for which value you want to take?
Example

/blabla
[Request] Select a Value from xx to xx
/1
[Answer] Blabla activated!

Always when I do /1 or what ever, it tells me that the Command is wrong and nothing has changed
bro can u help me how to do thing? like hacking and programming i really wanna learn thats why i play s4 cuz it easy to hack and the codes are open

please :D
10/05/2015 21:30 golle12#40
You should learn the basic to programming something and not to hack any game. This is not the goal to learn a programming language and to write a 0815 autoit or other programming language to hack, you need time to learn all what you need for programming. Not more or less.
10/06/2015 10:12 Shinzuya#41
Quote:
Originally Posted by Shinzuya View Post
Is it possible to do a request for which value you want to take?
Example

/blabla
[Request] Select a Value from xx to xx
/1
[Answer] Blabla activated!

Always when I do /1 or what ever, it tells me that the Command is wrong and nothing has changed
Nobody can help?
10/06/2015 13:32 astropilote#42
Do something like:
Code:
bool readvalue = false;
void CheckCommand(Command)
{
   if ( readvalue == true)
   {
      //Command contains here the /1 command for example
    readvalue = false;
    return;
    }
     if (strstr(Command, "/blabla"))
     {
        readvalue = true;
        //Show "[Request] Select a Value from xx to xx"
      }
}
10/06/2015 14:00 Shinzuya#43
Quote:
Originally Posted by astropilote View Post
Do something like:
Code:
bool readvalue = false;
void CheckCommand(Command)
{
   if ( readvalue == true)
   {
      //Command contains here the /1 command for example
    readvalue = false;
    return;
    }
     if (strstr(Command, "/blabla"))
     {
        readvalue = true;
        //Show "[Request] Select a Value from xx to xx"
      }
}
Thanks, I'll try it now.

Edit : Mhh, got some errors in my script
Where do I have to put my else if?


Do I have to do it like this?


Edit 2 : Nope, command doesnt work ingame q_q
10/06/2015 18:26 astropilote#44
You need to put the
if ( readvalue == true)
{
//Command contains here the /1 command for example
readvalue = false;
return;
}
On the top of the CheckCommand function

Other example:
Code:
bool readvalue = false;
void CheckCommand(Command)
{
   if ( readvalue == true)
   {
      //Command contains here the /1 command for example
    readvalue = false;
    return;
    }
      if( strstr(Command, "/InfSp")
         {
           //Inf sp stuff
           }
         else if (strstr(Command, "/InfHp")
           {
               //Inf Hp stuff
            }
     else if (strstr(Command, "/blabla"))
     {
        readvalue = true;
        //Show "[Request] Select a Value from xx to xx"
      }
}
10/06/2015 19:53 Shinzuya#45
Quote:
Originally Posted by astropilote View Post
You need to put the
if ( readvalue == true)
{
//Command contains here the /1 command for example
readvalue = false;
return;
}
On the top of the CheckCommand function

Other example:
Code:
bool readvalue = false;
void CheckCommand(Command)
{
   if ( readvalue == true)
   {
      //Command contains here the /1 command for example
    readvalue = false;
    return;
    }
      if( strstr(Command, "/InfSp")
         {
           //Inf sp stuff
           }
         else if (strstr(Command, "/InfHp")
           {
               //Inf Hp stuff
            }
     else if (strstr(Command, "/blabla"))
     {
        readvalue = true;
        //Show "[Request] Select a Value from xx to xx"
      }
}
Thanks that you are helping me so much with this!!

Ok ok, it works, but another problem. I can't do it with more numbers..
I tryed 2 ways

current way :

Code:
BOOL AttackRequest = false;

void CheckCommand(char Command[20])
{
	if (AttackRequest == true)
	{
		if (strstr(Command, "1") != nullptr)
		AttackRequest = false;
		WriteASM((DWORD)GetModuleHandle(0) + 0x####, (DWORD)"\x01", 1);
		ChangeResponseConsole(" {CB-170,245,242,255}#####{CB-0,255,68,255} activated!", TypeBalise::Answer);
		return;
	}
	 if (AttackRequest == true)
	{
		if (strstr(Command, "2") != nullptr)
		AttackRequest = false;
		WriteASM((DWORD)GetModuleHandle(0) + 0x##### (DWORD)"\x02", 1);
		ChangeResponseConsole(" {CB-170,245,242,255}#######{CB-0,255,68,255} activated!", TypeBalise::Answer);
		return;
	}
	 if (AttackRequest == true)
	{
		if (strstr(Command, "0") != nullptr)
		AttackRequest = false;
		WriteASM((DWORD)GetModuleHandle(0) + 0x#####, (DWORD)"\x03", 1);
		ChangeResponseConsole(" {CB-170,245,242,255}#######{CB-0,255,68,255} deactivated!", TypeBalise::Answer);
		return;
	}

other way

Code:
BOOL AttackRequest = false;

void CheckCommand(char Command[20])
{
	if (AttackRequest == true)
	{
		if (strstr(Command, "/1") != nullptr)
		AttackRequest = false;
		WriteASM((DWORD)GetModuleHandle(0) + 0x######, (DWORD)"\x01", 1);
		ChangeResponseConsole(" {CB-170,245,242,255}#####{CB-0,255,68,255} activated!", TypeBalise::Answer);
		return;
	}
	else if (AttackRequest == true)
	{
		if (strstr(Command, "/2") != nullptr)
		AttackRequest = false;
		WriteASM((DWORD)GetModuleHandle(0) + 0x#####, (DWORD)"\x02", 1);
		ChangeResponseConsole(" {CB-170,245,242,255}#######{CB-0,255,68,255} activated!", TypeBalise::Answer);
		return;
	}
	else if (AttackRequest == true)
	{
		if (strstr(Command, "/0") != nullptr)
		AttackRequest = false;
		WriteASM((DWORD)GetModuleHandle(0) + 0x######, (DWORD)"\x03", 1);
		ChangeResponseConsole(" {CB-170,245,242,255}######{CB-0,255,68,255} deactivated!", TypeBalise::Answer);
		return;
	}
both dont work. :c