A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

Vb.net Multi Wrapper?

727 views · started by Bman ·
#1
Vb.net Multi Wrapper?
I was wondering if any of you have the vb.net Multi session httpwrapper, Like alex's LogicalHttp :O
#2
Bman wrote:
I was wondering if any of you have the vb.net Multi session httpwrapper, Like alex's LogicalHttp :O


Well you could just tell it to access the one on Form2 or whatever...

Like lets say that you made a bot... Form2 has the wrapper on it...


In form1 you have a basic login...

Load code:
Form2.Hide
Form1.Show


Button Code:
Form2.Wrapper.GetWrapper("Http://www.gaiaonline.com")

Form2.Wrapper.PostWrapper( Blah Blah Blah [Don't wan't to recode it here xD] )

If (InStr(Strhtml, "?Login_Success=1") <> 0) Then
Form1.Hide
Form2.Show
MsgBox("Logged in successfully...")
End If


In form2 you have a "Multi Bot"...

I remember testing this... Don't remember if it worked... xD

Btw, coded this all right here so I wouldn't be surprised if there were errors in the login code...
#3
HTTPWrappers wrapper = new HTTPWrappers()

that or upgrade the LogicalHTTP into vb.net
#4
@ Eternal - Thats just calling it from somewhere else, i ment multiple sessions.

@Chad-Ill try that :) Thanks.
#5
Chad wrote:
HTTPWrappers wrapper = new HTTPWrappers()

that or upgrade the LogicalHTTP into vb.net


It didn't automatically upgrade it... Looked like it needs a lot of conversion even after the automatic upgrade...

Bman wrote:
@ Eternal - Thats just calling it from somewhere else, i ment multiple sessions.

@Chad-Ill try that :) Thanks.


Well its better than nothing...