Go Back   GamerzPlanet - For All Your Online Gaming Needs!! > Programming/Web Design > Visual Basic

Visual Basic VB Discussion. (Including VB.Net)


[VB6] Last Chaos Clientless Bot Source

Visual Basic


Closed Thread
 
Thread Tools Display Modes
Old 05-31-2007, 02:50 PM   #1
killzone
Registered User
 
Last Online: 11-18-2009 12:51 AM
Join Date: Apr 2006
Posts: 44
Rep Power: 0
Rep Points: 10
killzone is on a distinguished road
Feedback: (0)
Points: 28,938.48
Bank: 0.00
Total Points: 28,938.48
Exclamation [VB6] Last Chaos Clientless Bot Source

Game: Last Chaos
Server: USA
Registration: [Only registered and activated users can see links. ]

Disclaimer:
This is not my source nor my own work, I had this when the site was still online.
Since the site went down, theres no way you can download this source in any site (I think)
This is the full source of Last Chaos Bot.
Completely written in VB6.
If your Interested you may download and use this source.
I dont care what you do to this source but please do reminded the the original Author of this source (Positron) released this to public to be Open Source.
And give credits to those who have helped you or where the source originally from.

I dont have intention of ruining a game, this is for educational purpose only.

//end disclaimer//

Ill give a short description of the file your going to download and what it does.

Little Description:
The bot was designed to be stand alone and will connect to the game as if you we're the one playing your char.
The bot has featured most of the LC Client have.
The bot has a built-in AI (in source) that will do most of the grinding for you.
Theres no Major CHANGE in the source.
The I.P Address in the Config is already set to the I.P of Last Chaos USA server and also the Port (4010)

Note:
There are 2 ports the Game Client uses.
Loging Port: ID / Password
Port: 4010
Game Port: Character Selection Screen (Client)
Port: 4001

------------
Have Fun!
------------
[Only registered and activated users can see links. ]
[Only registered and activated users can see links. ]
P.S. Also download a copy of the English Translated "Options.ini".

Ah yes, use WinRar to extract the files just incase. :P

Hope this helps.
-killzone

Last edited by killzone; 06-28-2007 at 02:33 PM.
killzone is offline  
Sponsored Links
Old 06-17-2007, 06:54 PM   #2
Khatulu
Lurker
 
Last Online: 06-17-2007 07:44 PM
Join Date: Jun 2007
Posts: 1
Rep Power: 0
Rep Points: 10
Khatulu is on a distinguished road
Feedback: (0)
Points: 100.00
Bank: 0.00
Total Points: 100.00
Re: [VB6] Last Chaos Clientless Bot Source

Umm is there supposed to be an actual d/l link after clicking on the one you posted above? All that one does is take me to your login page of the file sharing site... sounds like a good thing but nowhere to download. :/
Khatulu is offline  
Old 06-23-2007, 03:36 AM   #3
xRockLeex
Lurker
 
Last Online: 01-08-2008 07:01 PM
Join Date: Oct 2006
Posts: 6
Rep Power: 0
Rep Points: 10
xRockLeex is on a distinguished road
Feedback: (0)
Points: 360.00
Bank: 0.00
Total Points: 360.00
Re: [VB6] Last Chaos Clientless Bot Source

Where's the link to the file? I only saw the file hosting site.
xRockLeex is offline  
Old 06-24-2007, 03:24 AM   #4
Mordius
Lurker
 
Last Online: 06-24-2007 03:24 AM
Join Date: Jun 2007
Posts: 1
Rep Power: 0
Rep Points: 10
Mordius is on a distinguished road
Feedback: (0)
Points: 100.00
Bank: 0.00
Total Points: 100.00
Question Re: [VB6] Last Chaos Clientless Bot Source

Sry for asking this, in other posts i saw people asking for the compiled version, ive tryed to do it myself, but ive never worked with vb6 and ive downloaded and installed a vb6 ez compiler, but it doesnt worked when i installed the bot, can you help me, saying what i have to do to compile will be very useful. Thanks !

[Only registered and activated users can see links. ]
Mordius is offline  
Old 06-28-2007, 11:17 AM   #5
xander123
Lurker
 
