[Tools] by popcorn

06/15/2012 16:12 BestDarkorbitTV2012#46
same tool i can get on france clan page ^^
06/15/2012 18:40 -popcorn-#47
Quote:
Originally Posted by 1Killa View Post
It's hard to read the entire post?Dumb :facepalm:
i was going to awnser the same

and they are all free tools

Quote:
Originally Posted by 2_IMPROVE View Post
I try to download his tools and it asks me for a password in the site to download..... I thought it was free tools?
read the post again, now u will see it muuch better ;)

Quote:
Originally Posted by MiszczuOfWorld View Post
You need to receive packets, good example is OpenStealth.
and how can i do that??? if u could help me to programate i will be really glad
06/15/2012 18:53 MyAccount23#48
nice programs, good job ;)
06/15/2012 19:05 MiszczuOfWorld#49
Quote:
Originally Posted by -popcorn- View Post
and how can i do that??? if u could help me to programate i will be really glad
I don't have time, because i'm creating bot to UW, but you can check UDOBot source code.
06/15/2012 19:51 -popcorn-#50
Quote:
Originally Posted by MiszczuOfWorld View Post
I don't have time, because i'm creating bot to UW, but you can check UDOBot source code.
is udobot in visual basic 2008? and where is scoure code?
06/15/2012 19:56 MiszczuOfWorld#51
Quote:
Originally Posted by -popcorn- View Post
is udobot in visual basic 2008? and where is scoure code?
tvirusx1 wrote udobot in C++/CLI. [Only registered and activated users can see links. Click Here To Register...]
06/15/2012 23:04 -popcorn-#52
Quote:
Originally Posted by MiszczuOfWorld View Post
tvirusx1 wrote udobot in C++/CLI. [Only registered and activated users can see links. Click Here To Register...]
but i dont know c++ or c# or any other, i only know visual basic, and i dont know how to send pakages anyways -.-
06/15/2012 23:09 iEvron#53
visual basic is shit
06/15/2012 23:13 MiszczuOfWorld#54
Quote:
Originally Posted by iEvron View Post
visual basic is shit
True&Bullshit.

@popcorn
if u r good in VB, you are good in other .NET languages.
06/15/2012 23:18 -popcorn-#55
Quote:
Originally Posted by MiszczuOfWorld View Post
True&Bullshit.

@popcorn
if u r good in VB, you are good in other .NET languages.
but c++ is so trange with toooo much {{}}{}{}{}{{{}}{}{}{, and it's confised lol.

well, the only one question is how make visual basic can know when battleray died, i readed all udobot rescoure code, but didnt found yet anything that could help me -.-
06/15/2012 23:24 MiszczuOfWorld#56
Quote:
Originally Posted by -popcorn- View Post
but c++ is so trange with toooo much {{}}{}{}{}{{{}}{}{}{, and it's confised lol.

well, the only one question is how make visual basic can know when battleray died, i readed all udobot rescoure code, but didnt found yet anything that could help me -.-
It's hard to do. { } { } is not hard.

Code in c#
Code:
string MiszczuGod = string.Format("Miszczu is {0}", "God!");
if (MiszczuGod.Equals("something")
 FuckYou();
Code in c++
Code:
String ^MiszczuGod = String::Format("Miszczu is {0}", "God!");
if (MiszczuGod->Equals("something")
 FuckYou();
Code in VB
Code:
Dim MiszczuGod As String = String.Format("Miszczu is {0}", "God!")
If MiszczuGod.Equals("something") Then FuckYou()
06/16/2012 00:31 -popcorn-#57
Quote:
Originally Posted by MiszczuOfWorld View Post
It's hard to do. { } { } is not hard.

Code in c#
Code:
string MiszczuGod = string.Format("Miszczu is {0}", "God!");
if (MiszczuGod.Equals("something")
 FuckYou();
Code in c++
Code:
String ^MiszczuGod = String::Format("Miszczu is {0}", "God!");
if (MiszczuGod->Equals("something")
 FuckYou();
Code in VB
Code:
Dim MiszczuGod As String = String.Format("Miszczu is {0}", "God!")
If MiszczuGod.Equals("something") Then FuckYou()
well, but, how can i detect when a battleray die?

see this part pf the udobot scoure(just a part, nothing special)
Code:
void _UseInstashield() {
		if(checkBox7->Checked) {
			int max = (int)numericUpDown2->Value;
			if(max > 0 && _Times_Used_Instashield < max) {
				if(((hero.getHP()/hero.getMaxHP())*100.0) <= 35.0) {
					if((InstashieldCooldown - DateTime::Now).Seconds <= 0) {
						Thread::Sleep(100);
						SendPacket(hSocket,String::Format(L"{0}|{1}",CLIENT_SELECT,INSTASHIELD));
						InstashieldCooldown = DateTime::Now.AddSeconds(30);
						_Times_Used_Instashield++;
					}
				}
			}
		}
	}
	void _UseEMP() {
		if(checkBox8->Checked) {
			int max = (int)numericUpDown2->Value;
			if(max > 0 && _Times_Used_EMP < max) {
				if(EnemiesAttackingUs->Count > 1) {
					if((EMPCooldown - DateTime::Now).Seconds <= 0) {
						Thread::Sleep(100);
						SendPacket(hSocket,String::Format(L"{0}|{1}",CLIENT_SELECT,EMP));
						EMPCooldown = DateTime::Now.AddSeconds(30);
						_Times_Used_EMP++;
					}
				}
			}
		}
	}
thst's my problem, too much {
{
{

}
}

and i get lost between all them-.-
06/18/2012 15:22 -popcorn-#58
RSB Changer

this is a program that changes between rsb-75 ammo and other ammo. i have done 2 versions, a delay version and a non delay version, non delay version do in same moment change, delay one, have a delaying of 0,1 second between rsb and other amm(delay one is for non bann).

freatures:

here you have an image of the program:

[Only registered and activated users can see links. Click Here To Register...]
DOWNLOAD AND VIRUS TOTAL
06/18/2012 15:27 Patato​#59
good work man ;)
06/18/2012 15:43 MiszczuOfWorld#60
Quote:
Originally Posted by -popcorn- View Post
well, but, how can i detect when a battleray die?

see this part pf the udobot scoure(just a part, nothing special)
Code:
void _UseInstashield() {
		if(checkBox7->Checked) {
			int max = (int)numericUpDown2->Value;
			if(max > 0 && _Times_Used_Instashield < max) {
				if(((hero.getHP()/hero.getMaxHP())*100.0) <= 35.0) {
					if((InstashieldCooldown - DateTime::Now).Seconds <= 0) {
						Thread::Sleep(100);
						SendPacket(hSocket,String::Format(L"{0}|{1}",CLIENT_SELECT,INSTASHIELD));
						InstashieldCooldown = DateTime::Now.AddSeconds(30);
						_Times_Used_Instashield++;
					}
				}
			}
		}
	}
	void _UseEMP() {
		if(checkBox8->Checked) {
			int max = (int)numericUpDown2->Value;
			if(max > 0 && _Times_Used_EMP < max) {
				if(EnemiesAttackingUs->Count > 1) {
					if((EMPCooldown - DateTime::Now).Seconds <= 0) {
						Thread::Sleep(100);
						SendPacket(hSocket,String::Format(L"{0}|{1}",CLIENT_SELECT,EMP));
						EMPCooldown = DateTime::Now.AddSeconds(30);
						_Times_Used_EMP++;
					}
				}
			}
		}
	}
thst's my problem, too much {
{
{

}
}

and i get lost between all them-.-
Simple code.