Skip to content
View in the app

A better way to browse. Learn more.

Tip.It Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

RSBDavid

Members
  • Joined

  • Last visited

Everything posted by RSBDavid

  1. Instead of starting a new thread, Ill just update this one: 92 fletch as of now. Should have 93 today and 94/95 tomarrow.
  2. get 99 range with chins and armadyl the money back and get mage and others.
  3. fletching :thumbsup:
  4. Change things like "ATK" to "attack/Attack". 4/10 for effort.
  5. So I guess Jagex uses the money from the advertisements to buy beer and laugh about the ignorence of some of the members? I think some f2p people are more mature then alot of members.
  6. I lost like 20 gp a bow. I lose 4 gp a bow with maples. I will do maples till 95 then mage longs. I know. I as level 1 slayer till about 90 combat. I am currently working on slayer till 65 then I will continue fletching.
  7. This is not a blog but an update of fletching. Mods, don''t move please. [hide=old stuff]So today I got a lot done. Total Experience Gained Since I started this Thread: Levels: (in order I got them) 112 combat now :P After this I use the Grahk to get: I also went from 81 to 83 fletching but didn't screenie. I am going for 99 fletching by fletching maple logs into long(u) getting 7xp per gp. Rate hate, masterdebate.[/hide] Update: 11 levels in 6 days so far
  8. If we get fatigue we better get using the bathroom skills. I mean, you can drink 5 beers irl with out needing to take a wiz.. I wonder when this will come out.
  9. lrn2Apr1l Z0mg Cabbage attacks back! Anyone figure out rune thingy?
  10. Use sgs with black salamander/slayer dart. I get 7-9 chests a trip with 2 ppots. Godsword isnt efficient until all 90+ melee stats with piety.
  11. I did teaks from 73 to 80 and made the logs into planks. I would do those until 95 then yews or maples.
  12. I would go with woodcutting since you are already level 80. Cut teaks with sc axe for over 100k xp an hour.
  13. Green dragons are roughly 250-300k gp an hour at his levels. That is constant. Godwars is luck.
  14. Woot! I can finally smite rune scimitars off of monk robe noobs who protect!
  15. My uncle gave me an Acer Aspire 3680 ZR1 laptop. He says his friends cat was sitting on it and he could smell burning plastic. THe laptop won't turn on. It will light up with power led for a second when you push the power button. I replaced the ram and used a different ac cord. Either the power supply or the mb is burned up. Can anyone give me advice with this?
  16. I want to achieve 99 woodcutting and fletching. I am going to cut teaks from 80 to 98 wc then yews to 99. I will fletch the yews and burn the willows. I will continue buying the yews and fletch into longs till 92 then mage longs from there. I am on a skilling break to train slayer to 65 right now and gain another 3m to help with my expenses. I have about 7 days of members left but I have a visa gift card to get another month.
  17. Update of pups.
  18. I think the nerdy ones are the people who flame higher levels. Higher levels are the same as everyone else, just more efficient. In the time it takes for someone to flame a higher level, they could be using that time to make money or train their skills to a higher level.
  19. I feel sheltered. I am not sure if I am though. Its my dad that is over sheltering. My mom lets me play Rs, hang out with my preg. girlfriend, and go to parties. My dad watches just about everything I do. I can't have 10 minutes of privacy when my dad is home. My mom lies for me so I can go to "School" activites (aka parties).
  20. viewtopic.php?p=6127646#p6127646 THat ^ Actually, just build one for about 1500 dollars then buy a laptop or something for more portable use for school/etc. If you buy office, A/V suite, and any other software, you could be looking at another 200 dollars anyways.
  21. How many yew logs can I fletch with sc knives? I want to get 90 fletching from yew longs then 99 from magic longs. I have 1400 sc points as well. WHat is a good way to train fletching that is faster than bows?
  22. Can you say "RUnescape rollover minutes!"
  23. I remember before the rollback that there was a thread where users posted various sourcecodes. I am going to remake a thread simular to it. If you have a sourcecode you would like to share post it here. I read throught the first 10 pages and didn't find so I am sure it was lost in the rollback. Use this format: [hide=My Contribution]Here is mine: Title: Ballers Combat stat retrieving function Language: vb.net Difficulty to Understand [1/10]: 5 What it does: It retrieves the combat stats of a player from the highscores. Function getCombatStats(ByVal username As String) Dim x As New System.Net.WebClient Dim rawData As String Try rawData = x.DownloadString("http://hiscore.runescape.com/index_lite.ws?player=" _ & username) ' download the raw stat data for the user Catch ex As Exception End Try Dim statParse() As String statParse = rawData.Split(",") ' splits the data based on commas since that is what you see if you were to view the raw data Me.txtAttack.Text = statParse(3) ' get attack level Me.txtDef.Text = statParse(5) ' get defence level Me.txtStr.Text = statParse(7) ' get strength level Me.txtHp.Text = statParse(9) ' get hp level Me.txtRange.Text = statParse(11) ' get range level Me.txtPrayer.Text = statParse(13) ' get prayer level Me.txtMagic.Text = statParse(15) ' get magic level Me.txtSumm.Text = statParse(49) ' get summoning level 'if any of the values return -1, replaces and sets it to level 1 If Me.txtSumm.Text = "-1" Then Me.txtSumm.Text = "1" If Me.txtHp.Text = "-1" Then Me.txtHp.Text = "1" If Me.txtAttack.Text = "-1" Then Me.txtAttack.Text = "1" If Me.txtStr.Text = "-1" Then Me.txtStr.Text = "1" If Me.txtDef.Text = "-1" Then Me.txtDef.Text = "1" If Me.txtPrayer.Text = "-1" Then Me.txtPrayer.Text = "1" If Me.txtMagic.Text = "-1" Then Me.txtMagic.Text = "1" If Me.txtRange.Text = "-1" Then Me.txtRange.Text = "1" Return Nothing End Function usage: You need to have textboxes with corresponding names to those above. getCombatStats("username") You can use the same method to get non-combat stats as well as levels and ranks. Here is a picture of it in use. (Ignore the stuff outside of the green box) It is useful if you want to look up the stats of someone you are going to fight in a pvp world or anywhere else.[/hide]

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.