Jump to content

teuneboon

Members
  • Posts

    19
  • Joined

  • Last visited

Reputation

0 Neutral
  1. Going to try this for sure :)
  2. You get Strength Exp from pushing through. Congrats on 60 Cooking. Good to see the Goal sigs and Bank. Gl with the 3.5k Magics :) Thanks for mentioning lol, was almost going to use this method on my 10 hp skiller ^^
  3. Got a little tip: Try training hunter and go to the puro-puro maze to hunt spirit implings, these drop charms without the need of combat :)
  4. Just tried your code on my sheet and it worked fine. I can't imagine browser/OS would make a difference. One thing I would try: make a new sheet (in the same doc) and try to get it working there, without all the other things you have on your current sheet. Just "Dark Bow" and your code. You may need to reload the sheet or something to get it to work, though I hardy ever find that to be the case. I tried it in all different browsers and on windows too. Still can't get it to work. This is just plain weird XD Yeah, very odd. Did you try it on a new sheet like I said above? Yes I did, also tried it on different pcs XD
  5. Just tried your code on my sheet and it worked fine. I can't imagine browser/OS would make a difference. One thing I would try: make a new sheet (in the same doc) and try to get it working there, without all the other things you have on your current sheet. Just "Dark Bow" and your code. You may need to reload the sheet or something to get it to work, though I hardy ever find that to be the case. I tried it in all different browsers and on windows too. Still can't get it to work. This is just plain weird XD
  6. I tried hard, but I just keep getting #Error(Parse Error). This is the code I use: =Index(ImportHtml(Concat("http://itemdb-rs.runescape.com/results.ws?query=",A2), "table", 2),2,3) The spreadsheet is: http://spreadsheets.google.com/ccc?key=0AjhQ7wHYDKCOdE1MazltMXhhbnJ2NF9yQ2ZLSmdMVnc&hl=nl&authkey=CLqMvRY Check column J, the error is there. I used Chrome on Ubuntu to create this, but it should work, since when I view other spreadsheets that use this method it also works. For those who want to know what this is about: it will be my Merchanting Log, the first entry is fake by the way ;)
  7. I recommend you to go to the library and get a basic book then, and find a nice online community where you can ask stuff(phphulp.nl, dutch site for me)
  8. You know how to access all grand exchange prices on the runescape main site? Just click on an item there, and in the adress bar there should be a number at the end of the url, this is the id.
  9. I made a simple php script that uses curl to get the price of a ge item of the runescape site. Just place it on top of a .php file, and then you can call it by using: echo getprice(itemid); You can find the id of an item if you look at it in runescape grand exchange. Like for grain: http://teun.beijers.eu (making it english soon). <?php function getprice($id) { $url = "http://itemdb-rs.runescape.com/viewitem.ws?obj=".$id; $startat = "Market price: "; $stopat = ""; $ch = curl_init(); $timeout = 5; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $start = curl_exec($ch); curl_close($ch); $exploded = explode($startat,$start); $exploded = explode($stopat,$exploded[1]); $result = str_replace(' ','',nl2br($exploded[0])); return $result; } echo getprice(1947);//get grain price ?>
  10. I added some pics now, of my lvl 83 hunter :D EDIT: sorry, didn't notice double-post
  11. I had this idea: there are lot's of user-made shops around in runescape? why not make a site where people can register a shop, manage sales, start auctions, recruit workers etc. With this I mean a non-forum site. I can script everything, but I'm not that good at making lay-outs, can someone help me by making a layout? Contact me on msn: [email protected]
  12. I learned that: -You can kill anyone, they respawn in a noob village anyway. -It has no use to kill a monster, they respawn anyway. -Monsters can carry heavy weapons/armour like a d chain, while you don't see them wearing them or having them in their pockets. -The weather never changes in some places -When you're born you're mature immidiatly -We have no mouths or noses :P
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.