Add DMM name drawing opcodes to cache

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-03-29 23:12:17 +02:00
committed by Adam
parent 52129598e5
commit 01f2532b1c
2 changed files with 10 additions and 0 deletions

View File

@@ -300,6 +300,11 @@ public class Instructions
add(ITEM_PRICE, "item_price", 1, 0);
add(SEND_BUG_REPORT, "send_bug_report", 1, 0, 2, 0);
add(SET_SHIFT_DROP_ENABLED, "set_shift_drop_enabled", 1, 0);
add(SET_DRAW_FRIEND_NAME, "set_draw_friend_name", 1, 0);
add(SET_DRAW_CLAN_NAME, "set_draw_clan_name", 1, 0);
add(SET_DRAW_ALL_EXCEPT_OWN_NAME, "set_draw_all_except_own_name", 1, 0);
add(SET_DRAW_OWN_NAME, "set_draw_own_name", 1, 0);
add(SET_DRAW_NO_NAMES, "set_draw_no_names", 1, 0);
// 3200-3300
add(PLAY_SOUND_EFFECT, "play_sound_effect", 3, 0);
add(3201, 1, 0);

View File

@@ -238,6 +238,11 @@ public class Opcodes
public static final int ITEM_PRICE = 3115;
public static final int SEND_BUG_REPORT = 3116;
public static final int SET_SHIFT_DROP_ENABLED = 3117;
public static final int SET_DRAW_FRIEND_NAME = 3120;
public static final int SET_DRAW_CLAN_NAME = 3121;
public static final int SET_DRAW_ALL_EXCEPT_OWN_NAME = 3122;
public static final int SET_DRAW_OWN_NAME = 3123;
public static final int SET_DRAW_NO_NAMES = 3124;
public static final int PLAY_SOUND_EFFECT = 3200;
public static final int GET_GAMECYCLE = 3300;
public static final int GET_ITEMCONTAINER_ITEMID = 3301;