Everything posted by RSBDavid
-
Update: 92 fletch
Instead of starting a new thread, Ill just update this one: 92 fletch as of now. Should have 93 today and 94/95 tomarrow.
-
99 skill w/ 40ish mill?
get 99 range with chins and armadyl the money back and get mage and others.
-
Good first 99?
fletching :thumbsup:
-
Money-making and tips for PURES
Change things like "ATK" to "attack/Attack". 4/10 for effort.
-
3rd April 2009 - Forums for High level F2P'ers!
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.
-
Update: 92 fletch
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.
-
Update: 92 fletch
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
-
Rest: Predictions (New pics added)
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.
-
Chikin HQ and AppulTipz
mudkipz.it
-
1 April 2009 - Glorious Memories
lrn2Apr1l Z0mg Cabbage attacks back! Anyone figure out rune thingy?
-
Anyone know how to barrow with an bgs?
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.
-
Going for 99 wc!
I did teaks from 73 to 80 and made the logs into planks. I would do those until 95 then yews or maples.
-
99 WC or 99 Fishing
I would go with woodcutting since you are already level 80. Cut teaks with sc axe for over 100k xp an hour.
-
Money-making for a Saradomin Godsword.
Green dragons are roughly 250-300k gp an hour at his levels. That is constant. Godwars is luck.
-
25th March 2009 - Pre-purchase advice and more
Woot! I can finally smite rune scimitars off of monk robe noobs who protect!
-
Acer Laptop Help
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?
-
your first attempt at a 99.?.?
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.
-
Post pictures of your pets here
Update of pups.
-
High ranking players not as "nerdy" as we think?
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.
-
Do you considered yourself sheltered?
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).
-
What to do with $6000
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.
-
edit: New question: fletching
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?
-
Membership - How should it expire?
Can you say "RUnescape rollover minutes!"
- Useful Source Codes
-
Useful Source Codes
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]