Jump to content

Parsa

Members
  • Posts

    35
  • Joined

  • Last visited

Reputation

0 Neutral

Profile Information

  • Gender
    Not Telling
  • Location
    Germany

RuneScape Information

  • RuneScape Status
    Retired
  1. I know this may sound rather bizarre and I have made a thread about this before, but could you please delete this forum account. I accsidentally used my real name as my forum username and would like to see this account removed for personal privacy reasons. It may sound strange, but I have asked multipule times for this to happen, but to no avail. I have been a regular and loyal tip.it user mainly because of its large, freindly and outspoken community; as you can see this account was made many years ago. Thank you for your time :grin:
  2. simply make a new one. Please delete my account, i do not want to be found through my real name on this forum. Why use your real name for anything on the internet? -.- I realise my mistake, now if it isn't too much to ask please delete my account. I do not want to be rude but this action is very important to me.
  3. simply make a new one. Please delete my account, i do not want to be found through my real name on this forum.
  4. I was wondering if it was possible for you to change my forum username. If this is not possible please delete my account. Thanks a lot for your time.
  5. Very good, once you read half of it you get sort of addicted and you cant stop...
  6. Although I like running and I regulaly do so I find cycling much better.
  7. Buying a new optical drive isn't as bad as it seems, as long as you know what your doing. (or pay to get somebody else to do it for you)
  8. My desk is very hard to use, i think my desk is a good 20 years old too, keep thinking it will break and my computer will crash through...
  9. Some people from zybez. They are having events to celebrate.
  10. I used to be crazy about taking screenshots. Now they are lost within the sea of files on my computer >.<
  11. I usually like to use Deamon tools (or power iso) to "upload" the disk, then run it through Deamon tools so the computer treats it like a CD. That way it cant get scratched or lost =D>
  12. Price manipulation is only wrong because of the runescape trade limit which doesnt allow people to trade for the price they want, but the manipulated price. Otherwise i really cannot understand why its wrong, if somebody can outsmart the rest then he should do it. If somebody is too stupid to check prices and graphs on grand exchange db then he deserves to be ripped off.
  13. You had a silly mistake in your code, thought I would clean that up. :thumbsup: <?php $curlh = curl_init(); curl_setopt($curlh, CURLOPT_URL, 'http://itemdb-rs.runescape.com/viewitem.ws?obj=' . $_GET['id']); curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true); $src = curl_exec($curlh); curl_close($curlh); $item = array(); ereg('Minimum price: ([0-9\.km,]+)', $src, $item['min']); ereg('Market price: ([0-9\.km,]+)', $src, $item['mark']); ereg('Maximum price: ([0-9\.km,]+)', $src, $item['max']); echo ' Minumim: ' . $item['min'][1] . ' Market: ' . $item['mark'][1] . ' Maximum: ' . $item['max'][1] . ' '; ?> EDIT: Thank you very much for your help.
  14. Been puzzling over this for a while now, i have managed to connect to the hiscores using PHP cURL functions but i cant quite do the same to g.e. PS although i managed to connect to hiscores using cURL i am really bad at cURL and need much more practise. The piece of information i am looking for in the source code: Current market price range: Minimum price: 3 Market price: 4 Maximum price: 5 Taken from the page: http://itemdb-rs.runescape.com/viewitem.ws?obj=9004 Not quite sure how to go about getting that data and turning it into a variable.
×
×
  • Create New...

Important Information

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