Results 1 to 14 of 14

Thread: [LameBot] Applet

  1. #1
    Join Date
    Oct 2006
    Location
    Belguim!
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [LameBot] Applet

    OK now, I searched for about 100 sites and still didn't found it ..
    I have completely no idea on how to copy the Java Applet and implent mouse events .. Could someone help me with this ?

    GrTz.

  2. #2
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    This is from Cruels.net

    Code:
    Private Sub Command1_Click()
    WebBrowser1.Navigate "http://sl1.runescape.com/l1,p0,j1"
    End Sub
    
    Private Sub WebBrowser1_BeforeNavigate2(ByVal pDisp As Object, URL As Variant, Flags As Variant, TargetFrameName As Variant, PostData As Variant, Headers As Variant, Cancel As Boolean)
    If (URL = "http://www.runescape.com/") Then Cancel = True
    End Sub
    
    Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
    WebBrowser1.Document.body.innerHTML = WebBrowser1.Document.All.Item("app").outerHTML
    WebBrowser1.Width = Val(WebBrowser1.Document.All.Item("app").getAttribute("width")) + 4
    WebBrowser1.Height = Val(WebBrowser1.Document.All.Item("app").getAttribute("height")) + 4
    End Sub
    I guess it works, but I tried converting it to C# and it didn't work for me, but u can try converting it to delphi or w/e ur programming to give it a go. I've been searching for this same thing also.

  3. #3
    Join Date
    Oct 2006
    Location
    Belguim!
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Buckleyindahouse View Post
    This is from Cruels.net

    Code:
    Private Sub Command1_Click()
    WebBrowser1.Navigate "http://sl1.runescape.com/l1,p0,j1"
    End Sub
    
    Private Sub WebBrowser1_BeforeNavigate2(ByVal pDisp As Object, URL As Variant, Flags As Variant, TargetFrameName As Variant, PostData As Variant, Headers As Variant, Cancel As Boolean)
    If (URL = "http://www.runescape.com/") Then Cancel = True
    End Sub
    
    Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
    WebBrowser1.Document.body.innerHTML = WebBrowser1.Document.All.Item("app").outerHTML
    WebBrowser1.Width = Val(WebBrowser1.Document.All.Item("app").getAttribute("width")) + 4
    WebBrowser1.Height = Val(WebBrowser1.Document.All.Item("app").getAttribute("height")) + 4
    End Sub
    I guess it works, but I tried converting it to C# and it didn't work for me, but u can try converting it to delphi or w/e ur programming to give it a go. I've been searching for this same thing also.
    THe applet is OK, buw how to implent mouse events ?

  4. #4
    Join Date
    Dec 2007
    Location
    UK
    Posts
    479
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hmmmmmmmm, tht doesnt work. I am really interested in finding this too
    I don't play runescape. I auto it

  5. #5
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    Quote Originally Posted by Nindustries View Post
    THe applet is OK, buw how to implent mouse events ?
    Just a question... Some call me sarcastic, but... How are you planning to make a bot if you don't know how to load the applet nor how to move the mouse?



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  6. #6
    Join Date
    Oct 2006
    Location
    Texas
    Posts
    1,450
    Mentioned
    1 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by Wizzup? View Post
    Just a question... Some call me sarcastic, but... How are you planning to make a bot if you don't know how to load the applet nor how to move the mouse?


    We all start somewhere.

  7. #7
    Join Date
    Dec 2007
    Location
    UK
    Posts
    479
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wizzup?: Makes a valid point... I think you need extensive knowledge of this stuff before you can even think of making one
    I don't play runescape. I auto it

  8. #8
    Join Date
    Oct 2008
    Posts
    500
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Most definately but there are at least a few talented scripters that are dedicated to the project if my information is correct. With the combined knowledge of them, they shouldnt have much trouble working out the applet.

    Especially with occasional help from the people on these boards.

  9. #9
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Look at the nexus source...

  10. #10
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Timer View Post
    Look at the nexus source...
    First, that's java. Second it's closed source...

  11. #11
    Join Date
    Feb 2007
    Location
    Toronto, Ontario, Canada
    Posts
    586
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Similar discussion here:
    http://www.srl-forums.com/forum/smar...-t41499p2.html

    Although this is really somewhat advanced. Out of curiosity, why are you making this bot (other than for fun?) what sort of special functionality will it have?

  12. #12
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Mylesmadness View Post
    First, that's java. Second it's closed source...
    , its called de-compile the Jars and Classes, then Decrypt the code...

  13. #13
    Join Date
    Mar 2007
    Posts
    3,042
    Mentioned
    1 Post(s)
    Quoted
    14 Post(s)

    Default

    Quote Originally Posted by Timer View Post
    , its called de-compile the Jars and Classes, then Decrypt the code...
    After doing which, you still won't have any more knowledge of how to load the client through Delphi or Visual Basic.
    :-)

  14. #14
    Join Date
    Oct 2006
    Location
    Belguim!
    Posts
    27
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well at first I was thinking to make a bot like SCAR (without SMART), but then I wanted to join the official bots with the One mouse - One bot things .

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Using An Unsigned Java Applet
    By decide in forum Outdated Tutorials
    Replies: 17
    Last Post: 01-10-2009, 09:43 PM
  2. ^[LameBot] I'm building an RS bot !
    By Nindustries in forum NOTA
    Replies: 43
    Last Post: 11-26-2008, 11:05 PM
  3. QPong Applet
    By mixster in forum Java Help and Tutorials
    Replies: 6
    Last Post: 11-02-2008, 07:58 PM
  4. usigned applet
    By zizi in forum OSR Help
    Replies: 1
    Last Post: 09-05-2008, 03:36 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •