Register for your free account! | Forgot your password?

You last visited: Today at 13:13

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Some AOBs

Discussion on Some AOBs within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.

Reply
 
Old 10/04/2015, 15:30   #31
 
elite*gold: 0
Join Date: Sep 2012
Posts: 88
Received Thanks: 13
any for conqest?
makoyecol is offline  
Old 10/04/2015, 17:55   #32
 
elite*gold: 1
Join Date: Apr 2012
Posts: 3,001
Received Thanks: 6,198
Quote:
Originally Posted by makoyecol View Post
any for conqest?
as you can see, no
Shinzuya is offline  
Old 10/04/2015, 20:21   #33
 
elite*gold: 0
Join Date: Sep 2012
Posts: 88
Received Thanks: 13
Quote:
Originally Posted by Shinzuya View Post
as you can see, no
CAN YOU MAKE A CONQUEST? for VALOFE?
makoyecol is offline  
Old 10/05/2015, 09:59   #34
 
elite*gold: 1
Join Date: Apr 2012
Posts: 3,001
Received Thanks: 6,198
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
Shinzuya is offline  
Old 10/05/2015, 17:06   #35
 
Kernel's's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 124
Received Thanks: 209


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

Edit: Solved Problem!
Kernel's is offline  
Old 10/05/2015, 18:41   #36
 
BlackAce89's Avatar
 
elite*gold: 0
Join Date: Dec 2013
Posts: 242
Received Thanks: 144
You only need the !=nullptr for the first command
And you should check, it was really compiled... #lookatthedate x3
BlackAce89 is offline  
Old 10/05/2015, 18:44   #37
 
Kernel's's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 124
Received Thanks: 209
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!
Kernel's is offline  
Thanks
1 User
Old 10/05/2015, 19:53   #38
 
BlackAce89's Avatar
 
elite*gold: 0
Join Date: Dec 2013
Posts: 242
Received Thanks: 144
Mh.. right after i injected the dll S4 Crashes D:

Edit. fixed it... o_o
BlackAce89 is offline  
Thanks
1 User
Old 10/05/2015, 21:10   #39
 
elite*gold: 0
Join Date: Sep 2012
Posts: 88
Received Thanks: 13
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
makoyecol is offline  
Old 10/05/2015, 21:30   #40
 
golle12's Avatar
 
elite*gold: 29
Join Date: Aug 2011
Posts: 640
Received Thanks: 493
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.
golle12 is offline  
Old 10/06/2015, 10:12   #41
 
elite*gold: 1
Join Date: Apr 2012
Posts: 3,001
Received Thanks: 6,198
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?
Shinzuya is offline  
Old 10/06/2015, 13:32   #42
 
astropilote's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 282
Received Thanks: 492
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"
      }
}
astropilote is offline  
Thanks
1 User
Old 10/06/2015, 14:00   #43
 
elite*gold: 1
Join Date: Apr 2012
Posts: 3,001
Received Thanks: 6,198
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
Shinzuya is offline  
Old 10/06/2015, 18:26   #44
 
astropilote's Avatar
 
elite*gold: 0
Join Date: Feb 2011
Posts: 282
Received Thanks: 492
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"
      }
}
astropilote is offline  
Thanks
1 User
Old 10/06/2015, 19:53   #45
 
elite*gold: 1
Join Date: Apr 2012
Posts: 3,001
Received Thanks: 6,198
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
Shinzuya is offline  
Reply


Similar Threads Similar Threads
Aobs .... etc
03/24/2015 - S4 League Hacks, Bots, Cheats & Exploits - 15 Replies
#removed 1 verwarnung reicht mir wegen gamebreaking



All times are GMT +1. The time now is 13:15.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.