Author Topic: Code name: "Vanquish Chat"  (Read 20595 times)

0 Members and 1 Guest are viewing this topic.

Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Code name: "Vanquish Chat"
« on: May 18, 2005, 01:16:56 pm »
This is the code name for the bot itself mostly because we haven't thought of one but we wanted to call it something for now. Anyhow this project is a dual project between WiReS and myself and we are currently looking for ideas throughout the community.

This is just some of the stuff we have or are looking forward to currently:
- Full support of all clients through BNLS and a hashed connection. Our BNLS connection is a secure connection as we use BNCSutil.dll to hash all passwords and cdkeys while using BNLS' core features that require absolutely no hash files.
- Full MCP support
- Customizable colors for all chat events (There are limitations but it's overall pretty customizable)
- All the basic features of a chat bot. (Mostly optional stuff and settings)
- The ability to load multiple profiles and a multiple sockets for those profiles so only one executable is required for all your chatting needs.

Other features we wish to impliment are classified to some extent. This is hardly completed and only connects and shows events properly. This is somewhat of a branch of PiAnKA and I's "Mario Chat" however much more cleaner (10x). I'd love to hear what suggestions you have for things you've always wanted or think a chat bot SHOULD have. No suggestion will go unturned.

As for information about beta testing. We have agreed that it will only extend out to our clan (x86). Thus x86 members only will recieve a beta whenever it's due. A release date isn't known but probably in 3 - 4 weeks I am assuming as summer is coming.

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #1 on: May 18, 2005, 02:20:30 pm »
You make me sad!!  What language is this in?

Suggestions:
Add in a feature where I get to use it.
HTML logs of dom!

Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #2 on: May 19, 2005, 12:52:44 pm »
You make me sad!!  What language is this in?

Suggestions:
Add in a feature where I get to use it.
HTML logs of dom!

It's in visual basic 6.0. This will probably be my last VB6 bot development project, it's really time to move on, don't you agree? Anyhow I haven't ran it over with WiReS but he'll probably agree that we make it private to people we know. I honestly don't care for for fame or public opinion anymore as may have used to, it's really quite useless. I've programmed publically for a couple of years and have had no satisfaction in it. We'll probably just open-beta and release it to people we know (yourself included Rabbit). If WiReS agrees I'll let you know. I am pretty sure he's the same way.  HTML logs is a possibility if I figure out a way a extract colors from the RTB and output them.

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #3 on: May 19, 2005, 01:16:14 pm »
Code: [Select]
Public Function HTMLFont(lngColor As Long, strLine As String)
    Dim strColorCode As String
    strColorCode = Hex(lngColor)
    strColorCode = IIf(strColorCode <> "C0C0C0", _
        StrReverse(strColorCode), _
        strColorCode)
       
    strColorCode = Left(strColorCode & "00000", 6)
   
    strLine = Replace(strLine, "&", "&amp;")
    strLine = Replace(strLine, "<", "&lt;")
    strLine = Replace(strLine, ">", "&gt;")
   
    HTMLFont = "<font face=arial color=#" & strColorCode & _
        " size=2>" & strLine & "</font>"
End Function

Add into the AddChat routine (or whatever you call it):
Code: [Select]
var = HTMLFont(CLng(vData(i)), CStr(vData(i + 1)))That's how I did it for MeBot, anyways.

Offline wires

  • Pwnage
  • x86
  • Hero Member
  • *****
  • Posts: 1103
  • cocaine is fun!
    • View Profile
    • Weapon Of Mass Destruction
Re: Code name: "Vanquish Chat"
« Reply #4 on: May 19, 2005, 08:31:02 pm »
HTML logging?  Why not just add a webbot?

Offline Krazed

  • x86
  • Hero Member
  • *****
  • Posts: 1822
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #5 on: May 20, 2005, 08:08:22 am »
HTML logging is good.. but uhm, how about some uber-secure method of making sure it doesn't get leaked?  :P
It is good to be good, but it is better to be lucky.

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #6 on: May 20, 2005, 08:57:28 am »
Fingerprint scanner!

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Code name: "Vanquish Chat"
« Reply #7 on: May 20, 2005, 06:16:05 pm »
I'd recommend following the pattern that Redchair Software does if this was a bigger project, but I don't think it'd be worth the work. The security measures would take longer than the actual project!

For HTML logging for XeroethBot, I used the same method Rabbit did, with different code (of course). I didn't have a dynamic method for the hex colors though, I just had a select case (eww, I know).

A little bit of a 'suggestion' (not really a correction) on rabbit's code though:

Code: [Select]
Public Function HTMLFont(ByVal lngColor As Long, ByVal strLine As String)
    Dim strColorCode As String
    strColorCode = Hex(lngColor)
    strColorCode = IIf(strColorCode <> "C0C0C0", _
        StrReverse(strColorCode), _
        strColorCode)
       
    strColorCode = Left(strColorCode & "00000", 6)
   
    strLine = Replace(strLine, "&", "&amp;")
    strLine = Replace(strLine, "<", "&lt;")
    strLine = Replace(strLine, ">", "&gt;")
   
    HTMLFont = "<font face=arial color=#" & strColorCode & _
        " size=2>" & strLine & "</font>"
End Function

The default in VB6 is ByRef, not ByVal. If you use ByRef here, you could end up getting yourself in trouble if you use the string to add to the RTB before it's actually added. :)

Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #8 on: May 20, 2005, 06:57:27 pm »
Haha, man I have had enough troubles with ByRef in the past, ugh...man those memories are swarming in...lol

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #9 on: May 21, 2005, 08:32:38 am »
I use a string for each of the log buffers (MeBot has HTML and plain-text logging), and I use manipulate the input array for the RTB.  The buffers never reach the RTB :)

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Code name: "Vanquish Chat"
« Reply #10 on: May 21, 2005, 01:35:42 pm »
I use a string for each of the log buffers (MeBot has HTML and plain-text logging), and I use manipulate the input array for the RTB.  The buffers never reach the RTB :)

