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.

blakdragon39

Members
  • Joined

  • Last visited

Everything posted by blakdragon39

  1. Well I haven't read all 5 pages, but almost everyone on page 2 voted for B, as did I! Sounds like B will probably win. :D
  2. I think that's totally valid. It's something I've always wondered as well. :P
  3. I've noticed my dad's parents growing old the last few years... They've always been "old" to me, but now it's getting worse and worse. :( My grandma has Alzheimer's, she doesn't talk very much anymore. Sometimes I wonder what she all remembers. There've been times when she's been in the living room (in the house they must have lived in for 50 years by now..) and she doesn't know where she is. It's really sad. :( But my grandpa takes care of her as best as he can. It's really sweet sometimes, when he calls her "sweetie" and stuff. :) I really wish society didn't have an issue with people dying when its there time. I don't know how many drugs my grandma is on, but it's probably way too many. I wish she could just die and go to a happier place, and not always be confused about where she is and what's going on. It must be scary. :( When I get that old? I REALLY hope the people around me will just let me die instead of trying to make me live forever.
  4. The thing about 117 is, I hate it. And lots of other people hate it. I want a place possibly with forums, and a cc, and a tighter-knit group of people. The only time I ever went to 117 and used a team from there, it sucked. A lot. People left in the middle of the dungeon. We couldn't kill the boss because people left. We died WAAY to many times. I want people who are going to COMMIT to a dungeon, but not take it so seriously that we can't have fun!
  5. I'm looking for a "fun" dungeoneering clan. I mostly want a place or a cc where people are serious about dungeoneering, but don't "rush" every single dungeon and take it super seriously, so I"m allowed to kill extra monsters and pick up extra food and mine an ore every now and then. :P If no one can think of such a clan or cc... Does anyone maybe want to start one with me? :o I looked in the Clan Recruitment area btw, but that looks to be ALL pking clans.
  6. It wasn't actually 4chan that knocked Facebook over, was it? o.O
  7. Darn ok, I'll be sticking to maples for now then. By next week I'll have enough logs for 92 fm and the inferno adze! xD Thanks for the replies everyone. :)
  8. WTH's wrong with Canada? :shock:
  9. I'm using MTK to gather nests as I have a goal of 92 herb for extreme range potions (for Camelot diary). Right now I'm using maples, but I'm wondering if I would get less nests if I switched to mahogany? Or the same about?
  10. blakdragon39 replied to Blake's topic in Help and Advice
    I can't remember when I deleted mine... but it was a long time ago. I don't feel at risk at all. It's really up to you, and how much risk you believe your account could be in. If you do delete it, and you do get hacked, remember it's just a game. You can always make it back. :)
  11. I've at least skimmed all of the posts up until here, and not ONE post sounds in the LEAST maternal. I'm guessing guys have no idea what its like when your body WANTS to have kids. As women get older, you WANT kids. You WANT to care for and nurture children. I don't see that as selfish or selfless or anything like that. It's natural, and what we're meant to do.
  12. I'm definitely in favour of this. But like another user said, this would open up new possibilities for scams. Given how protective Jagex is of their playerbase I just can't see it happening. Then remove the ability to mute as well. Don't PMod reports get a higher attention status? Just make it clear that these "undercover" mods will *never* have the ability to mute, only report with a higher urgency status or something. Then if regular players try to pretend to be undercover mods... what can they do? "Oh em geeee I'll report you!!" The only people they can scare then, are the people who are actually breaking the rules.
  13. I completely agree with the second article. I hate how often some people change their names! The update probably would have been perfect if there was a limit to the number of name changes we could use. In response to the first article, I love the Bonus Exp weekends! I never pay that much attention to the economy anyways. If they do future weekends, we should be limited to non-buyable skills perhaps? So mining, agility, combat skills and slayer, hunter, etc. Wouldn't have AS much of an adverse effect on the economy, but would still be a great opportunity to reduce the grind. :D
  14. I'm a bit behind.. think I'm done 17 weeks now. :P But I want the statue, even though it doesn't do anything special. :D It's something not a lot of other people will have. ^^
  15. Ooh! Okay, thanks! Give this another try. :D And I might use netbeans or something sometime (there's some IDE we're going to be using in the class I'm taking.. can't remember what it's called.) But for right now, I want to know how to make it work with just a text editor and command prompt as well! Can't hurt to know. :) EDIT: It worked! Hoorrah. :D It took FOREVER to run just the hello world program though... not sure why. =\ But anyways, now maybe I can figure out how to get my C compiler to work correctly as well! Thanks for the help guys. :) If anyone could tell me why it took so long just to print "hello world" though? EDIT: It worked super fast the second time I ran firstprog... EDIT: AAHHH I even figured out how to properly install my C compiler. :D Thanks for all the help guys!!
  16. Great I'll try doing both of those! I tried adding my C/C++ compiler to my environmental variables once... I don't think it went well. =\ I have a batch file I run every time I open command prompt to temporarily ... do something to make the compiler work. xD Hopefully I have better luck with this right now! EDIT: Good progress so far... Upon typing: "C:\Program Files\Java\jdk1.6.0_21\bin\javac" firstprog.java My program compiled perfectly, and then ran perfectly. :D So I know if I wanted to be, I could finally be on my way to making Java applications, hoorah!! Now I'm going to try changing that environmental variable. :P EDIT: Tried changing the environmental variable... Didn't do it right I suppose. :P When I went to add it this is what I typed: Variable name: javac Variable value: C:\Program Files\Java\jdk1.6.0_21\bin\javac[Caution: Executable File]; Is that correct?
  17. Hello, its me again. :unsure: I've downloaded this JDK: http://www.oracle.com/technetwork/java/javase/downloads/jdk6-jsp-136632.html And now all I'm trying to do is create a simple hello world program: [hide] //firstprog.java: class firstprog { public static void main (String[] args) { System.out.println("Hello, world."); } } [/hide] Using command prompt, I go into the directory I saved this into and type: javac firstprog.java And this is what I get: 'javac' is not recognized as an internal or external command, operable program or batch file. After some searching to find out what was going wrong I found this page: http://download.oracle.com/javase/tutorial/getStarted/problems/index.html And tried the first suggestion, which didn't fix the problem. At first I tried typing in exactly what they said there, and it said it couldn't find the path file specified. So then I tried typing: C:\Program Files\Java\jdk1.6.0_21\bin\javac firstprog.java That's where the javac executable is. It told me 'C:\Program' wasn't a recognized command. What I got from that was that it didn't like the space that I used while typing the command.. So here are my questions: 1) How can I type that file path correctly to see if this will work? 2) If that DOES work, what can I do to make it so I don't have to type that entire file path every time I want to compile a Java program? 3) If that doesn't work, what might I have done wrong? EDIT: After playing around a bit more, I tried moving the javac executable into the same directory as firstprog.java. When I tried to compile it using the same command, it told me some file was missing. So I felt like I was getting somewhere. :P I tried copying the ENTIRE jdk1.6.0_21 contents into the same directory and this is what happened: [hide] C:\Users\User\Documents\Classes\CMPT 270>javac firstprog.java Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/tools/javac/M ain Caused by: java.lang.ClassNotFoundException: com.sun.tools.javac.Main at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) Could not find the main class: com.sun.tools.javac.Main. Program will exit. C:\Users\User\Documents\Classes\CMPT 270> [/hide] So now I know it's doing something? But evidently I've messed up somewhere... But I shouldn't have to have the entire contents of the JDK6 in the same directory as my program to use it, right?
  18. I have a batch file I use to make my c++ compiler work. All I do is type the name of the file and it executes the command.. Whats yours look like? Maybe there's an extra command or something that shouldn't be there?
  19. Wow some of those rewards look great! I'm disappointed that 95 prayer is a requirement for one of them. As if we need MORE reasons to spend MORE money on prayer... Oh well. I haven't looked at the rest of the diaries yet, but I'm sure they'll be good! Can't wait to start on them. ^^
  20. I don't really know why I chose it over any other MMO... I tried WOW once, but I don't think the whole dungeon raiding thing was my thing at all. I prefer to play solo most of the time, and Runescape fits that just nicely. :D Also it's browser based, and cheap. :thumbsup:
  21. I like this idea! Firemaking definitely needs a point... which it really doesn't have at the moment. Would be a nice little bonus for skillers I think. Well thought out idea. :D Maybe players could light their equipment on fire, and could help others do the same using the assist system? (However this would put more pressure on the already over-loaded feeling assist system.) This would, of course, provide more firemaking experience!
  22. It doesn't tell me the length of the chapters unfortunately. :(
  23. I'm definitely excited for these diaries! I'm done every diary except the Ardougne Elite one. Gives me something to work for. :D
  24. Yeah both of them are free. I had some trouble figuring out how to get them both to work at all, but this is my last problem I think! I don't think DVD Decrypter can let me view the DVD chapters. :( The only idea I've had is to individually rip *all* 50 chapters, see which ones Videora can even convert (some of the chapters are menus..) and after that lump the ones together that are the actual show. Then rip them again in the proper groupings. :P But that would be sooo much work..
  25. I've been ripping some DVD's of a tv show to go onto my iPod, and so far I've had lots of luck. I've been using DVD Decrypter along with Videora. So far I've been using windows media player to determine what "chapters" I should rip at a time with the decrypter. (So as to get the entire episode, and only that episode on one movie.) However the last DVD of the season is full of special features and windows media's list of the chapters conflicts with the list of chapters provided by the decrypter. Anyone know how I can figure out which chapters are what so I can rip them properly?

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.