November 29, 200718 yr Author Wow. Good job on your progress. P.S. I noticed that on the dates of some of your achievements, you put the year as 2004. Oh... wonder why the heck I did that :?
November 29, 200718 yr Author Bought another 200k pure essence from the exchange for 80 ea and another 1k super energy about 1500 ea. I'm prepared to hold out for a while; I'm not selling another nat until the price goes back up. It lowered again today by 3 gp even though people were only selling for the middle price yesterday, IMO there was NO reason for it to be lowered again. I'm hoping the prices will go back up as soon as yew longs drop in price, and they will, because currently yew logs + bow string = a profit bigger than ever for fletchers. That won't last long.
November 30, 200718 yr Author Lol, an entire agility level from RCing. I'm about 4k away from 71 mining, too.
November 30, 200718 yr bump When everything's been said and done, more has been said than done.All skills 80+
December 1, 200718 yr Author Bump. I'm going to be away for most of the weekend, so it's unlikely that I'll be able to play that much, if at all. Edit: Woot page 10 \
December 2, 200718 yr BUMP FOR YOU! Awesome goals you have there, show us a new bank pic would love to see you millions :XD: Good luck. ~muj~
December 4, 200718 yr Author Competely forgot that I was about to get this, missed the level pic. 71 Mining (100% abyss, I'm very sure I haven't touched mining since I got the last lvl...) and *drumroll*... 1850 total! :)
December 4, 200718 yr you know you rc too much when you ge a mining level through the abyss (840th To 99 Farm. Achieved on February 13th, 2008.) (2942th To 99 Crafting. Achieved on September 9th, 2008.)(23671th To 99 Magic. Achieved on January 17th, 2009.) (46913th to 99 Hit Points. Achieved on March 20th, 2009.)(30680th to 99 Range. Achieved on March 21st, 2009.) (66351th to 99 Attack. Achieved on July 8th, 2009.)(2856th to 99 Herblore. Achieved on August 21st, 2009.) (45985th to 99 Woodcutting. Achieved on November 15th, 2009.)(6119th to 99 Smithing. Achieved on December 24th, 2009.) (98100th to 99 Cooking. Achieved on January 1st, 2010.)(63214th to 99 Defence. Achieved on January 30th, 2010.) (122697th to 99 Strength. Achieved on February 11th, 2010.)(15249th to 99 Prayer. Achieved on March 21st, 2010.) (34209th to 99 Fishing. Achieved on July 7th, 2010.)(9259th to 99 Summoning. Achieved on July 29th, 2010.) (51712th to 99 Firemaking. Achieved on September 6th, 2010.)(109036th to 99 Fletching. Achieved on September 28th, 2010.) (15821th to 99 Slayer. Achieved on February 3rd, 2011.)(11652th to 99 Construction. Achieved on June 18th, 2011.)
December 6, 200718 yr wow good luck man hope you get it sooner than 60 weeks though. That is a long time to stay on one goal for. I've been working on attack for about 5 months pretty consistently and already want to give up. you can do it though :D Attack CapeQuest Cape
December 7, 200718 yr Author wow good luck man hope you get it sooner than 60 weeks though. That is a long time to stay on one goal for. I've been working on attack for about 5 months pretty consistently and already want to give up. you can do it though :D That's based on 20k p ess crafted a week. As you can see from the blog, I've crafted well over 50k on some weeks. I haven't been online at all today (well mabye for a total of 10 minutes). Decided to get a bunch of homework for my electives done today. In one of those classes I am using Adobe Flash... today I coded my very own highscores lookup feature :) Yeah quite complicated for my skill level :wall:
December 8, 200718 yr Author Whoa, I haven't updated this blog in over 3 days! Well, I thought I might show you guys what I've been up to. [hide=Warning][/hide] That's my own runescape worldswitcher that I've been writing. Yes I know "you can't provide direct links to RS worlds"... but that only applies to third party software. This is written in HTML and is entirely browser based. Show me a place in the RuneScape rules that this is illegal and I'll remove it, but I don't believe it is. If it was then that would mean that that desktop shortcuts are illegal, too, because they use HTML files to open up direct links to the RuneScape worlds. The tools on the bottom I wrote myself in Flash. The thing on the left is a calculator (obviously), and the thing on the right is a highscores lookup. Pretty crude, I know. The background is a just a sig from leetsigs that I generated, printscreened, and imported into Flash, and covered up with the text boxes and such. All the code for it is in the "get" button; here it is if anyone has Flash and wants to use it. [hide=Hiscores Lookup Code]onClipEvent(enterFrame){ this.onRelease = function(){ var cont:LoadVars = new LoadVars(); System.security.allowDomain("hiscore.runescape.com") cont.load("http://hiscore.runescape.com/index_lite.ws?player=" + _root.username.text); cont.onData = function(s){ var a:Array = new Array(); a = s.split(newline); for(var i=0;i a[i]=a[i].split(","); } if(a[0][0] == "-1" || a[0][0] == undefined){ _root.rankbox.text = "-"; }else{ _root.rankbox.text = a[0][0]; } if(a[0][1] == "-1" || a[0][1] == undefined){ _root.overbox.text = "-"; }else{ _root.overbox.text = a[0][1]; } if(a[0][2] == "-1"){ _root.xpbox.text = "Not Ranked"; }else if(a[0][2] == undefined){ _root.xpbox.text = "Not on HS"; }else{ _root.xpbox.text = a[0][2]; } if(a[1][1] == "-1" || a[1][1] == undefined){ _root.atkbox.text = "-"; }else{ _root.atkbox.text = a[1][1]; } if(a[2][1] == "-1" || a[2][1] == undefined){ _root.defbox.text = "-"; }else{ _root.defbox.text = a[2][1]; } if(a[3][1] == "-1" || a[3][1] == undefined){ _root.strbox.text = "-"; }else{ _root.strbox.text = a[3][1]; } if(a[4][1] == "-1" || a[4][1] == undefined){ _root.hpbox.text = "-"; }else{ _root.hpbox.text = a[4][1]; } if(a[5][1] == "-1" || a[5][1] == undefined){ _root.rangbox.text = "-"; }else{ _root.rangbox.text = a[5][1]; } if(a[6][1] == "-1" || a[6][1] == undefined){ _root.praybox.text = "-"; }else{ _root.praybox.text = a[6][1]; } if(a[7][1] == "-1" || a[7][1] == undefined){ _root.magebox.text = "-"; }else{ _root.magebox.text = a[7][1]; } if(a[8][1] == "-1" || a[8][1] == undefined){ _root.cookbox.text = "-"; }else{ _root.cookbox.text = a[8][1]; } if(a[9][1] == "-1" || a[9][1] == undefined){ _root.wcbox.text = "-"; }else{ _root.wcbox.text = a[9][1]; } if(a[10][1] == "-1" || a[10][1] == undefined){ _root.fletbox.text = "-"; }else{ _root.fletbox.text = a[10][1]; } if(a[11][1] == "-1" || a[11][1] == undefined){ _root.fishbox.text = "-"; }else{ _root.fishbox.text = a[11][1]; } if(a[12][1] == "-1" || a[12][1] == undefined){ _root.fmbox.text = "-"; }else{ _root.fmbox.text = a[12][1]; } if(a[13][1] == "-1" || a[13][1] == undefined){ _root.crafbox.text = "-"; }else{ _root.crafbox.text = a[13][1]; } if(a[14][1] == "-1" || a[14][1] == undefined){ _root.smitbox.text = "-"; }else{ _root.smitbox.text = a[14][1]; } if(a[15][1] == "-1" || a[15][1] == undefined){ _root.minebox.text = "-"; }else{ _root.minebox.text = a[15][1]; } if(a[16][1] == "-1" || a[16][1] == undefined){ _root.herbbox.text = "-"; }else{ _root.herbbox.text = a[16][1]; } if(a[17][1] == "-1" || a[17][1] == undefined){ _root.agilbox.text = "-"; }else{ _root.agilbox.text = a[17][1]; } if(a[18][1] == "-1" || a[18][1] == undefined){ _root.thefbox.text = "-"; }else{ _root.thefbox.text = a[18][1]; } if(a[19][1] == "-1" || a[19][1] == undefined){ _root.slaybox.text = "-"; }else{ _root.slaybox.text = a[19][1]; } if(a[20][1] == "-1" || a[20][1] == undefined){ _root.farmbox.text = "-"; }else{ _root.farmbox.text = a[20][1]; } if(a[21][1] == "-1" || a[21][1] == undefined){ _root.rcbox.text = "-"; }else{ _root.rcbox.text = a[21][1]; } if(a[22][1] == "-1" || a[22][1] == undefined){ _root.huntbox.text = "-"; }else{ _root.huntbox.text = a[22][1]; } if(a[23][1] == "-1" || a[23][1] == undefined){ _root.conbox.text = "-"; }else{ _root.conbox.text = a[23][1]; } _root.sumbox.text = "-" _root.archbox.text = "-" } } }[/hide] Edit: Sent a query into Jagex, already got a reply back. I specifically stated that I wrote an HTML file that, when opened, provides direct links to the RS worlds, and the mod wrote back that "I am more than welcome to bookmark worlds using the browsers, but using third party software to perform this function is against the rules." So I guess I'm fine.
December 9, 200718 yr Author Bump Decided to do the clue in my bank this morning. 3 wild clues, guess what the reward was... guthix coif! Darnit. What am I going to do with that? I already have the zam one which looks much hawter. :?
December 9, 200718 yr Congratulations on 93 runecrafting! And about that world switcher, it is illegal, just like desktop shortcuts (not that anyone listens to that, but still :-w ): - It must not bypass the normal navigation of our website for users wishing to reach the game worlds. The software should initially only point at the front page of http://www.runescape.com, and should require the user to navigate through the website normally to reach the game worlds. The software must not contain or acquire direct links to our "Select a world" page, or to our game world pages, or to the RuneScape applet. - It must not attempt to make it easier to enter a busy RuneScape world than it would be for users not using the software. It must not allow worlds marked as 'FULL' on the world select page to be selected. It must not contain any features to make it easier to enter or monitor busy worlds. Not that I care about that though. EDIT: Why the heck is quote= not working? test test When everything's been said and done, more has been said than done.All skills 80+
December 9, 200718 yr Author Congratulations on 93 runecrafting! And about that world switcher, it is illegal, just like desktop shortcuts (not that anyone listens to that, but still :-w ): - It must not bypass the normal navigation of our website for users wishing to reach the game worlds. The software should initially only point at the front page of http://www.runescape.com, and should require the user to navigate through the website normally to reach the game worlds. The software must not contain or acquire direct links to our "Select a world" page, or to our game world pages, or to the RuneScape applet. - It must not attempt to make it easier to enter a busy RuneScape world than it would be for users not using the software. It must not allow worlds marked as 'FULL' on the world select page to be selected. It must not contain any features to make it easier to enter or monitor busy worlds. Not that I care about that though. Thanks. Like I said, I contacted CS and they gave me the green light on the matter. They specifically told me that the function of providing direct links to full worlds ect. is only illegal if done with a third party program. Don't quite get that myself, but w/e... :-s By the way, you need to do the quote thing like this: [quote name="test"]test[/quote]
December 10, 200718 yr Author Holy hell... these updates are... horrible :( I was really hoping that Jagex would lay off the RWT crusade this month, instead they killed pking, drop parties, ffl + ffa, ect. in one fell swoop -.- Considering quitting. None of these updates really effect me too much, but do I really want to stay in a game where over 20% of the population has already quit...
December 11, 200718 yr GRATZ on 93 RC!! Im currently 93 fishing, close to gettin 94 fishing, wanna race to 99 add me in game and chat w/ me.
December 12, 200718 yr Author Well, I've thought it through and I've decided that I'm defiantly not going to quit. RC has lost some of its fun for me, but that dosen't mean an update should be able to stop my goal dead in its tracks. Sure I'm going to be making SIGNIFICANTLY less money from 99 rc (like 100m or more less -.-) but it's still a worthy goal. Anyways it's a bit faster now that there are no PKers to worry about. All I need to take are pouches and ess, and also my full black dragonhide has been replaced with ghostly and barrows gloves, and additionally I'm using a sara book now instead of a mind shield.
December 12, 200718 yr Glad to see you're stronger then a few horrible updates (that's an understatement). Good Luck with your goal, but in my eyes maybe you should stop RC for a little while and see what natures will do, it's such a waste of time to only make ~150 ea on every nat. When everything's been said and done, more has been said than done.All skills 80+
Create an account or sign in to comment