|
You last visited: Today at 13:13
Advertisement
Some AOBs
Discussion on Some AOBs within the S4 League Hacks, Bots, Cheats & Exploits forum part of the S4 League category.
10/04/2015, 15:30
|
#31
|
elite*gold: 0
Join Date: Sep 2012
Posts: 88
Received Thanks: 13
|
any for conqest?
|
|
|
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
any for conqest?
|
as you can see, no
|
|
|
10/04/2015, 20:21
|
#33
|
elite*gold: 0
Join Date: Sep 2012
Posts: 88
Received Thanks: 13
|
Quote:
Originally Posted by Shinzuya
as you can see, no
|
CAN YOU MAKE A CONQUEST? for VALOFE?
|
|
|
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
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
|
#35
|
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!
|
|
|
10/05/2015, 18:41
|
#36
|
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
|
|
|
10/05/2015, 18:44
|
#37
|
elite*gold: 0
Join Date: Jul 2015
Posts: 124
Received Thanks: 209
|
Quote:
Originally Posted by BlackAce89
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
|
#38
|
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
|
|
|
10/05/2015, 21:10
|
#39
|
elite*gold: 0
Join Date: Sep 2012
Posts: 88
Received Thanks: 13
|
Quote:
Originally Posted by Shinzuya
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
|
|
|
10/05/2015, 21:30
|
#40
|
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.
|
|
|
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
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
|
#42
|
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"
}
}
|
|
|
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
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
|
#44
|
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"
}
}
|
|
|
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
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
|
|
|
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.
|
|