Adblock breaks this site

Visual Basic 2005 runescape cleint tut??

Discussion in 'Programming General' started by Logank9464, Oct 5, 2007.

  1. Logank9464

    Logank9464 Guest

    Referrals:
    0
    Visual Basic 2005 runescape cleint tut??

    I would really appreciate it if some 1 posted a VB 2005 tut on how to make a rs client =D or just some info such as (I think it's called embing, links to websites I think) b-'cause I want 2 make a internet browsing thing like with ez links on the sides.... or something like that :D
     
  2. skate4lifee

    skate4lifee Active Member

    Joined:
    Jul 22, 2007
    Posts:
    108
    Referrals:
    1
    Sythe Gold:
    0
    Visual Basic 2005 runescape cleint tut??

    add a web browser tool, double click on form (form_load) and add this code

    Code:
    webbrowser1.navigate("http://www.runescape.com")
     
  3. Swan

    Swan When They Cry...
    Retired Global Moderator

    Joined:
    Jan 23, 2007
    Posts:
    4,957
    Referrals:
    0
    Sythe Gold:
    0
    Sythe's 10th Anniversary Member of the Month Winner
    Visual Basic 2005 runescape cleint tut??

    I think he wants more in depth than that. I'll try to help when I'm less tired. late nights + theme parks + school == very bad equation ;)
     
  4. skate4lifee

    skate4lifee Active Member

    Joined:
    Jul 22, 2007
    Posts:
    108
    Referrals:
    1
    Sythe Gold:
    0
    Visual Basic 2005 runescape cleint tut??

    yeah i know, i was just getting him started but he should look around the forum before he makes a post like this. i'm pretty sure this question has been answered before, ill look up a tutorial on this or something and edit my post to put the link ;)
     
  5. rattytatt50

    rattytatt50 Member

    Joined:
    Oct 26, 2007
    Posts:
    67
    Referrals:
    0
    Sythe Gold:
    0
    Visual Basic 2005 runescape cleint tut??

    if u wna make a web one?
    create a form and put in a webbrowser and a button
    GO TO code view and on first tooltab thing go to webbrowser1 and to the right of that is another one, click that and go down to 'Navigating' and it should look like this, if not just copy and paste it into your code.

    Code:
     Private Sub WebBrowser1_Navigating(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserNavigatingEventArgs) Handles WebBrowser1.Navigating
    
    End Sub
    
    then in the middle of that put in this code, it stops it redirecting.

    Code:
    If e.Url.AbsoluteUri = "http://www.runescape.com/" Then e.Cancel = True
    
    if it has and error put End If at the end, doubt though.

    then what u do is
    make a new form in the same project and call it something like, world.
    create a textbox and a button in that
    click on the button and put in this code
    Code:
    Public Class world
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Dim number As Integer = TextBox1.Text
            Dim url As String = ".runescape.com/l0,p0,j0"
    
            If number = 1 Then
                Form1.WebBrowser1.Navigate("ul7" & url)
            ElseIf number = 2 Then
                Form1.WebBrowser1.Navigate("ul8" & url)
            ElseIf number = 3 Then
                Form1.WebBrowser1.Navigate("po3" & url)
            ElseIf number = 4 Then
                Form1.WebBrowser1.Navigate("po4" & url)
            ElseIf number >= 5 Then
                MessageBox.Show("This is only a demo, please enter a number between 1 and 5", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning)
            End If
        End Sub
    End Class
    
    And also link the two forms together, go back to your form1 and double click button1 and enter

    Code:
    world.show()
    
    This may be the long way round but it helps. You can add more worlds by carrying the code on, youll know what to do.
    All the worlds:

    Code:
    http://ul7.runescape.com/l0,p0,j0 (world 1)
    http://ul8.runescape.com/l0,p0,j0 (world 2)
    http://po3.runescape.com/l0,p0,j0 (world 3)
    http://po4.runescape.com/l0,p0,j0 (world 4)
    http://po5.runescape.com/l0,p0,j0 (world 5)
    http://sl10.runescape.com/l0,p0,j10 (world 6)
    http://above2.runescape.com/l0,p0,j0 (world 7)
    http://above3.runescape.com/l0,p0,j0 (world 8)
    http://above4.runescape.com/l0,p0,j0 (world 9)
    http://jolt7.runescape.com/l0,p0,j0 (world 10)
    http://jolt8.runescape.com/l0,p0,j0 (world 11)
    http://jolt9.runescape.com/l0,p0,j0 (world 12)
    http://nl3.runescape.com/l0,p0,j0 (world 13)
    http://nl4.runescape.com/l0,p0,j0 (world 14)
    http://mn2.runescape.com/l0,p0,j0 (world 15)
    http://mn3.runescape.com/l0,p0,j0 (world 16)
    http://nav1.runescape.com/l0,p0,j0 (world 17)
    http://nav2.runescape.com/l0,p0,j0 (world 18)
    http://nl7.runescape.com/l0,p0,j0 (world 19)
    http://nl8.runescape.com/l0,p0,j0 (world 20)
    http://nl11.runescape.com/l0,p0,j0 (world 21)
    http://nl1.runescape.com/l0,p0,j0 (world 22)
    http://mn4.runescape.com/l0,p0,j0 (world 23)
    http://mn5.runescape.com/l0,p0,j0 (world 24)
    http://nl12.runescape.com/l0,p0,j0 (world 25)
    http://ul5.runescape.com/l0,p0,j0 (world 26)
    http://nl5.runescape.com/l0,p0,j0 (world 27)
    http://nl6.runescape.com/l0,p0,j0 (world 28)
    http://ul6.runescape.com/l0,p0,j0 (world 29)
    http://po7.runescape.com/l0,p0,j0 (world 30)
    http://po8.runescape.com/l0,p0,j0 (world 31)
    http://ul1.runescape.com/l0,p0,j0 (world 32)
    http://at1.runescape.com/l0,p0,j0 (world 33)
    http://at2.runescape.com/l0,p0,j0 (world 34)
    http://at3.runescape.com/l0,p0,j0 (world 35)
    http://at4.runescape.com/l0,p0,j0 (world 36)
    http://nav3.runescape.com/l0,p0,j0 (world 37)
    http://ny9.runescape.com/l0,p0,j0 (world 38)
    http://ny10.runescape.com/l0,p0,j0 (world 39)
    http://ny11.runescape.com/l0,p0,j0 (world 40)
    http://ny12.runescape.com/l0,p0,j0 (world 41)
    http://po2.runescape.com/l0,p0,j0 (world 42)
    http://sl11.runescape.com/l0,p0,j0 (world 43)
    http://at6.runescape.com/l0,p0,j0 (world 44)
    http://ny13.runescape.com/l0,p0,j0 (world 45)
    http://ny14.runescape.com/l0,p0,j0 (world 46)
    http://above5.runescape.com/l0,p0,j0 (world 47)
    http://above6.runescape.com/l0,p0,j0 (world 48)
    http://ams2.runescape.com/l0,p0,j0 (world 50)
    http://ams3.runescape.com/l0,p0,j0 (world 51)
    http://ams4.runescape.com/l0,p0,j0 (world 52)
    http://ams7.runescape.com/l0,p0,j0 (world 53)
    http://ams8.runescape.com/l0,p0,j0 (world 54)
    http://ch1.runescape.com/l0,p0,j0 (world 55)
    http://nl10.runescape.com/l0,p0,j0 (world 56)
    http://ch3.runescape.com/l0,p0,j0 (world 57)
    http://ch4.runescape.com/l0,p0,j0 (world 58)
    http://ch5.runescape.com/l0,p0,j0 (world 59)
    http://ch6.runescape.com/l0,p0,j0 (world 60)
    http://se1.runescape.com/l0,p0,j0 (world 61)
    http://se2.runescape.com/l0,p0,j0 (world 62)
    http://se3.runescape.com/l0,p0,j0 (world 63)
    http://se4.runescape.com/l0,p0,j0 (world 64)
    http://se5.runescape.com/l0,p0,j0 (world 65)
    http://se6.runescape.com/l0,p0,j0 (world 66)
    http://jolt10.runescape.com/l0,p0,j0 (world 67)
    http://jolt11.runescape.com/l0,p0,j0 (world 68)
    http://jolt12.runescape.com/l0,p0,j0 (world 69)
    http://sl10.runescape.com/l0,p0,j0 (world 70)
    http://mn7.runescape.com/l0,p0,j0 (world 71)
    http://sl1.runescape.com/l0,p0,j0 (world 72)
    http://sl2.runescape.com/l0,p0,j0 (world 73)
    http://sl3.runescape.com/l0,p0,j0 (world 74)
    http://sl4.runescape.com/l0,p0,j0 (world 75)
    http://sl5.runescape.com/l0,p0,j0 (world 76)
    http://sl6.runescape.com/l0,p0,j0 (world 77)
    http://sl7.runescape.com/l0,p0,j0 (world 78)
    http://sl8.runescape.com/l0,p0,j0 (world 79)
    http://jolt1.runescape.com/l0,p0,j0 (world 80)
    http://jolt2.runescape.com/l0,p0,j0 (world 81)
    http://jolt3.runescape.com/l0,p0,j0 (world 82)
    http://jolt4.runescape.com/l0,p0,j0 (world 83)
    http://jolt5.runescape.com/l0,p0,j0 (world 84)
    http://ny1.runescape.com/l0,p0,j0 (world 85)
    http://ny2.runescape.com/l0,p0,j0 (world 86)
    http://ny4.runescape.com/l0,p0,j0 (world 87)
    http://ny5.runescape.com/l0,p0,j0 (world 88)
    http://ny7.runescape.com/l0,p0,j0 (world 90)
    http://ny8.runescape.com/l0,p0,j0 (world 91)
    http://nl9.runescape.com/l0,p0,j0 (world 92)
    http://mi1.runescape.com/l0,p0,j0 (world 93)
    http://mi2.runescape.com/l0,p0,j0 (world 94)
    http://mi3.runescape.com/l0,p0,j0 (world 95)
    http://mi4.runescape.com/l0,p0,j0 (world 96)
    http://mi5.runescape.com/l0,p0,j0 (world 97)
    http://mi6.runescape.com/l0,p0,j0 (world 98)
    http://mi7.runescape.com/l0,p0,j0 (world 99)
    http://ul3.runescape.com/l0,p0,j0 (world 100)
    http://at7.runescape.com/l0,p0,j0 (world 101)
    http://at8.runescape.com/l0,p0,j0 (world 102)
    http://at9.runescape.com/l0,p0,j0 (world 103)
    http://at10.runescape.com/l0,p0,j0 (world 104)
    http://mn8.runescape.com/l0,p0,j0 (world 105)
    http://mn9.runescape.com/l0,p0,j0 (world 106)
    http://au1.runescape.com/l0,p0,j0 (world 107)
    http://au2.runescape.com/l0,p0,j0 (world 108)
    http://au3.runescape.com/l0,p0,j0 (world 109)
    http://au4.runescape.com/l0,p0,j0 (world 110)
    http://au5.runescape.com/l0,p0,j0 (world 111)
    http://au6.runescape.com/l0,p0,j0 (world 112)
    http://nav4.runescape.com/l0,p0,j0 (world 113)
    http://nav5.runescape.com/l0,p0,j0 (world 114)
    http://nav6.runescape.com/l0,p0,j0 (world 115)
    http://nav7.runescape.com/l0,p0,j0 (world 116)
    http://swe1.runescape.com/l0,p0,j0 (world 117)
    http://swe2.runescape.com/l0,p0,j0 (world 118)
    http://swe3.runescape.com/l0,p0,j0 (world 119)
    http://swe4.runescape.com/l0,p0,j0 (world 120)
    http://swe5.runescape.com/l0,p0,j0 (world 121)
    http://swe8.runescape.com/l0,p0,j0 (world 124)
    http://va1.runescape.com/l0,p0,j0 (world 125)
    http://va2.runescape.com/l0,p0,j0 (world 126)
    http://va3.runescape.com/l0,p0,j0 (world 127)
    http://va4.runescape.com/l0,p0,j0 (world 128)
    http://va5.runescape.com/l0,p0,j0 (world 129)
    http://va6.runescape.com/l0,p0,j0 (world 130)
    http://va7.runescape.com/l0,p0,j0 (world 131)
    http://va8.runescape.com/l0,p0,j0 (world 132)
    http://hel1.runescape.com/l0,p0,j0 (world 133)
    http://hel2.runescape.com/l0,p0,j0 (world 134)
    http://hel3.runescape.com/l0,p0,j0 (world 135)
    http://hel4.runescape.com/l0,p0,j0 (world 136)
    http://hel5.runescape.com/l0,p0,j0 (world 137)
    http://hel6.runescape.com/l0,p0,j0 (world 138)
    http://me1.runescape.com/l0,p0,j0 (world 141)
    http://me2.runescape.com/l0,p0,j0 (world 142)
    http://me3.runescape.com/l0,p0,j0 (world 143)
    http://me4.runescape.com/l0,p0,j0 (world 144)
    
    hope this helped on your first
     
  6. rattytatt50

    rattytatt50 Member

    Joined:
    Oct 26, 2007
    Posts:
    67
    Referrals:
    0
    Sythe Gold:
    0
    Visual Basic 2005 runescape cleint tut??

    Also! if you want buttons (which would take considerably longer)

    add buttons on your main page 1-144 and on each button add the code

    Code:
    WebBrowser1.Navigate("[PREFIX].runescape.com/l0,p0,j0")
    
    change [PREFIX] to the world prefix.

    it might be easier but i prefer text.
     
  7. skate4lifee

    skate4lifee Active Member

    Joined:
    Jul 22, 2007
    Posts:
    108
    Referrals:
    1
    Sythe Gold:
    0
    Visual Basic 2005 runescape cleint tut??

    instead of buttons you can use a listview and for the double click property add this code.
     
  8. The Dark

    The Dark Guru
    Banned

    Joined:
    Jan 21, 2007
    Posts:
    1,601
    Referrals:
    0
    Sythe Gold:
    0
    Visual Basic 2005 runescape cleint tut??

    Is a very bad equation. Should never have 2 '=' signs on one line ;)
     
  9. kridan500

    kridan500 Active Member
    Banned

    Joined:
    Feb 11, 2007
    Posts:
    217
    Referrals:
    1
    Sythe Gold:
    0
    Visual Basic 2005 runescape cleint tut??

    when i try the world schifter it only takes me to the runescape main page:(
     
< Help if file not there | Visual Basic 2008 Highscore grabber... >


 
 
Adblock breaks this site