September 22, 20187 yr When I attempt to interact with another player and respond to a trade request, interacting with "Trade with" silently stops my script (Player messages stop being logged). It will also not start a trade. Player tradedPlayer = getTrade().getLastRequestingPlayer(); if (tradedPlayer != null) { if (tradedPlayer.interact("Trade with")) { log("Trade initiated"); } else { log("Trade failed"); } } If I change the interaction to "Trade", then the interaction will fail. What am I doing wrong?
September 22, 20187 yr Osbot hooks are broken, because of the new osrs update, stay tuned for fixes. And you should use "Trade with" rather than just "Trade".
September 22, 20187 yr 1 hour ago, smy said: Osbot hooks are broken, because of the new osrs update, stay tuned for fixes. And you should use "Trade with" rather than just "Trade". They are fixed as of now 2 hours ago, gerudolock said: When I attempt to interact with another player and respond to a trade request, interacting with "Trade with" silently stops my script (Player messages stop being logged). It will also not start a trade. Player tradedPlayer = getTrade().getLastRequestingPlayer(); if (tradedPlayer != null) { if (tradedPlayer.interact("Trade with")) { log("Trade initiated"); } else { log("Trade failed"); } } If I change the interaction to "Trade", then the interaction will fail. What am I doing wrong? You should consider looking at the logger and see what is wrong.
September 23, 20187 yr Author 17 hours ago, feggit said: They are fixed as of now You should consider looking at the logger and see what is wrong. The logger doesn't show any errors. It just stops outputting entirely. Problem is fixed now that the osboot hooks have been updated.
Create an account or sign in to comment