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.

GottaGetDownOnfriday

Members
  • Joined

  • Last visited

Everything posted by GottaGetDownOnfriday

  1. I wear my wc cape because of the shoulder drapes. It looks cool with monk robes and other armor in general. I wish all capes had those should drapes.
  2. I make that much money sitting on the toilet at work. Its only 5 dollars which is less then a quarter a day. I feel good contributing to the game's upkeep costs.
  3. I spent the last two weeks trying to recover my wow account from a phisher. I come to found out that they sold gold with it, did 9 charge-backs, and deleted my level 55 Tauren shaman. I spent 2 months on it :( I have another wow account which I have level 15 blood elve hunter. I like being a hunter, but I can't get used to it. I am going to make a Tauren pally when Cataclysm comes out. Also, I spent 49 minutes on hold before I got through. Also, I used 300-350 of my mom's cellphone minutes trying to get in contact with blizzard support. Each call used up two minutes :/.
  4. Just wait till the interstate :thumbup: Very fun. Until you see the red and blue flashing lights in your rear-view mirror. :mellow:
  5. I would rather see "live" video Q&A sessions over stickam or something like that where you ask a question in a chat box and they answer it in person. Oh well. This will be interesting none the less.
  6. It utilizes the Java Virtual machine. This uses up memory and can make your computer seem slow.
  7. Just got in from work. I got pulled over for going 76 in a 75. The officer said I needed to slow down. I guess he was oblivious to the semi's and caddy's passing me at 85-90 mph.
  8. They should've made the monks drop monk robes to lower the prices on an item with an outrageous price. But thats another topic. Thank you for the heads up. I just have to kill 3,000,000 monks for 99 prayer :) at 100 monks an hour, that's 3k hours for 99 prayer. at 3 hours a day that's 1000 days which is about three years which would also give me 99 str and like 90 hp. That's the greatest update OF ALL TIME.
  9. You can get 86.5k xp just from going to each dungeon (at level 85 ofc). That is pretty sweet.
  10. You are scheduled for 9 hours, two kids leave, you get stuck doing another 7 hours after that. After I posted some, I passed out on the couch and woke up just now.
  11. Worked 16 hours today.
  12. I'm hoping for a nazi zombie (CODWAW) rip-off minigame.
  13. I am trying to think of a storyline for an RPG I am working on. I just want to get a basic storyline down. I can come up with character names and the names of locations later on. I don;t want to do a "Save the princess" type thing. I want to come up with something completely original. I am thinking about mixing Sci-Fi with Medieval. My first idea is a plot in which your parents send you in a ship to escape the Earth before a solar flare destroys it. You and many others are on this ship in cryostat chambers. You end up getting pulled into a black-hole which takes you back into the medieval times only with an alternate reality twist. After I get the basic story down, I can get back to working on the Game Framework. Here is a basic outline of my game framework I plan on getting the graphics and scripting engine done by myself before I recruit some help from some friends for audio and graphical work. Hopefully in a month I will have something to demonstrate. I have this written in Java, but I may attempt it in c++ to improve my skills and become a better programmer.
  14. I am learning more c++ than the basic hello world and number crap right now. I am wanting to lean more about media layers so I decided to start using SDL.
  15. You can use software to get access to your temperature nodes in your computer components. With most computers, you can easilty get the CPU temp, NB Temp, and GPU temp without issue. You can also buy small wired temperature probes to get ambient temperatures in your case.
  16. Well I guess we know what the result is. /thread
  17. I only started learning Java in September, so I don't really know what's going on there, but why do you comment like that? Wouldn't // be easier than /* */? Although it does look a little neater with the one you used. I do it like that because it looks neater. Basically what it does is: 1.Gets a starting time before it reads (loops through the bytes) the file. 2. It loops through each byte one at a time, updating the progress each time. 3.Display the progress of reading the bytes in a progress bar 4.After it is done, the current time is rechecked. 5.It subtracts the start time from the end time to get the total time it took. 6. It outputs the result. It acts the same way as the Runescape loader. It shows the percentage of loading things like graphics, interface scripts, etc. I am using this with my stellar dawn toolkit. Here is a picture which is color coded and shows more: [hide=morecrap] The Blue highlighted area shows the method being called and an image being processed. The Red shows the GUI with the progressBar added. The Green highlighted part shows the name of the file. The Gray highlighted area shows how I remove the extension by trimming everything off from the beginning to the "." (period) for the ".extension". [/hide] I got in from work at 4:30 this morning. We had someone order 25 McDouble's 3 minutes before we closed so we HAD to feed them. This delayed our closing by an extra hour and a half. I got today off thankfully. I will spend most of it working on a few custom components and building the loader engine for my stellardawn toolkit.
  18. Today I started doing some prep for moving to Columbus,OH. Tonight when I go into work, I am going to put a request for a transfer to one of the McDonald's in Columbus. Today I started working on my loader for a Java project. It reads a file then shows the progress. It is really horribly coded. It works through. here is the code with comments [hide=Code] public void ReadFile(String FileName) { /*File to read- passed through method*/ File f = new File(FileName); /*JFrame to show progresss Bar*/ JFrame frame = new JFrame("Progress Test!"); /*Progressbar*/ JProgressBar bar = new JProgressBar(); /*Time variables*/ long StartTime,EndTime,TotalTime; /*Set the size of the progres bar*/ bar.setSize(100, 50); /*String for the progressBar*/ bar.setString("Reading - " + f.getName().substring(0, f.getName().indexOf("."))); /*Set the progress bar to paint the string (should be placed above the above line*/ bar.setStringPainted(true); /*Add the bar to the form*/ frame.add(bar, "South"); /*Give the JFrame a close operation*/ frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); /*Set the frame's size*/ frame.setSize(300, 300); /*Set the frame visible*/ frame.setVisible(true); /*Long variable for progress*/ long currProgress = 0; /*Get time before we do the reading*/ StartTime = System.currentTimeMillis(); /*--Reading the File by looping through the bytes*/ for(int i =0; i < f.length(); i ++){ /*change the bytes read to a value we can use for the progress bar (100)*/ currProgress = ((i * 100) /f.length() + 1); /*Set the progressbar to the value*/ bar.setValue( (int) currProgress); /*Change the string*/ bar.setString("Reading - " + f.getName().substring(0, f.getName().indexOf(".")) + " " + String.valueOf(currProgress + "%")); } /*Get the time after we read the file*/ EndTime = System.currentTimeMillis(); /*Get the time in milliseconds it took to read the file **probably not accurate */ TotalTime = EndTime - StartTime; /*Output result to the console*/ System.out.println("Reading the File took a total of: " + String.valueOf(TotalTime) + "ms"); } [/hide] I will be actually loading files, not just reading them and my method will be way better written in my application.I plan on making a custom progress bar out of the frame class + some custom painting.
  19. I should apply using my iPod Touch :)
  20. OH MY GOD YES! I applied for beta! TIme to restart development on my Stellar Dawn ToolKit
  21. 120 summoning = you summon Jad MMKay? They stated in a video that they aren't currently planning on raising any more level caps in the near future. on a site note: Can anyone access "http://www.stellardawn.com"? It used to redirect me to funorb, but as of 2AM my time and 8AM their time, It times out. perhaps stellar dawn could be coming soon???!?!?
  22. They are too lazy to change their billing system. All they would have to do is add a trial membership option. This option would check to see if your character has been a member as well as used the trial before. If you have not been a member or used the trial, then you will get credited for 7 days which will start counting down after you log in. With their talent and ingenuity, it could take a week max to do.
  23. Just got the Cooler Master 932 case. I moved all of my components to there. I have a few pics of it below. I added a red cold cathode, fan controller, two LED fans (2 more on the way), and it looks pretty sweet. I plan on ordering another three cold cathodes and running two on each fan controller knob. I will have 4 LED fans (push 90CFM of air at max) and 4 cold cathodes (2 at top and 2 at bottom_ when everything is complete. It lowered my CPU temp by around 11degrees Celsius, my ambient case temperature by 12 degrees, and my graphics card by 14 degrees. I didn't bother with much cable management since this is a temporary motherboard. Here is the Motherboard, processor, and memory I will be getting on my next purchase. EVGA E758-TR 3-Way SLI (x16/x16/x8) LGA 1366 Intel X58 ATX Intel Motherboard Intel Core i7-920 Bloomfield 2.66GHz LGA 1366 130W Quad-Core Processor BX80601920 CORSAIR XMS3 6GB (3 x 2GB) 240-Pin DDR3 SDRAM DDR3 1600 (PC3 12800) Desktop Memory Model TR3X6G1600C8 G I am debating buying two more 9800's or two 470's . I plan on running triple/quad mons anyways. [hide=pics] These were taken in sisters room. That is not my blanket in the back. [/hide]
  24. Just got a notification my Coolermaster HAF 932 case and a few lights I ordered are in. I should have them early tomorrow. Here is what I ordered: I will hook it all up and post some pics in the tech and computers sticky late tomorrow. This case is going to be red themed. The only blue led objects I have is a cpu heatsink/fan (Zalman 9000) and my power supply has a blue led fan. It should keep my computer cool and looking great.
  25. I just bought Wow, BC, and WOTLK again after behind hacked previously to the point I was tired of recovering account weekly. I am going to be rolling a human pally this round.

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.