GottaGetDownOnfriday Posted August 17, 2010 Share Posted August 17, 2010 Perhaps you should all get a life and go outside instead of constantly hitting f5 on the front page? :rolleyes: Pfft. Real geeks code an application which automatically refreshes the page every 5 seconds then tweets/sms's/im's them when an update happens. 65,280 to 99 fletching on 3-14-0940,405 to 99 woodcutting on 10-17-2009 Link to comment Share on other sites More sharing options...
strilmus Posted August 17, 2010 Share Posted August 17, 2010 Or....just use one of the many browsers that already come with that feature built in. :P Link to comment Share on other sites More sharing options...
Dragonlordjl Posted August 17, 2010 Share Posted August 17, 2010 If they PLANNED to release it in Wednsday, it sure as hell would have been nice if they would tell us that on Monday so we aren't constantly checking the frontpage in anticipation of an update we are looking forward to. Yeah some kids would rage if that plan didn't pan out because they would assume it was a promise but meh, they rage anyway so who the hell cares.They'd need to say "we're planning to release it later in the week" instead of "on a specific day" in case the QA team takes a rare break from the golf course and decides to check the update over. There would be lots of rage if they said "We are planning to release it on Wednesday" and then when Wednesday rolled around, they said "We found some unexpected bugs in the update, so we had to delay it a few days." Link to comment Share on other sites More sharing options...
Obtaurian Posted August 17, 2010 Share Posted August 17, 2010 I'm just annoyed because I can't stand training dungeoneering with the current experience rates. Once this update comes out, I'll be able to tolerate world 117 enough to finally get my rapier. <_< I didn't really care when the clue scroll update was delayed for two weeks or whatever, 'cause clue scrolls don't directly affect the way I play. Dungeoneering, however, does. To put it bluntly, [bleep] off. Link to comment Share on other sites More sharing options...
Toad Posted August 18, 2010 Share Posted August 18, 2010 Obvious fakes, there's no self respecting staff member would call themselves Mod FireC? despite that certain players in this game *coughs* I wouldnt trust with any information :P if you want the official world look at Mod Emilees post during the day until she either confirms or denys it ;) IRC for update sources? nonononono, full of attention seekers :wink: I do expect it tomorrow if I'm honest, I'll do a week or so to get some of the new reward items, as 120 dungeoneering is and will never be on my priority list. I have a vent full of people willing to go, all 93+ so it should be pretty easy to get the items I want :mrgreen: Link to comment Share on other sites More sharing options...
viralaether Posted August 18, 2010 Share Posted August 18, 2010 Perhaps you should all get a life and go outside instead of constantly hitting f5 on the front page? :rolleyes: Pfft. Real geeks code an application which automatically refreshes the page every 5 seconds then tweets/sms's/im's them when an update happens.5 seconds? that seems a bit ridiculous... your not going to be first if you wait that long between refreshes :P [hide=drops]10 black masks, 39 dragon boots, 21 whip, 9 dark bow, 7 dragon legs, 8 mauls, 3 dragon left half, 2 dragon spear, 2 hexcrest, 1 kbd heads, 10 dragon med, 2 R ammy, 2 granite legs, 1 bandos boots , 1 bandos hilt , 1 bandos chestplate, 1 saradomin sword(ls), 2 dragon claws(ls)(solo)[/hide][hide=Viralaether's guide to Mac use]1) take your mac2) drop it off your roof3) ??????4) Profit![/hide]1/7/9 quest cape ||| 5/6/9 all diaries ||| 7/14/9 300 rank MA ||| 4998th to 99 summoning on 2/27/10 Link to comment Share on other sites More sharing options...
strilmus Posted August 18, 2010 Share Posted August 18, 2010 ...... Naaaah. Link to comment Share on other sites More sharing options...
viralaether Posted August 18, 2010 Share Posted August 18, 2010 ...... [ig]http://a.imageshack.us/img7/2635/maybealittle.gif[/img] Naaaah. :shades: [hide=drops]10 black masks, 39 dragon boots, 21 whip, 9 dark bow, 7 dragon legs, 8 mauls, 3 dragon left half, 2 dragon spear, 2 hexcrest, 1 kbd heads, 10 dragon med, 2 R ammy, 2 granite legs, 1 bandos boots , 1 bandos hilt , 1 bandos chestplate, 1 saradomin sword(ls), 2 dragon claws(ls)(solo)[/hide][hide=Viralaether's guide to Mac use]1) take your mac2) drop it off your roof3) ??????4) Profit![/hide]1/7/9 quest cape ||| 5/6/9 all diaries ||| 7/14/9 300 rank MA ||| 4998th to 99 summoning on 2/27/10 Link to comment Share on other sites More sharing options...
Squisher_33 Posted August 18, 2010 Share Posted August 18, 2010 so since updates dont usualy come on thursday or friday, does that mean its probably gonna come in about 9 hours? Link to comment Share on other sites More sharing options...
GottaGetDownOnfriday Posted August 18, 2010 Share Posted August 18, 2010 ...... [ig]http://a.imageshack.us/img7/2635/maybealittle.gif[/img] Naaaah. :shades: PFFT: [hide=code]import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.net.MalformedURLException; import java.net.URL; import java.net.URLConnection; import java.text.Format; import java.text.SimpleDateFormat; import java.util.Date; public class UpdateChecker { static URL location; public static void main(String args[]) { try { location = new URL("http://www.runescape.com/index.ws"); } catch (MalformedURLException e) { // TODO Auto-generated catch block e.printStackTrace(); } NewsListener news = new NewsListener(); Thread t = new Thread(news); t.start(); } } class NewsListener implements Runnable { int Freq = 1500; // How often to check: default 1.5 seconds public void run() { URLConnection uc; for (;;) { try { uc = UpdateChecker.location.openConnection(); BufferedReader in = new BufferedReader(new InputStreamReader(uc .getInputStream())); String inputLine; while ((inputLine = in.readLine()) != null) { if (inputLine .contains("<span>" + getCurrDate() + "</span>")) { // Alert me! // SMS/Email/Call me and tell me update has happened // Automated code to post update on to forums // YOu lose the game System.out .println("UPDATE!@!@ BEAT SMELLYSOCKS to the post!!!!@!@"); } else { System.out.println("No Update :( " + getCurrDate()); } } in.close(); Thread.sleep(Freq); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } String getCurrDate() { Format formatter; formatter = new SimpleDateFormat("dd-MMM-yyyy"); Date date = new Date(); String s = formatter.format(date); return s; } } [/hide] 65,280 to 99 fletching on 3-14-0940,405 to 99 woodcutting on 10-17-2009 Link to comment Share on other sites More sharing options...
Krampell Posted August 18, 2010 Share Posted August 18, 2010 I lol'd at the message you would get when it notify you about a update. :D Link to comment Share on other sites More sharing options...
Toad Posted August 18, 2010 Share Posted August 18, 2010 Dear Shyboy36, No, the game update won't be today, we are hoping to launch tomorrow. I'll be adding a sticky to this forum shortly. Regards, Mod Emilee Quick find code: 16-17-153-61526176 Link to comment Share on other sites More sharing options...
Jabawoki13 Posted August 18, 2010 Share Posted August 18, 2010 No Game Update Today! -------------------------------------------------------------------------------- Hi all, Just to let you know, the game update won't be launched today. Don't worry, the update is still planned for release this week! We apologise for any disappointment caused. QF code: 16-17-746-61526245 Achievement DiariesCompleted: Lumbridge, Falador, Seers, Varrock, Fremennik and Karamja Finished Hard: Ardougne Music Tracks - 703/704Nomad killed at 114 combat Slayer drops: Black Mask x2 Clue scroll rewards: Guthix Platebody - 900k, Guthix F Helm 1mil, Bandos Kite - 2.3mil Link to comment Share on other sites More sharing options...
Lep Posted August 18, 2010 Share Posted August 18, 2010 Wow, what a company. Deliberately delaying one of the biggest updates that players can't wait for, good way to suck. :thumbdown: Probably working on graphics again. :rolleyes: Link to comment Share on other sites More sharing options...
Toad Posted August 18, 2010 Share Posted August 18, 2010 Wow, what a company. Deliberately delaying one of the biggest updates that players can't wait for, good way to suck. :thumbdown: Probably working on graphics again. :rolleyes: I can wait for it, I could wait until the end of the year for dungeoneering batch 2 :razz: Link to comment Share on other sites More sharing options...
Youmu Posted August 18, 2010 Share Posted August 18, 2010 Wow, what a company. Deliberately delaying one of the biggest updates that players can't wait for, good way to suck. :thumbdown: Probably working on graphics again. :rolleyes:Patience is a virtue. Big updates DO take some time to develop and test, you know. BlogTrimmed | Master Quester | Final BossBoss pets: Bombi | Shrimpy | Ellie | Tz-Rek Jad | Karil the Bobbled | Mega Ducklings120s: Dungeoneering | Invention Link to comment Share on other sites More sharing options...
Jabuli Posted August 18, 2010 Share Posted August 18, 2010 Wow, what a company. Deliberately delaying one of the biggest updates that players can't wait for, good way to suck. :thumbdown: Probably working on graphics again. :rolleyes: I can wait for it, I could wait until the end of the year for dungeoneering batch 2 :razz: I'd like to see it before my military service starts :rolleyes: Link to comment Share on other sites More sharing options...
Triquos Posted August 18, 2010 Share Posted August 18, 2010 And that's why I don't stay up for updates anymore. They hype something up, then fail to launch it on time. Time and time again. #-o Link to comment Share on other sites More sharing options...
Yoko Kurama Posted August 18, 2010 Share Posted August 18, 2010 And that's why I don't stay up for updates anymore. They hype something up, then fail to launch it on time. Time and time again. #-o You know what is even more frustrating, not only do they hype things up huge, and constantly fail to deliver, they also announce at the ABSOLUTE latest hour that it won't be ready, after I have waited for it the 3rd day in a row. It isn't as if they encountered some new problem 20 minutes ago that disallowed them from releasing this update. They knew just as well earlier today that it wouldn't be released. How about they put a [bleep]ing twitter hint earlier than after the usual time in the morning when updates are released? This is tiresome and disappointing. Jagex can go [bleep] themselves. I am ok with them taking the time to straighten things out occasionally but don't make us wait, be honest. All of this has to do with their inexcusable business model where they work updates AFTER they announce then. These updates should already be ready and the only thing they should be doing is last minute testing. Not [bleep]ing making up half the update the week before it is supposed to be release. So yeah, to all those apologists, it IS their fault for having a [cabbage] business model. Link to comment Share on other sites More sharing options...
Jabuli Posted August 18, 2010 Share Posted August 18, 2010 And that's why I don't stay up for updates anymore. They hype something up, then fail to launch it on time. Time and time again. #-o You know what is even more frustrating, not only do they hype things up huge, and constantly fail to deliver, they also announce at the ABSOLUTE latest hour that it won't be ready, after I have waited for it the 3rd day in a row. It isn't as if they encountered some new problem 20 minutes ago that disallowed them from releasing this update. They knew just as well earlier today that it wouldn't be released. How about they put a [bleep]ing twitter hint earlier than after the usual time in the morning when updates are released? This is tiresome and disappointing. Jagex can go [bleep] themselves. I am ok with them taking the time to straighten things out occasionally but don't make us wait, be honest. All of this has to do with their inexcusable business model where they work updates AFTER they announce then. These updates should already be ready and the only thing they should be doing is last minute testing. Not [bleep]ing making up half the update the week before it is supposed to be release. So yeah, to all those apologists, it IS their fault for having a [cabbage] business model. Actually they announced it quite early today. Link to comment Share on other sites More sharing options...
Omali Posted August 18, 2010 Share Posted August 18, 2010 Wow, what a company. Deliberately delaying one of the biggest updates that players can't wait for, good way to suck. :thumbdown: Probably working on graphics again. :rolleyes: It's okay, you'll have plenty of time when the update comes out to cry about how the update sux and jagex sux and the game sux and you hate jagex and their faces are stupid and their faces sux and their kids are probably embarrassed because their parents sux and so do their games and faces. Link to comment Share on other sites More sharing options...
Dax Posted August 18, 2010 Share Posted August 18, 2010 Wow, what a company. Deliberately delaying one of the biggest updates that players can't wait for, good way to suck. :thumbdown: Probably working on graphics again. :rolleyes: It's okay, you'll have plenty of time when the update comes out to cry about how the update sux and jagex sux and the game sux and you hate jagex and their faces are stupid and their faces sux and their kids are probably embarrassed because their parents sux and so do their games and faces. ^This man speaks the truth. :| #KERR2016/17/18/19/20/21. #rpgformod Link to comment Share on other sites More sharing options...
Yoko Kurama Posted August 18, 2010 Share Posted August 18, 2010 And that's why I don't stay up for updates anymore. They hype something up, then fail to launch it on time. Time and time again. #-o You know what is even more frustrating, not only do they hype things up huge, and constantly fail to deliver, they also announce at the ABSOLUTE latest hour that it won't be ready, after I have waited for it the 3rd day in a row. It isn't as if they encountered some new problem 20 minutes ago that disallowed them from releasing this update. They knew just as well earlier today that it wouldn't be released. How about they put a [bleep]ing twitter hint earlier than after the usual time in the morning when updates are released? This is tiresome and disappointing. Jagex can go [bleep] themselves. I am ok with them taking the time to straighten things out occasionally but don't make us wait, be honest. All of this has to do with their inexcusable business model where they work updates AFTER they announce then. These updates should already be ready and the only thing they should be doing is last minute testing. Not [bleep]ing making up half the update the week before it is supposed to be release. So yeah, to all those apologists, it IS their fault for having a [cabbage] business model. Actually they announced it quite early today. It was announced like an hour ago(unless I am mistaken), on the day of the update when people were expecting the update, refreshing constantly. That seems to me to be the absolute latest they could have possibly done. How is that early in any sense of the word? If I am mistaken then ignore this post. Link to comment Share on other sites More sharing options...
Viv Posted August 18, 2010 Share Posted August 18, 2010 And that's why I don't stay up for updates anymore. They hype something up, then fail to launch it on time. Time and time again. #-o You know what is even more frustrating, not only do they hype things up huge, and constantly fail to deliver, they also announce at the ABSOLUTE latest hour that it won't be ready, after I have waited for it the 3rd day in a row. It isn't as if they encountered some new problem 20 minutes ago that disallowed them from releasing this update. They knew just as well earlier today that it wouldn't be released. How about they put a [bleep]ing twitter hint earlier than after the usual time in the morning when updates are released? This is tiresome and disappointing. Jagex can go [bleep] themselves. I am ok with them taking the time to straighten things out occasionally but don't make us wait, be honest. All of this has to do with their inexcusable business model where they work updates AFTER they announce then. These updates should already be ready and the only thing they should be doing is last minute testing. Not [bleep]ing making up half the update the week before it is supposed to be release. So yeah, to all those apologists, it IS their fault for having a [cabbage] business model. Actually they announced it quite early today.yah usually they announce it after the usual update time has past... grr!@@@@##### what the hell am i supposed to do in rs! :P and nooooooo patience....lol if they released it on monday and we werent so good with it it would be ok we'd be like yay new content... but if it comes out tommorow....then we will be like "finally" and if disappointed ////rage///// i mean tbh this is a really really important update and alot of people planned to be on at the same time for a day of dungeoneering...... i suppose its ok as long as its not next week lol... Link to comment Share on other sites More sharing options...
xSxqPowerx Posted August 18, 2010 Share Posted August 18, 2010 And that's why I don't stay up for updates anymore. They hype something up, then fail to launch it on time. Time and time again. #-o You know what is even more frustrating, not only do they hype things up huge, and constantly fail to deliver, they also announce at the ABSOLUTE latest hour that it won't be ready, after I have waited for it the 3rd day in a row. It isn't as if they encountered some new problem 20 minutes ago that disallowed them from releasing this update. They knew just as well earlier today that it wouldn't be released. How about they put a [bleep]ing twitter hint earlier than after the usual time in the morning when updates are released? This is tiresome and disappointing. Jagex can go [bleep] themselves. I am ok with them taking the time to straighten things out occasionally but don't make us wait, be honest. All of this has to do with their inexcusable business model where they work updates AFTER they announce then. These updates should already be ready and the only thing they should be doing is last minute testing. Not [bleep]ing making up half the update the week before it is supposed to be release. So yeah, to all those apologists, it IS their fault for having a [cabbage] business model. Actually they announced it quite early today. It was announced like an hour ago(unless I am mistaken), on the day of the update when people were expecting the update, refreshing constantly. That seems to me to be the absolute latest they could have possibly done. How is that early in any sense of the word? If I am mistaken then ignore this post.Because it was announced at approximately the very earliest that updates ever come out on a given day. Meaning people really should not have been waiting very long. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now