scripts: use ScriptPostFired event for scripts that callback at the end of the script

Uses the ScriptPostFired event that was added with the script inspector dev tool, removing the scripts that can be done with it.
This commit is contained in:
melkypie
2020-03-05 18:17:20 +02:00
committed by Adam
parent 4e66b8397a
commit 172b30dc42
14 changed files with 58 additions and 2083 deletions

View File

@@ -203,4 +203,28 @@ public final class ScriptID
*/
@ScriptArguments(string = 1)
public static final int CLAN_SEND_KICK = 215;
/**
* Builds the items kept on death widget
*/
@ScriptArguments(integer = 4, string = 2)
public static final int DEATH_KEEP_BUILD = 1601;
/**
* Builds the widget that holds all of the players inside a clan chat
*/
@ScriptArguments(integer = 15)
public static final int CLAN_CHAT_CHANNEL_BUILD = 1658;
/**
* Builds the widget for making an offer in Grand Exchange
*/
@ScriptArguments(integer = 15)
public static final int GE_OFFERS_SETUP_BUILD = 779;
/**
* Builds the quest list inside the quest tab that shows each quest's progress
*/
@ScriptArguments(integer = 3)
public static final int QUESTLIST_PROGRESS_LIST_SHOW = 1354;
}