Some AOBs

10/06/2015 21:25 golle12#46
Du musst die Variable zuvor auf true setzten.
10/06/2015 21:48 astropilote#47
Quote:
Originally Posted by Shinzuya View Post
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
Why not that xD:
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 (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 (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;
		}
	}
}
10/06/2015 22:08 Shinzuya#48
OMG IT WORKS PERFECTLY NOW!!!
Now I don't need help anymore I guess, thank you so fucking much. ♥
10/06/2015 23:26 astropilote#49
Quote:
Originally Posted by Shinzuya View Post
OMG IT WORKS PERFECTLY NOW!!!
Now I don't need help anymore I guess, thank you so fucking much. ♥
Your welcome :-P
10/07/2015 11:59 RazexSkillz#50
Quote:
Originally Posted by Shinzuya View Post
OMG IT WORKS PERFECTLY NOW!!!
Now I don't need help anymore I guess, thank you so fucking much. ♥
was bringt dir das jetzt ._.?
10/07/2015 12:17 Shinzuya#51
Quote:
Originally Posted by RazexSkillz View Post
was bringt dir das jetzt ._.?
[Only registered and activated users can see links. Click Here To Register...]
10/08/2015 03:03 BeatZz-#52
First I wanna' say thanks for this awesome release.
I really appreciate your work and I would like to see more like this.:handsdown:
__________________________________________________
But there is something I really dont understand. For example:
Quote:
Inf Sp Value from alexmen10:
D9 45 F8 8B E5 5D C3 CC CC CC CC CC CC CC 55 8B EC 51 89 4D
If I want to include this into the trainer I have to get the address of this value and this is my problem. How do I get the address with the value? o_o
I hope someone will help me. Thanks anyways.
10/08/2015 11:33 RazexSkillz#53
Quote:
Originally Posted by Shinzuya View Post
[Only registered and activated users can see links. Click Here To Register...]
uhh nice :D