Package org.tribot.script.sdk
Class BankPinScreen
- java.lang.Object
-
- org.tribot.script.sdk.BankPinScreen
-
public class BankPinScreen extends java.lang.ObjectUtilities for interacting with the Bank Pin screen.
-
-
Constructor Summary
Constructors Constructor Description BankPinScreen()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleancloseBankPinSettingScreen()Closes the bank pin settings interface.static booleanclosePendingPinMessage()Closes the message interface regarding a pending pin.static booleaninputPin()Inputs the bank pin for the current account as per the Account Manager.static booleaninputPin(java.lang.String pin)Inputs the bank pin.static booleanisBankPinSettingsOpen()Determines if bank pin settings screen is open or not.static booleanisOpen()Determines if the pin screen interface is open and visible.static booleanisPendingPinMessageOpen()Determines if the message regarding a pending pin is open.
-
-
-
Method Detail
-
isOpen
public static boolean isOpen()
Determines if the pin screen interface is open and visible.- Returns:
- True if the pin screen is showing. False otherwise.
-
isPendingPinMessageOpen
public static boolean isPendingPinMessageOpen()
Determines if the message regarding a pending pin is open.- Returns:
- True if the message interface is open and visible. False otherwise.
-
closePendingPinMessage
public static boolean closePendingPinMessage()
Closes the message interface regarding a pending pin.- Returns:
- True if the click happens. False otherwise.
-
inputPin
public static boolean inputPin()
Inputs the bank pin for the current account as per the Account Manager.- Returns:
- True if the pin was passed. False otherwise.
-
inputPin
public static boolean inputPin(java.lang.String pin)
Inputs the bank pin.- Parameters:
pin- The 4 digit pin in string form. Ex: "1234".- Returns:
- True if the pin was passed. False otherwise.
-
isBankPinSettingsOpen
public static boolean isBankPinSettingsOpen()
Determines if bank pin settings screen is open or not.- Returns:
- True if the bank pin setting is open and visible. False otherwise.
-
closeBankPinSettingScreen
public static boolean closeBankPinSettingScreen()
Closes the bank pin settings interface.- Returns:
- True if the click happens. False otherwise.
-
-