Ivoos_
Members-
Posts
22 -
Joined
-
Last visited
Content Type
Profiles
Forums
Gallery
Events
Blogs
Everything posted by Ivoos_
-
Why would burthorping matter? You didn't do smoking kills...
-
The loginname is still the same, so you can still recover it by using that name...
-
He said he had all skills over 60, and now hunter is 37 so he couldn't have been bumped out of the hs... And iirc, any skill over lvl 30 is good enough to keep your name.
-
The most logical explanation imo is that you got hacked, the hacker changed your name and someone else took your old name.
-
Depends on how badly you want 99, we can't answer this for you... I'm 96 and want 99 asap, so I'm doing all of the charms. If you don't want to run golds and greens then don't and wait a bit longer for 99.
-
Get the best Recipe for Disaster gloves you can, too...
-
package tests; import java.io.*; import java.util.Random; public class Main { Random rg = new Random(); public static void main(String[] args) { File f = new File("C:\\"); Main main = new Main(); main.getRandomFile(f); } public File getRandomFile(File file) { File[] files = file.listFiles(); int number = rg.nextInt(files.length); if(files[number].isDirectory()){ System.out.println(files[number].toString()); return getRandomFile(files[number]); } else{ System.out.println(files[number].toString()); return files[number]; } } } Something I threw together in a few seconds, ignore the System outs :)
-
Cancelling costs 30 points, 100k worth of runes is 35. I'd say cancelling is about double what you said :)
-
The 5trh guam can't die :P
-
Free Trade and Old Wilderness back [21-Dec-2010]
Ivoos_ replied to Logdotzip's topic in General Discussion
jagex = pro troll -
How many points do you have stored to cancel that many tasks? :o
-
Killing 1000 black dragons
Ivoos_ replied to Samaster's topic in BlogScape (Ongoing Progress Reports and Goals)
I'm going for 99 smithing, but I need some time off now and then, so if you want to dg with me, just add I_Poo_guam :) As long as you know "ggs" means "drop everything and help me out", I'm happy :P I'm also 99 herblore if you need effigy help. And OT: good luck with the visage :) I don't really see the fun in seeing a different sword doing the same, but slower. But hey, whatever floats your boat :P -
http://thebestpageintheuniverse.net/c.cgi?u=epic But good luck :P How much cash do you have atm? Prayer and herblore will be very expensive...
-
I'd go with C++ and QT. I haven't used it myself, I'm more of a Java (awt/swing) kind of person, but I've heard very good things about it.
-
First off, sorry if this is in the wrong section, I couldn't find where I could post something like this. I'm looking for a blog written the day or 2 days before the latest void quest was released. It talks about how the latest grandmaster quests don't really deserve that title and about how WGS2 should get a completely new rank. It also talks about how high skill requirements don't make a quest a grandmaster quest. Any help would be greatly appreciated. Edit: didn't notice you could use the search function on blogs. This can be closed.
-
I'm level 99 herblore and only made like 300 overloads... I made super attack and super energy all the way. It's way cheaper and if you don't PvM you won't have thousands of useless pots sitting in your bank... Congrats man :)
-
Glad to see somebody using it :) And right now, the negative number is (supposed to be) bigger than the positive number, so on average, cleaning most herbs is actually profitable right now. My first draft had an average cost/xp too, but there were just too many numbers at one point and I had to drop some.
-
I know the cleaning herbs calc is way off, I accidentally switched clean herbs and grimy herbs :( I already fixed the bug, but the admins haven't gotten round to uploading the fix yet. Right now the numbers are just switched... And what do you mean, you're not exactly sure how it works? If it's not really clear, I'll be more than happy to edit it to make it more clear :)
-
I got both rocks in 10 inventories of slayer rings :)
-
I guess that means "tilde" is a North American colloquialism. :shades: A tilde is "~" :)
-
Thank you! I didn't notice it had anything to do with the number of items, I thought the number was too big. Found the error and that part is working now too. I'll just make some minor adjustments, -300 - 300 doesn't really look good... Can I pm you the code when I'm done? All that needs to happen now is getting real numbers for the variables by putting in a few dozen sql queries. Edit: if anyone wants to use it already, don't. Half the numbers are made up.
-
It appears I couldn't use a single line of code from the calculator I made :P I made a new one, but it's still showing some flaws. The biggest flaw is that big number won't show right, but I'm working on it. http://wina2.ugent.be/~ivoos/tipit/herb.php Ideas/suggestions? Should I keep the cost and price like that, or show the average too somewhere? Edit: by big numbers, I mean anything above level 40 :/
-
Ok thanks, that should help me make about 90% of the calculator. I'll just add enough comments to show where the numbers should be gotten from the database. The biggest part of the calculator is downloading and parsing the GE site, that's kind of useless now :P I have nothing better to do right now, so I think it should be done somewhere next week. I was actually thinking of doing something similar for summoning, to keep busy, but this is even better since it'll help others :)
-
Sounds reasonable :) Like I said, it's a pretty crude version that I used to get my herblore up, it's not really designed to be aesthetic or even used by others :P I've been thinking about adding that too, but I mainly made the calculator to practice some Python for school. I haven't really gotten around to looking at how arguments are passed in the html(/cgi?) from the textbox to the python script. I have a week or 2 spare before the new semester starts so I'd be more than happy to add to the calc. Would it be possible to get the (html/cgi) source for one the calculators you use? Mainly because it will save me a lot of googling, but it'd probably be easier to incorporate into the site once it's done and look more like the house-style. Edit: preferably a calc that has a "get stats" button, I'll add a goal level box too with the cost for each potion to get it. Edit2: I also imagine you prefer a database over a text file to store the prices?
-
I've made this calc a while back: http://wina2.ugent.be/~ivoos/cgi-bin/herb.cgi It updates the prices once a day and calculates the gp spent per xp. I forgot restore special potions, and I may add unfinished potions too if people like it :) The update takes a while because it has to get all of the prices from the GE and there is no text-only GE like there is for the highscores, as far as I know of. That only happens once a day though, if it doesn't have to download the prices, it's quite quick. Edit: if you want to use it on the tip.it site, just let me know and I'll add restore spec pots and unfinished potions. I'll also speed it up a bit since I used to be the only one using it and performance wasn't really that important. Just lemme know. Edit2: I know some potions are missing, but if I recall correctly, those are the potions that require untradeable ingredients. Anyway, for all practical purposes, this calc should do. It got me to 99 :)