Last Online: 10-10-2009 04:15 PM
Join Date: Mar 2007
Posts: 1
Rep Power: 0
Rep Points: 10
xander123 is on a distinguished road
Feedback: (0)
Points: 2,400.00
Bank: 0.00
Total Points: 2,400.00
Re: [VB6] Last Chaos Clientless Bot Source

how do i use it ??
xander123 is offline  
Old 06-28-2007, 02:34 PM   #6
killzone
Registered User
 
Last Online: 11-18-2009 12:51 AM
Join Date: Apr 2006
Posts: 44
Rep Power: 0
Rep Points: 10
killzone is on a distinguished road
Feedback: (0)
Points: 28,938.48
Bank: 0.00
Total Points: 28,938.48
Re: [VB6] Last Chaos Clientless Bot Source

The link works now, you may download again the source.
killzone is offline  
Old 07-01-2007, 09:41 AM   #7
sik0z
Lurker
 
Last Online: 09-08-2007 07:00 AM
Join Date: Jun 2007
Posts: 1
Rep Power: 0
Rep Points: 10
sik0z is on a distinguished road
Feedback: (0)
Points: 100.00
Bank: 0.00
Total Points: 100.00
Re: [VB6] Last Chaos Clientless Bot Source

In the MD5.cls change this:

Code:
Public Function DigestFileToHexStr(FileName As String) As String
    Open FileName For Binary Access Read As #1
    MD5Init
    Do While Not EOF(1)
        Get #1, , ByteBuffer
        If Loc(1) < LOF(1) Then
            ByteCounter = ByteCounter + 64
            MD5Transform ByteBuffer
        End If
    Loop
    ByteCounter = ByteCounter + (LOF(1) Mod 64)
    Close #1
    MD5Final
    DigestFileToHexStr = GetValues
End Function
To this

Code:
Public Function DigestFileToHexStr(FileName As String) As String
    Open FileName For Binary Access Read As #1
    MD5Init
    Do While Not EOF(1)
        Get #1, , ByteBuffer
        If LOF(1) < LOF(1) Then
            ByteCounter = ByteCounter + 64
            MD5Transform ByteBuffer
        End If
    Loop
    ByteCounter = ByteCounter + (LOF(1) Mod 64)
    Close #1
    MD5Final
    DigestFileToHexStr = GetValues
End Function
Then you can compile it
sik0z is offline  
Old 07-12-2007, 04:54 AM   #8
corne
Registered User
 
Last Online: 07-26-2007 10:41 AM
Join Date: Dec 2005
Posts: 20
Rep Power: 0
Rep Points: 10
corne is on a distinguished road
Feedback: (0)
Points: 2,404.00
Bank: 0.00
Total Points: 2,404.00
Re: [VB6] Last Chaos Clientless Bot Source

Umm how do you compile it ? could you upload the compiled one please

Btw thanx for this hope i get it working :P
corne is offline  
Old 07-13-2007, 02:50 PM   #9
Xenoth
Lurker
 
Last Online: 01-11-2009 01:19 PM
Join Date: Jul 2007
Posts: 1
Rep Power: 0
Rep Points: 10
Xenoth is on a distinguished road
Feedback: (0)
Points: 200.00
Bank: 0.00
Total Points: 200.00
Re: [VB6] Last Chaos Clientless Bot Source

when ever i open the agressive.vbp i get rixcht32x.ocx could not be loaded... then it just closes what do i do
Xenoth is offline  
Old 07-13-2007, 11:32 PM   #10
Mellowz
Lurker
 
Last Online: 10-24-2009 06:23 AM
Join Date: Jul 2006
Posts: 5
Rep Power: 0
Rep Points: 10
Mellowz is on a distinguished road
Feedback: (0)
Points: 502.00
Bank: 0.00
Total Points: 502.00
Re: [VB6] Last Chaos Clientless Bot Source

The bot compiles fine after adjusting the source code, but the program doesn't work with the latest version of LastChaos. I believe that it's either the login or character IP address or port is wrong, or the client protocol is wrong. Anyone get this to work yet?

Also, when was this bot created? o_0

EDIT: I'm pretty sure it's the protocol or whatever the bot it sending to the server since the bot DOES connect to the server in the first place.

Last edited by Mellowz; 07-13-2007 at 11:34 PM.
Mellowz is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Forum Jump

All times are GMT -7. The time now is 01:15 AM.

 

Copyright ©2010, GamerzPlanet.Net
Visits: