• Welcome to Valhalla Legends Archive.
 

Starting BCP support in Visual Basic.

Started by UserLoser, July 31, 2003, 10:27 PM

Previous topic - Next topic

UserLoser

I'm interested in adding support obviously to my bot.  I'm just not sure how to get all the information that I need.  I do have BCEL.dll, and Spht did help me a bit, but I didn't get very far at all.  So far I have very little done on the PluginInformationStruct, if any if it's correct.

I also have these two declaration functions, not sure if they're correct either.

Public Declare Function FreePlugin Lib "BCEL.dll" (ByVal bcpPlugin As String) As Boolean
Public Declare Function LoadPlugin Lib "BCEL.dll" (bcpPluginInformation As PluginInformation)


Any help would be great.  I looked at the EmptyPlugin, and the structs in there for each revision, but my C++ knowledge is very bad and there's not much I can fully understand in there to help me get it all correct.

Zorm

http://zorm.phactorx.com/BCEL.bas
Source code given to me by Skywing and Yoni when I was going to add BCP support in VB.
"Now, gentlemen, let us do something today which the world make talk of hereafter."
- Admiral Lord Collingwood

dxoigmn


Zorm

Binary Chat Emulation Layer, it loads plugins and handles them something which would be a lot of work to do natively in VB.
"Now, gentlemen, let us do something today which the world make talk of hereafter."
- Admiral Lord Collingwood

UserLoser