same tool i can get on france clan page ^^
i was going to awnser the sameQuote:
It's hard to read the entire post?Dumb :facepalm:
read the post again, now u will see it muuch better ;)Quote:
I try to download his tools and it asks me for a password in the site to download..... I thought it was free tools?
and how can i do that??? if u could help me to programate i will be really gladQuote:
You need to receive packets, good example is OpenStealth.
tvirusx1 wrote udobot in C++/CLI. [Only registered and activated users can see links. Click Here To Register...]Quote:
is udobot in visual basic 2008? and where is scoure code?
but i dont know c++ or c# or any other, i only know visual basic, and i dont know how to send pakages anyways -.-Quote:
tvirusx1 wrote udobot in C++/CLI. [Only registered and activated users can see links. Click Here To Register...]
but c++ is so trange with toooo much {{}}{}{}{}{{{}}{}{}{, and it's confised lol.Quote:
True&Bullshit.
@popcorn
if u r good in VB, you are good in other .NET languages.
It's hard to do. { } { } is not hard.Quote:
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 -.-
string MiszczuGod = string.Format("Miszczu is {0}", "God!");
if (MiszczuGod.Equals("something")
FuckYou();
String ^MiszczuGod = String::Format("Miszczu is {0}", "God!");
if (MiszczuGod->Equals("something")
FuckYou();
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?Quote:
It's hard to do. { } { } is not hard.
Code in c#
Code in c++Code:string MiszczuGod = string.Format("Miszczu is {0}", "God!"); if (MiszczuGod.Equals("something") FuckYou();
Code in VBCode:String ^MiszczuGod = String::Format("Miszczu is {0}", "God!"); if (MiszczuGod->Equals("something") FuckYou();
Code:Dim MiszczuGod As String = String.Format("Miszczu is {0}", "God!") If MiszczuGod.Equals("something") Then FuckYou()
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++;
}
}
}
}
}
Simple code.Quote:
well, but, how can i detect when a battleray die?
see this part pf the udobot scoure(just a part, nothing special)
thst's my problem, too much {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++; } } } } }
{
{
}
}
and i get lost between all them-.-