cache: add get_inventory_size instruction 3304

This commit is contained in:
Adam
2017-08-06 17:09:59 -04:00
parent 72e1df2a10
commit cc52cd7ce3
2 changed files with 2 additions and 1 deletions

View File

@@ -261,7 +261,7 @@ public class Instructions
add(3301, 2, 0);
add(3302, 2, 1);
add(3303, 2, 1);
add(3304, 1, 1);
add(Opcodes.GET_INVENTORY_SIZE, "get_inventory_size", 1, 1);
add(Opcodes.GET_BOOSTEDSKILLLEVELS, "get_boostedskilllevels", 1, 1);
add(Opcodes.GET_REALSKILLLEVELS, "get_realskilllevels", 1, 1);
add(Opcodes.GET_SKILLEXPERIENCES, "get_skillexperiences", 1, 1);

View File

@@ -119,6 +119,7 @@ public class Opcodes
public static final int WIDGET_GET_NAME_WIDGET = WIDGET_GET_NAME + 1000;
public static final int SEND_GAME_MESSAGE = 3100;
public static final int GET_GAMECYCLE = 3300;
public static final int GET_INVENTORY_SIZE = 3304;
public static final int GET_BOOSTEDSKILLLEVELS = 3305;
public static final int GET_REALSKILLLEVELS = 3306;
public static final int GET_SKILLEXPERIENCES = 3307;