That works too, but it never hurts to be safe. ^^;

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #11 on: May 21, 2005, 05:58:20 pm »
Yes it does.  IE: if you use a condom, but it's too small and it cuts off circulation to your dick, which then needs to be amputated.  Owned.

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Code name: "Vanquish Chat"
« Reply #12 on: May 21, 2005, 07:04:37 pm »
Yes it does.  IE: if you use a condom, but it's too small and it cuts off circulation to your dick, which then needs to be amputated.  Owned.

I said safe, not too safe. A better analogy to my example (and related to your analogy) would be having your fuckbuddy on birth control pills/patches and wearing a condom. :)

Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #13 on: May 22, 2005, 10:21:25 am »
FAG

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Code name: "Vanquish Chat"
« Reply #14 on: May 22, 2005, 04:23:55 pm »
Thats not too safe. Birth control doesn't protect against STD's.
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline rabbit

  • x86
  • Hero Member
  • *****
  • Posts: 8092
  • I speak for the entire clan (except Joe)
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #15 on: May 22, 2005, 05:12:04 pm »
Hence the condom -.-

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Code name: "Vanquish Chat"
« Reply #16 on: May 22, 2005, 05:44:51 pm »
What if it breaks? Best not to have STD's and a baby. :)

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Code name: "Vanquish Chat"
« Reply #17 on: May 23, 2005, 12:43:22 am »
How about, best not to push so hard?
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Krazed

  • x86
  • Hero Member
  • *****
  • Posts: 1822
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #18 on: May 23, 2005, 09:20:25 am »
How about, best not to take topics this far off-topic?
It is good to be good, but it is better to be lucky.

Offline Sidoh

  • x86
  • Hero Member
  • *****
  • Posts: 17634
  • MHNATY ~~~~~
    • View Profile
    • sidoh
Re: Code name: "Vanquish Chat"
« Reply #19 on: May 23, 2005, 07:48:22 pm »
How about, best not to take topics this far off-topic?

You're no fun at all.

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Code name: "Vanquish Chat"
« Reply #20 on: May 24, 2005, 11:23:56 pm »
Thus we shouldn't push so hard.
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Krazed

  • x86
  • Hero Member
  • *****
  • Posts: 1822
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #21 on: June 12, 2005, 05:11:38 pm »
Thus we shouldn't push so hard.

Lmao. Although I hate off-topic, that was pretty damn funny.
It is good to be good, but it is better to be lucky.

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Code name: "Vanquish Chat"
« Reply #22 on: June 23, 2005, 12:34:58 am »
I want a copy of Vanquish Chat RIGHT NOW, and I WILL push you hard if you don't give me it! =)
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline wires

  • Pwnage
  • x86
  • Hero Member
  • *****
  • Posts: 1103
  • cocaine is fun!
    • View Profile
    • Weapon Of Mass Destruction
Re: Code name: "Vanquish Chat"
« Reply #23 on: June 23, 2005, 03:25:00 am »
I'll just push you harder then.

Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #24 on: June 23, 2005, 12:08:45 pm »
O.o!

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline Furious

  • Hero Member
  • *****
  • Posts: 1833
  • I hate rabbits
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #25 on: October 10, 2005, 12:21:34 am »
Any updates?
Quote
[23:04:34] <deadly7[x86]> Newby[x86]
[23:04:35] <deadly7[x86]> YOU ARE AN EMO
[23:04:39] <Newby[x86]> shush it woman

Quote
[17:53:31] InsaneJoey[e2] was banned by x86 (GO EAT A BAG OF FUCK ASSHOLE (randomban)).

Quote from: Ergot
Put it this way Joe... you're on my Buddy List... if there's no one else on an you're the only one, I'd rather talk to myself.

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Code name: "Vanquish Chat"
« Reply #26 on: October 10, 2005, 08:20:07 am »
Yes. Networks left x86 and the project croaked. I'll have to talk to WiReS to see if he's done anything.

Hint: SeRiW! Get on AIM!
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline wires

  • Pwnage
  • x86
  • Hero Member
  • *****
  • Posts: 1103
  • cocaine is fun!
    • View Profile
    • Weapon Of Mass Destruction
Re: Code name: "Vanquish Chat"
« Reply #27 on: November 09, 2005, 07:36:43 pm »
Any updates?
When I can get back in contact with Networks we'll start discussing on how we'll release it.

Yes. Networks left x86 and the project croaked. I'll have to talk to WiReS to see if he's done anything.

Hint: SeRiW! Get on AIM!
Just because Networks left doesn't mean it died. ;]

Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #28 on: November 20, 2005, 01:40:29 pm »
hrm...the project never croaked!

Anyhow, the release should expected fairly soon, I am just finishing up the last bit of features for the first release (expect more as we add-on new features and fix bugs -- oh there will be bugs I can feel it) We WERE expecting a release last monday (lol..) but school is always in the way. I finished a lot this weekend (feature wise) and I hope to finish all of them as well as the release stuff. So expect something around Thanksgiving or so.

A lot of bugs were fixed from previous builds so I am really happy about that. Also I conviced wires that we should do constant releases in an effort to keep the project alive. Also it contributes to less bugs due to less features. It's not complete at all but it will have the essentials in its first release plus more. I think it looks great so far stay anxious if you are already.

Edit: Also I think I am trying to get back into x86, funny how things change.
« Last Edit: November 20, 2005, 01:43:18 pm by Networks »

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline Furious

  • Hero Member
  • *****
  • Posts: 1833
  • I hate rabbits
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #29 on: November 20, 2005, 03:38:46 pm »
Message me when/if you want some help testing :P
Quote
[23:04:34] <deadly7[x86]> Newby[x86]
[23:04:35] <deadly7[x86]> YOU ARE AN EMO
[23:04:39] <Newby[x86]> shush it woman

Quote
[17:53:31] InsaneJoey[e2] was banned by x86 (GO EAT A BAG OF FUCK ASSHOLE (randomban)).

Quote from: Ergot
Put it this way Joe... you're on my Buddy List... if there's no one else on an you're the only one, I'd rather talk to myself.

Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #30 on: November 20, 2005, 05:51:10 pm »
Message me when/if you want some help testing :P

