screenshot: Capture collection log popup notifications

This commit is contained in:
superiorser9
2021-08-11 14:58:44 +01:00
committed by Jordan Atwood
parent 4bfd020b2a
commit 8345f6c7bd
5 changed files with 99 additions and 3 deletions

View File

@@ -367,4 +367,18 @@ public final class ScriptID
@ScriptArguments(integer = 6)
public static final int COLLECTION_DRAW_LIST = 2730;
/**
* Draws the active notification in increasing sizes (increasing horizontally first, then vertically) to show a
* starting animation.
*/
@ScriptArguments(integer = 3)
public static final int NOTIFICATION_START = 3346;
/**
* Draws the active notification in full size for a specified number of client ticks. In essence, delayed between
* the open and close animations.
*/
@ScriptArguments(integer = 1)
public static final int NOTIFICATION_DELAY = 3347;
}

View File

@@ -41,7 +41,9 @@ public enum VarClientStr
CHATBOX_TYPED_TEXT(335),
INPUT_TEXT(359),
PRIVATE_MESSAGE_TARGET(360),
RECENT_FRIENDS_CHAT(362);
RECENT_FRIENDS_CHAT(362),
NOTIFICATION_TOP_TEXT(387),
NOTIFICATION_BOTTOM_TEXT(388);
private final int index;
}

View File

@@ -607,7 +607,17 @@ public enum Varbits
*
* @see <a href="https://oldschool.runescape.wiki/w/Minimap#Special_attack_orb">The OSRS Wiki's Minimap page</a>
*/
PVP_SPEC_ORB(8121);
PVP_SPEC_ORB(8121),
/**
* Collection Log notification settings whenever a new item is added
*
* 0 = no notification
* 1 = chat notification only
* 2 = popup notification only
* 3 = chat and popup
*/
COLLECTION_LOG_NOTIFICATION(11959);
/**
* The raw varbit ID.