Some AOBs

10/02/2015 21:15 Kernel's#16
Quote:
Originally Posted by astropilote View Post
Cause it's try to start the dll like a .exe, but normally the compilation is done, just press ok and inject the dll.
yep because the visual studio cand execute this xdd thats are compile and done! now only need to inject to s4 and end
10/02/2015 23:23 Shinzuya#17
Quote:
Originally Posted by astropilote View Post
Cause it's try to start the dll like a .exe, but normally the compilation is done, just press ok and inject the dll.
yea i just found it out.
works perfectly now, thanks!

[Only registered and activated users can see links. Click Here To Register...]
10/03/2015 00:01 Nociif#18
Gj bro ;)
10/03/2015 00:02 Kernel's#19
Quote:
Originally Posted by Shinzuya View Post
yea i just found it out.
works perfectly now, thanks!

[Only registered and activated users can see links. Click Here To Register...]
nice rainbow "unknow command"
10/03/2015 00:18 Shinzuya#20
Quote:
Originally Posted by Kernel's View Post
nice rainbow "unknow command"
Yea, I was bored. :$

Edit : I have a problem adding more commands to it.. how does it work?
I always get errors and such stuff.
Sorry I never used C++ really before.
10/03/2015 10:05 astropilote#21
Just put an elseif before the else for unknow command and after the if for the previous command.
Example:
Code:
if(strstr(Command, "/mycommand1"))
{
// Do ur stuff
}
else if(strstr(Command, "/mycommand2"))
{
// Do ur stuff
}
else if(strstr(Command, "/mycommand3"))
{
// Do ur stuff
}
// You can repeat the elseif how many as you want
else
{
// For unknow command
}
10/03/2015 12:54 Shinzuya#22
Somehow I can't use "elseif" because it's undefined...

[Only registered and activated users can see links. Click Here To Register...]
10/03/2015 13:16 astropilote#23
Oh sorry, i forgot to put space between else and if, like this:
Code:
else if(...) {}
10/03/2015 13:31 Shinzuya#24
Bleeeeeeeeh...


[Only registered and activated users can see links. Click Here To Register...]
10/03/2015 14:26 astropilote#25
You have put the else if in the first if, so can't work xD ^^'
10/03/2015 14:29 alexmen10#26
Thanks release, astropilote :)
10/03/2015 15:25 Shinzuya#27
I don't get it. -.-
10/03/2015 15:49 astropilote#28
Quote:
Originally Posted by Shinzuya View Post
I don't get it. -.-
What you do:
Code:
if (...)
{
  else if (...)
  {
  }
}
What you need to do:
Code:
if(...)
{

}
else if(...)
{

}
10/03/2015 16:22 Shinzuya#29
Quote:
Originally Posted by astropilote View Post
What you do:
Code:
if (...)
{
  else if (...)
  {
  }
}
What you need to do:
Code:
if(...)
{

}
else if(...)
{

}
Thanks..

[Only registered and activated users can see links. Click Here To Register...]
10/03/2015 20:01 BlackAce89#30
Code:
WriteASM((DWORD)GetModuleHandle(0) + 0x11E142, (DWORD)"\xD9", 1);
How can you edit the other bytes too?
I mean if you just change
D9 45 F8 8B E5 5D C3 CC CC CC
to
DB 90 90 90 E5 5D 83 CC CC CC

Already got it xD:
Code:
WriteASM((DWORD)GetModuleHandle(0) + 0x11E142, (DWORD)"\xDB\x90\x90\x90\xE5\x5D\x83", 7);