Will do. I think we may want some testers just to make sure we don't have any dumbass bugs before release. I hate overlooking things and having to make a new build right away.

***Update***
Global Options are completely finished.
Individual are next, only a few. Expect the release very soon. =]

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline Quik

  • Webmaster Guy
  • x86
  • Hero Member
  • *****
  • Posts: 3262
  • \x51 \x75 \x69 \x6B \x5B \x78 \x38 \x36 \x5D
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #31 on: November 20, 2005, 06:59:02 pm »
You can always hit me up for testing, or just a look-through. I'm pretty interested.
Quote
[20:21:13] xar: i was just thinking about the time iago came over here and we made this huge bomb and light up the sky for 6 min
[20:21:15] xar: that was funny

Offline Joe

  • B&
  • x86
  • Hero Member
  • *****
  • Posts: 10319
  • In Soviet Russia, text read you!
    • View Profile
    • Github
Re: Code name: "Vanquish Chat"
« Reply #32 on: November 21, 2005, 12:53:32 am »
Contact me, Mr. VanquishBot Easter Egg, when the beta is ready for me. =)
I'd personally do as Joe suggests

You might be right about that, Joe.


Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #33 on: November 22, 2005, 07:50:15 pm »
Update:

Currently the bot is officially going under release prerequisities. Also I am fixing any bugs so that it's capable of being stand-alone (with BNCSUtil.dll). It just helps fix the stupid user errors that may occur later on.

The first send out will be beta and that will be for 1-2 weeks depending on how good our beta testers are. Then we may add some more features and officially release the first public version.

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline Furious

  • Hero Member
  • *****
  • Posts: 1833
  • I hate rabbits
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #34 on: November 22, 2005, 09:49:40 pm »
Sounds good.
Quote
[23:04:34] <deadly7[x86]> Newby[x86]
[23:04:35] <deadly7[x86]> YOU ARE AN EMO
[23:04:39] <Newby[x86]> shush it woman

Quote
[17:53:31] InsaneJoey[e2] was banned by x86 (GO EAT A BAG OF FUCK ASSHOLE (randomban)).

Quote from: Ergot
Put it this way Joe... you're on my Buddy List... if there's no one else on an you're the only one, I'd rather talk to myself.

Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #35 on: January 01, 2006, 01:27:28 am »
um...beta testing has started ><

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline Furious

  • Hero Member
  • *****
  • Posts: 1833
  • I hate rabbits
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #36 on: January 01, 2006, 06:19:42 pm »
It's a good bot, I haven't found a bug yet, totally customizable, mutliple profiles, all around good bot.

A+!
Quote
[23:04:34] <deadly7[x86]> Newby[x86]
[23:04:35] <deadly7[x86]> YOU ARE AN EMO
[23:04:39] <Newby[x86]> shush it woman

Quote
[17:53:31] InsaneJoey[e2] was banned by x86 (GO EAT A BAG OF FUCK ASSHOLE (randomban)).

Quote from: Ergot
Put it this way Joe... you're on my Buddy List... if there's no one else on an you're the only one, I'd rather talk to myself.

Offline Networks

  • Full Member
  • ***
  • Posts: 415
  • I haven't visited my profile!
    • View Profile
Re: Code name: "Vanquish Chat"
« Reply #37 on: January 02, 2006, 07:50:22 pm »
It's a good bot, I haven't found a bug yet, totally customizable, mutliple profiles, all around good bot.

A+!

Not to mention it's incomplete, we're still adding LOTS of things. WiReS and I are rather ambitious in the current stages it's at.

http://www.zeroforce.net

Quote
[16:50:11] Networks:0:32: What will soup bot be like?
[16:50:15] Warrior[x86]:16:-1: soup-like.
[16:50:21] warzofbeta@Lordaeron:0:62: Like god.
[16:50:26] Warrior[x86]:16:-1: Fake?

Offline Chavo

  • x86
  • Hero Member
  • *****
  • Posts: 2219
  • no u
    • View Profile
    • Chavoland
Re: Code name: "Vanquish Chat"
« Reply #38 on: January 03, 2006, 10:55:54 am »
Nice! I'm interested in testing as well if you are looking for more.