BananaTown Posted February 10, 2023 Posted February 10, 2023 i'd like to figure out how to create a buy order for the first result in the GE based off ONLY the name. Currently, to my knowledge you have to provide a item ID to osbot's GE API. I'd like to buy items indiscriminately of the item ID. if it helps anyone understand i'd like my end result code to look like this grandExchange.buyItem(ItemName, ItemPrice, ItemQuant);
Gunman Posted February 10, 2023 Posted February 10, 2023 You'll have to recreate the method using the ge api and widget api 1
Czar Posted February 10, 2023 Posted February 10, 2023 There's a temp workaround that I use sometimes, using RSItemDefinition you could find the item id via name and pass the id through the GE Api 1
BananaTown Posted February 10, 2023 Author Posted February 10, 2023 15 hours ago, Gunman said: You'll have to recreate the method using the ge api and widget api yeah that's what I started doing right after posting ty 7 hours ago, Czar said: There's a temp workaround that I use sometimes, using RSItemDefinition you could find the item id via name and pass the id through the GE Api Was also thinking about that, will probably end up doing that cus it seems less ghetto than my current solution.