Alakazizam Posted August 12, 2023 Share Posted August 12, 2023 I'm working on a part of a muling script that's giving me issues. Basically, the bot offers its cash stack, the mule calculates how much the bot needs to get to a certain point and offers that up, then the bot is supposed to remove it's cash stack from trade but I'm getting hung up on this step. Any help would be appreciated. I am receiving the log message but it hangs up right there and keeps looping "Trying to remove gp" in the log Am I using removeAll() incorrectly? the Coins variable is just a String set to "Coins" if (getTrade().getTheirOffers().contains(Coins) && getTrade().getOurOffers().contains(Coins)) { log("Trying to remove gp"); getTrade().removeAll(Coins); } Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted August 12, 2023 Share Posted August 12, 2023 (edited) Looks fine to me, might be a client issue then. Edited August 12, 2023 by Khaleesi 1 Quote Link to comment Share on other sites More sharing options...
Alakazizam Posted August 12, 2023 Author Share Posted August 12, 2023 17 minutes ago, Khaleesi said: Looks fine to me, might be a client issue then. I wound up just doing a work around where the mule pays a set price for items it's receiving. Not exactly what I was trying to do, but it's close enough lol. Messes with my OCD a bit lol Quote Link to comment Share on other sites More sharing options...
Khaleesi Posted August 12, 2023 Share Posted August 12, 2023 55 minutes ago, Alakazizam said: I wound up just doing a work around where the mule pays a set price for items it's receiving. Not exactly what I was trying to do, but it's close enough lol. Messes with my OCD a bit lol You could always fetch the Widget yourself and interact with it 1 Quote Link to comment Share on other sites More sharing options...
Alakazizam Posted August 12, 2023 Author Share Posted August 12, 2023 53 minutes ago, Khaleesi said: You could always fetch the Widget yourself and interact with it Might play with that, thanks 1 Quote Link to comment Share on other sites More sharing options...