|
You last visited: Today at 01:02
Advertisement
Stripped ProjectAlchemy Source Code
Discussion on Stripped ProjectAlchemy Source Code within the CO2 Bots & Macros forum part of the Conquer Online 2 category.
01/08/2011, 21:13
|
#556
|
elite*gold: 0
Join Date: Feb 2010
Posts: 50
Received Thanks: 5
|
can someone give me a working hunt/looting code?
|
|
|
01/08/2011, 21:29
|
#557
|
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
|
Quote:
Originally Posted by argon69
I believe it predefined constant. Try it define as 18. So random number will be generated from -18 to 18.
|
great now problem is solved,
but i got another problem, since i changed this line:
public static bool NewBot(Client C)
to this:
public static void NewBot(Client C)
as P4N said
now this line in Client.cs
Code:
while ([COLOR="Red"]this.RunBot && Handler.NewBot(this)[/COLOR])
is underlined red and says that i can't use && between bool and void
so what should i do now?
|
|
|
01/08/2011, 22:37
|
#558
|
elite*gold: 0
Join Date: Sep 2008
Posts: 559
Received Thanks: 1,461
|
Quote:
Originally Posted by [GM]
great now problem is solved,
but i got another problem, since i changed this line:
public static bool NewBot(Client C)
to this:
public static void NewBot(Client C)
as P4N said
now this line in Client.cs
Code:
while ([COLOR="Red"]this.RunBot && Handler.NewBot(this)[/COLOR])
is underlined red and says that i can't use && between bool and void
so what should i do now? 
|
because void specifies that the method does not return a value, and bool is used to declare variables to store the Boolean values, true and false.
|
|
|
01/08/2011, 23:03
|
#559
|
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
|
Quote:
Originally Posted by vecko12
because void specifies that the method does not return a value, and bool is used to declare variables to store the Boolean values, true and false.
|
i know sir, so if i use bool i get an error, and if i use void i get another error
iam using ur old hunting method btw which is in here:

but i get alot of errors, if u updated it, it would be nice if you realese it
ty
|
|
|
01/09/2011, 01:38
|
#560
|
elite*gold: 0
Join Date: Aug 2006
Posts: 45
Received Thanks: 6
|
Quote:
Originally Posted by [GM]
great now problem is solved,
but i got another problem, since i changed this line:
public static bool NewBot(Client C)
to this:
public static void NewBot(Client C)
as P4N said
now this line in Client.cs
Code:
while ([COLOR="Red"]this.RunBot && Handler.NewBot(this)[/COLOR])
is underlined red and says that i can't use && between bool and void
so what should i do now? 
|
If you don't want NewBot to return anything, then while loop should be like
while (this.RunBot)
{
NewBot(this);
...
}
|
|
|
01/09/2011, 01:53
|
#561
|
elite*gold: 223
Join Date: Dec 2007
Posts: 1,076
Received Thanks: 257
|
Quote:
Originally Posted by [GM]
i know sir, so if i use bool i get an error, and if i use void i get another error
iam using ur old hunting method btw which is in here:

but i get alot of errors, if u updated it, it would be nice if you realese it
ty
|
Can you please stop posting WHOLE attack sources, because there will come some noobs that try to compile it and go complain that it wont work (These are noobs with like +1 gear, IE:They know more then the average)
In other news.. Somehow because of internet problems epvp didnt load, and now im banned from epvp, for i dont know how long. Im now using a proxy to login, but this is the reason i was off much.
The bot is currently going good, ninja is as stable as 10k kills, trojan isn't fully tested, but was 3k when my power gone off, warrior is max at 7k, because the shift isnt fully NON-DC yet.
|
|
|
01/09/2011, 02:47
|
#562
|
elite*gold: 0
Join Date: Aug 2006
Posts: 45
Received Thanks: 6
|
Ok, autopot again. For who didn't work on this feature yet, I am adding a bonus here. iteminfo data[64] is item count. Well, ItemInfo doesn't have this information. Then we need to populate
Since I located pots in my inventory. I need to use it. Does UseItem() posted at the beginning work? I guess I will find out soon.
|
|
|
01/09/2011, 04:59
|
#563
|
elite*gold: 0
Join Date: Aug 2006
Posts: 45
Received Thanks: 6
|
Quote:
Originally Posted by argon69
Ok, autopot again. For who didn't work on this feature yet, I am adding a bonus here. iteminfo data[64] is item count. Well, ItemInfo doesn't have this information. Then we need to populate
Since I located pots in my inventory. I need to use it. Does UseItem() posted at the beginning work? I guess I will find out soon.
|
Now it works like a charm. Thanks for the function. I think this could be my last question on hunting bot. How do I know the item is not lootable since the dropped is not yours? I think I am going to set tryCount for the GroundItem. If tryCount > 1 then I will skip.
BTW, I greatly appreciate the help everyone on this thread especially from PxN.
Thanks.
|
|
|
01/09/2011, 09:42
|
#564
|
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
|
Quote:
Originally Posted by argon69
If you don't want NewBot to return anything, then while loop should be like
while (this.RunBot)
{
NewBot(this);
...
}
|
worked like a charm ty, but its dcing after like 3-4 monsters
and it don't stop hunting when i press /hunt again, it only says hunting = true but it don't stop
|
|
|
01/09/2011, 10:02
|
#565
|
elite*gold: 0
Join Date: Aug 2010
Posts: 676
Received Thanks: 109
|
Quote:
Originally Posted by [GM]
worked like a charm ty, but its dcing after like 3-4 monsters
and it don't stop hunting when i press /hunt again, it only says hunting = true but it don't stop
|
What things you added to your bot?
For stop hunting you need to type /hunt
=true ( hunt is on , will attack monsters)
=false(hunt is off , wont attack monsters)
|
|
|
01/09/2011, 10:06
|
#566
|
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
|
Quote:
Originally Posted by demon17
What things you added to your bot?
For stop hunting you need to type /hunt
=true ( hunt is on , will attack monsters)
=false(hunt is off , wont attack monsters)
|
this is the command of hunting
Code:
case "/hunt":
{
if (!C.RunBot)
C.RunBot = true;
UpdateStats(C);
C.Hunting = !C.Hunting;
Chat(C, "Hunting = " + C.Hunting, 2011);
break;
}
but it doesn't stop hunting + it attacks so fast and dcs even when i make the speed of jumping/attacking 100
|
|
|
01/09/2011, 10:20
|
#567
|
elite*gold: 0
Join Date: Aug 2010
Posts: 676
Received Thanks: 109
|
Quote:
Originally Posted by [GM]
this is the command of hunting
Code:
case "/hunt":
{
if (!C.RunBot)
C.RunBot = true;
UpdateStats(C);
C.Hunting = !C.Hunting;
Chat(C, "Hunting = " + C.Hunting, 2011);
break;
}
but it doesn't stop hunting + it attacks so fast and dcs even when i make the speed of jumping/attacking 100
|
For me the speed rates are average . I can use 50 at all but to get stable i use :
attack 50 ( In Bird i need to put it to 60 to get it stable )
jump 100
update 100
pothp 350
hitstokill 1
I never hunt with bot w/out FS . Attacks to fast and get DC
I hit mobs buy my hand and after I FS comes i try to get an amount of ks near to 80+ ti unlimited fs .
But i not have a rand jump in my source . so i need to jump sometimes
|
|
|
01/09/2011, 10:24
|
#568
|
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
|
Quote:
Originally Posted by demon17
For me the speed rates are average . I can use 50 at all but to get stable i use :
attack 50 ( In Bird i need to put it to 60 to get it stable )
jump 100
update 100
pothp 350
hitstokill 1
I never hunt with bot w/out FS . Attacks to fast and get DC
I hit mobs buy my hand and after I FS comes i try to get an amount of ks near to 80+ ti unlimited fs .
But i not have a rand jump in my source . so i need to jump sometimes
|
u can use this RandomJump its working great with me
PHP Code:
private static void RandomJump(Client C)
{
Random random = new Random();
Coord XY = new Coord();
XY.X = (ushort)(C.X + random.Next(-18, 18));
XY.Y = (ushort)(C.Y + random.Next(-18, 18));
if (Calculations.ValidDmap(C.StaticMap, XY.X, XY.Y))
{
Packets.CliJump(XY.X, XY.Y, 156, C);
Packets.Jump(C, XY.X, XY.Y, 137);
Packets.CliJump(XY.X, XY.Y, 156, C);
C.X = XY.X;
C.Y = XY.Y;
C.UpdatedX = XY.X;
C.UpdatedY = XY.Y;
System.Threading.Thread.Sleep(C.JumpSpeed);
C.LastJump = DateTime.Now;
}
}
|
|
|
01/09/2011, 10:39
|
#569
|
elite*gold: 0
Join Date: Aug 2010
Posts: 676
Received Thanks: 109
|
Quote:
Originally Posted by [GM]
u can use this RandomJump its working great with me
PHP Code:
private static void RandomJump(Client C)
{
Random random = new Random();
Coord XY = new Coord();
XY.X = (ushort)(C.X + random.Next(-18, 18));
XY.Y = (ushort)(C.Y + random.Next(-18, 18));
if (Calculations.ValidDmap(C.StaticMap, XY.X, XY.Y))
{
Packets.CliJump(XY.X, XY.Y, 156, C);
Packets.Jump(C, XY.X, XY.Y, 137);
Packets.CliJump(XY.X, XY.Y, 156, C);
C.X = XY.X;
C.Y = XY.Y;
C.UpdatedX = XY.X;
C.UpdatedY = XY.Y;
System.Threading.Thread.Sleep(C.JumpSpeed);
C.LastJump = DateTime.Now;
}
}
|
Amazing ..
This i need to put in the bot.cs nope?
|
|
|
01/09/2011, 10:41
|
#570
|
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
|
Quote:
Originally Posted by demon17
Amazing ..
This i need to put in the bot.cs nope?
|
ya
|
|
|
Similar Threads
|
[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:
|
All times are GMT +1. The time now is 01:02.
|
|