sudoinit6 Posted May 23, 2018 Share Posted May 23, 2018 I know how to inventory.getItem("Lobster").getId() But is there a way to get the id for an item you don't have? Quote Link to comment Share on other sites More sharing options...
Apaec Posted May 23, 2018 Share Posted May 23, 2018 I believe there's a list here: http://www.itemdb.biz/ Quote Link to comment Share on other sites More sharing options...
Night Posted May 23, 2018 Share Posted May 23, 2018 Programatically getting the id from a string is a lot harder than vice versa but there are two main ways I can think of to do it. First is to scrape a site such as the one @Apaec linked, second is to loop the Item Definition cache until you find the string you're looking for (make sure to check that it's not noted or anything). Quote Link to comment Share on other sites More sharing options...
sudoinit6 Posted May 23, 2018 Author Share Posted May 23, 2018 On 5/23/2018 at 6:58 PM, Apaec said: I believe there's a list here: http://www.itemdb.biz/ Expand I am looking for a way for the bot to get the id without the item. The GE api requires the item id for buyItem(int itemId, java.lang.String searchTerm, int price, int quantity) Makes it difficult to buy an item if it does not have one, and the list of items I want to buy is long, so I am trying to loop it. On 5/23/2018 at 6:59 PM, Night said: Programatically getting the id from a string is a lot harder than vice versa but there are two main ways I can think of to do it. First is to scrape a site such as the one @Apaec linked, second is to loop the Item Definition cache until you find the string you're looking for (make sure to check that it's not noted or anything). Expand Thanks! I will look into that. Quote Link to comment Share on other sites More sharing options...
Night Posted May 23, 2018 Share Posted May 23, 2018 On 5/23/2018 at 7:02 PM, sudoinit6 said: I am looking for a way for the bot to get the id without the item. The GE api requires the item id for buyItem(int itemId, java.lang.String searchTerm, int price, int quantity) Makes it difficult to buy an item if it does not have one, and the list of items I want to buy is long, so I am trying to loop it. Thanks! I will look into that. Expand A word to the wise, you don't need to iterate every item in the cache as approximately half are noted. Find the pattern and this will cut down the execution time by roughly 50%. 1 Quote Link to comment Share on other sites More sharing options...
dreameo Posted May 23, 2018 Share Posted May 23, 2018 Here you can use this: https://pastebin.com/5TWTBqNh Usage would be: ItemData.get("Cannonball","ID") You can include another level of cache via map if you want but, the way it's now is fine. Other properties can also be retrieved, check inside the code. 1 Quote Link to comment Share on other sites More sharing options...
sudoinit6 Posted May 24, 2018 Author Share Posted May 24, 2018 On 5/23/2018 at 9:29 PM, dreameo said: Here you can use this: https://pastebin.com/5TWTBqNh Usage would be: ItemData.get("Cannonball","ID") You can include another level of cache via map if you want but, the way it's now is fine. Other properties can also be retrieved, check inside the code. Expand You are a saint, thanks. Quote Link to comment Share on other sites More sharing options...
HeyImJamie Posted May 24, 2018 Share Posted May 24, 2018 On 5/23/2018 at 9:29 PM, dreameo said: Here you can use this: https://pastebin.com/5TWTBqNh Usage would be: ItemData.get("Cannonball","ID") You can include another level of cache via map if you want but, the way it's now is fine. Other properties can also be retrieved, check inside the code. Expand Stealing this Thanks scrubbo x Quote Link to comment Share on other sites More sharing options...
dreameo Posted May 24, 2018 Share Posted May 24, 2018 On 5/24/2018 at 1:25 PM, HeyImJamie said: Stealing this Thanks scrubbo x Expand Meh, at least you got the decency to say that your gonna use it. It's meant to be public anyhow. Quote Link to comment Share on other sites More sharing options...
HeyImJamie Posted May 24, 2018 Share Posted May 24, 2018 On 5/24/2018 at 6:55 PM, dreameo said: Meh, at least you got the decency to say that your gonna use it. It's meant to be public anyhow. Expand It's neat, I had a personal 'price grabber' already but it didn't use JSON, so if I had too many requests it'd struggle. Quote Link to comment Share on other sites More sharing options...
Lemons Posted May 24, 2018 Share Posted May 24, 2018 On 5/23/2018 at 7:05 PM, Night said: A word to the wise, you don't need to iterate every item in the cache as approximately half are noted. Find the pattern and this will cut down the execution time by roughly 50%. Expand Word to the wise: http://wiki.c2.com/?PrematureOptimization 1 Quote Link to comment Share on other sites More sharing options...
dreameo Posted May 25, 2018 Share Posted May 25, 2018 On 5/24/2018 at 11:41 PM, Lemons said: Word to the wise: http://wiki.c2.com/?PrematureOptimization Expand Quote Link to comment Share on other sites More sharing options...
Canidae Posted May 25, 2018 Share Posted May 25, 2018 Instead of caching every item ID you need to know, you could also use this snippet made by @Explv. https://osbot.org/forum/topic/102611-ge-data-get-price-etc-by-item-name-no-external-libraries-required/ Quote Link to comment Share on other sites More sharing options...