We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0189ec + 998b602 commit 9f017e7Copy full SHA for 9f017e7
osrs/interfaces/mainscreen/grandexchange/grandexchange_history.simba
@@ -204,6 +204,25 @@ begin
204
Result := Self.WaitOpen(2000);
205
end;
206
207
+(*
208
+## GrandExchangeHistory.Back
209
+```pascal
210
+function TRSGrandExchangeHistory.Back(): Boolean;
211
+```
212
+Attempts to click the back button: to return to the main Grand Exchange interface, returns `True` on success.
213
+
214
+Example:
215
216
+WriteLn GrandExchangeHistory.Back();
217
218
+*)
219
220
+begin
221
+ if not Self.IsOpen() then Exit;
222
+ Mouse.Click(Self.ExchangeButton, EMouseButton.LEFT);
223
+ Result := GrandExchange.WaitOpen(2000);
224
+end;
225
226
var
227
(*
228
## GrandExchangeHistory variable
0 commit comments