well ur always goin 2 have some go n come bac not sure if he goin 2 keep that updated when the next patch comes out knocking it off he does that from time to time
Those that did leave this thread are those that have no interest in coding themselves and would rather everybody else do everything for them. Those that are still here can either code or are learning to code.
Ok well I`ll ask again but shouldn`t this work? It mines fine when just writing /mining but I type /hunt and it does nothing? I have tried changing a few things but still nothing? And yes I have a hunting code lol.
Code:
public static bool NewBot(Client C)
{
while (C.RunBot)
{
if (!C.Mining)
return true;
if (C.LastDropped.AddSeconds(15) < DateTime.Now)
{
foreach (Items.ItemInfo I in C.Inventory.Values)
{
if (Handler.IsOre(I.ID))
{
C.LastDropped = DateTime.Now;
Packets.DropItem(C, I.UID);
break;
}
}
}
if (!C.Hunting)
return true;
Ok well I`ll ask again but shouldn`t this work? It mines fine when just writing /mining but I type /hunt and it does nothing? I have tried changing a few things but still nothing? And yes I have a hunting code lol.
Code:
public static bool NewBot(Client C)
{
while (C.RunBot)
{
if (!C.Mining)
return true;
if (C.LastDropped.AddSeconds(15) < DateTime.Now)
{
foreach (Items.ItemInfo I in C.Inventory.Values)
{
if (Handler.IsOre(I.ID))
{
C.LastDropped = DateTime.Now;
Packets.DropItem(C, I.UID);
break;
}
}
}
if (!C.Hunting)
return true;
because ur saying if not mining to just return. try setting an enum to ur current activity
So I have looked at an example of enums and not sure which I should choose from, I`m guessing it is giving three examples. Am I wise to look at this?
Code:
public class EnumTest {
enum Days { Saturday, Sunday, Monday, Tuesday, Wednesday, Thursday, Friday };
enum BoilingPoints { Celcius = 100, Fahrenheit = 212 };
[FlagsAttribute]
enum Colors { Red = 1, Green = 2, Blue = 4, Yellow = 8 };
public static void Main() {
Type weekdays = typeof(Days);
Type boiling = typeof(BoilingPoints);
Console.WriteLine("The days of the week, and their corresponding values in the Days Enum are:");
foreach ( string s in Enum.GetNames(weekdays) )
Console.WriteLine( "{0,-11}= {1}", s, Enum.Format( weekdays, Enum.Parse(weekdays, s), "d"));
Console.WriteLine();
Console.WriteLine("Enums can also be created which have values that represent some meaningful amount.");
Console.WriteLine("The BoilingPoints Enum defines the following items, and corresponding values:");
foreach ( string s in Enum.GetNames(boiling) )
Console.WriteLine( "{0,-11}= {1}", s, Enum.Format(boiling, Enum.Parse(boiling, s), "d"));
Colors myColors = Colors.Red | Colors.Blue | Colors.Yellow;
Console.WriteLine();
Console.WriteLine("myColors holds a combination of colors. Namely: {0}", myColors);
}
}
Does it matter where the enum goes? Like can it be put in say client.cs or program.cs, I have placed it in Client.cs though. I mean the "enum BotTypes"
Also this part I am a little confused at "then inside your character" but this part I understand "have a BotType setup with default value Inactive"
The character class should have a bottype added to it which you can modify via cmd...
The enum itself can go anywhere just keep in mind you will then have to follow how your proxy is setup (IE: if it's under the handler class then you would be doing something like C.BotType = Handler.Enum.Inactive)
You could always have it independent from any class but again... it's all personal preference.
[RELEASE(SOURCE CODE)]-- KabBOT2 v1 Full Source(vb6) 10/07/2011 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 106 Replies I've been meaning to post this for awhile but I pretty much forgot about it. I've been getting quite a few requests for it so I decided to finally get around to posting it.
#1. So here you go, Just have or Download Visual Basic 6, you need to update it to VbRuntime 6 Service Pack 6.
#2. Run the file name KabBOT.vbp.
#3. Enjoy.
100% Virus Free VirusTotal.com report.
VirusTotal - Free Online Virus, Malware and URL Scanner
[RELEASE] [OPEN SOURCE] CE 5.5 Pointer to AutoIt Source-Code 02/13/2011 - AutoIt - 6 Replies Habe heute erst gemerkt, dass es hier eine AutoIt Sektion gibt xD also poste ich mal mein Programm mit rein.
Funktionsweise:
1. in CE Rechtsklick auf den Pointer und auf "Copy" klicken
2. in meinem Programm auf "Code generieren" klicken
3. In euer Scite gehen und einfügen
Hier ist der Source Code vom Programm: