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.

Hedgehog

Monster Hunting Team Leader
  • Joined

  • Last visited

Everything posted by Hedgehog

  1. Remove the first for loop from your page. Move it to your program.
  2. Then change the value in the url and run the loop in your program. Although, I would prefer to download the data as necessary to reduce the startup time.
  3. Then you only need to handle a certain amount of items at a time. It doesn't make sense to download everything at once.
  4. Why do you need to handle so many items at once?
  5. <?php $dom = new DOMDocument(); $content = file_get_contents('http://www.walmart.com/ip/' . $_GET['id']); @$dom->loadHTML($content); $a = $dom->getElementsByTagName('meta'); for ($i=0; $i < $a->length; $i++) { if ($a->item($i)->getAttribute('itemprop')){ $b = $a->item($i)->getAttribute('content'); $c = $a->item($i)->getAttribute('itemprop'); $json[$c] = $b; } } echo str_replace('\\/', '/', json_encode($json)); ?> yoursite.com/?id=10311410 would echo {"image":"http://i.walmartimages.com/i/p/00/01/60/00/27/0001600027528_300X300.jpg","brand":"Cheerios","manufacturer":"General Mills","model":"27528","productID":"016000275287","availability":"http://schema.org/InStock","price":"3.68","priceCurrency":"USD","seller":"Walmart.com","name":"Cheerios Toasted Whole Grain Oat Cereal, 18 oz","dateModified":"2013-01-02","itemReviewed":"Cheerios Toasted Whole Grain Oat Cereal, 18 oz","datePublished":"2011-05-29"}
  6. http://www.000webhost.com/ Decent enough host. It goes down more often than I would like, but it's the best free host that allows php that I have found. Create a domain. Open the file manager, go to your public_html folder, create default.php. Paste <?php $meta = get_meta_tags("http://www.walmart.com/ip/" . $_GET['id']); $meta = json_encode($meta); echo($meta); ?> into it, and save. Use your program to download yoursite.com/?id=[id of the item] Then use a json parser and ta-da. Edit: Saw your edit. I'll see if I can figure out a solution.
  7. If you wanted to make this really easy, you could use this php script: <?php $meta = get_meta_tags("http://www.walmart.com/ip/" . $_GET['id']); $meta = json_encode($meta); echo($meta); ?> {"title":"Cheerios Toasted Whole Grain Oat Cereal, 18 oz","description":"Cheerios Toasted Whole Grain Oat Cereal - Walmart.com","keywords":"Shop for the Cheerios Toasted Whole Grain Oat Cereal that is available at an every day low price from Walmart.com.","verify-v1":"4kvsU2tt\/Ic9Z39fTPz2rJhJCUvOnYMvHF1z8ypaSvo="} Then download that and parse it using one of the many json parsers. Obviously it'd be slower, but it would solve a lot of your problems.
  8. Correct me if I'm wrong, but I'm fairly certain you still get the combat XP from pure cannon kills. That's what I've noticed when cannoning DBs for example, it's only the slayer XP that's reduced. Unless they changed it, you do not.
  9. Master wand and literally any offhand will work. Even an imphide book is fine–the accuracy is almost meaningless on magic-weak enemies.
  10. You'll get 0 xp from the rats unless you tag them. Please don't tag the rats.
  11. Don't bother trying to make money off of these skills. You're better off picking bananas.
  12. No Kill them in the waterfall dungeon, you can use a cannon. That's the best spot iirc.
  13. I'm not sure why balance is a good thing, anyway.
  14. Arctic pines. Here's the first post-eoc video that I found. http://www.youtube.com/watch?v=hFFCdapLAl4 He's lying about the xp rate, but from the 30 seconds or so I watched, his technique appears right. Basically, just cut them and drop using the action bar. Expect 100k+ xp/hour. Ivy, willows, yews, maples, etc. are all bad ideas.
  15. Not true.
  16. Try adjusting how much memory you allot to the client.
  17. Yes, train slayer. Charms, decent combat xp, effigies, etc. It's the best way to get slayer xp, and slayer xp is nice.
  18. Use it everywhere you can. You shouldn't need a bunyip, uni, or yak for anything.
  19. Hedgehog replied to Defy's topic in Help and Advice
    They're not free if you get them from mtk ffs. At best, they cost the same, and that's if maples are the best use of resources.

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.