mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-19 15:06:20 +00:00
64 lines
2.9 KiB
TypeScript
64 lines
2.9 KiB
TypeScript
export class WiredActionLayoutCode
|
|
{
|
|
public static TOGGLE_FURNI_STATE: number = 0;
|
|
public static RESET: number = 1;
|
|
public static SET_FURNI_STATE: number = 3;
|
|
public static MOVE_FURNI: number = 4;
|
|
public static GIVE_SCORE: number = 6;
|
|
public static CHAT: number = 7;
|
|
public static TELEPORT: number = 8;
|
|
public static JOIN_TEAM: number = 9;
|
|
public static LEAVE_TEAM: number = 10;
|
|
public static CHASE: number = 11;
|
|
public static FLEE: number = 12;
|
|
public static MOVE_AND_ROTATE_FURNI: number = 13;
|
|
public static GIVE_SCORE_TO_PREDEFINED_TEAM: number = 14;
|
|
public static TOGGLE_TO_RANDOM_STATE: number = 15;
|
|
public static MOVE_FURNI_TO: number = 16;
|
|
public static GIVE_REWARD: number = 17;
|
|
public static CALL_ANOTHER_STACK: number = 18;
|
|
public static KICK_FROM_ROOM: number = 19;
|
|
public static MUTE_USER: number = 20;
|
|
public static BOT_TELEPORT: number = 21;
|
|
public static BOT_MOVE: number = 22;
|
|
public static BOT_TALK: number = 23;
|
|
public static BOT_GIVE_HAND_ITEM: number = 24;
|
|
public static BOT_FOLLOW_AVATAR: number = 25;
|
|
public static BOT_CHANGE_FIGURE: number = 26;
|
|
public static BOT_TALK_DIRECT_TO_AVTR: number = 27;
|
|
public static FURNI_AREA_SELECTOR: number = 28;
|
|
public static FURNI_NEIGHBORHOOD_SELECTOR: number = 29;
|
|
public static FURNI_BYTYPE_SELECTOR: number = 30;
|
|
public static USERS_AREA_SELECTOR: number = 31;
|
|
public static USERS_NEIGHBORHOOD_SELECTOR: number = 32;
|
|
public static SEND_SIGNAL: number = 33;
|
|
public static FREEZE: number = 34;
|
|
public static UNFREEZE: number = 35;
|
|
public static FURNI_TO_USER: number = 36;
|
|
public static USER_TO_FURNI: number = 37;
|
|
public static FURNI_TO_FURNI: number = 38;
|
|
public static SET_ALTITUDE: number = 39;
|
|
public static RELATIVE_MOVE: number = 40;
|
|
public static CONTROL_CLOCK: number = 41;
|
|
public static ADJUST_CLOCK: number = 42;
|
|
public static MOVE_ROTATE_USER: number = 43;
|
|
public static FURNI_ALTITUDE_SELECTOR: number = 44;
|
|
public static FURNI_ON_FURNI_SELECTOR: number = 45;
|
|
public static FURNI_PICKS_SELECTOR: number = 46;
|
|
public static FURNI_SIGNAL_SELECTOR: number = 47;
|
|
public static USERS_SIGNAL_SELECTOR: number = 48;
|
|
public static USERS_BY_TYPE_SELECTOR: number = 49;
|
|
public static USERS_TEAM_SELECTOR: number = 50;
|
|
public static USERS_BY_ACTION_SELECTOR: number = 51;
|
|
public static USERS_BY_NAME_SELECTOR: number = 52;
|
|
public static USERS_ON_FURNI_SELECTOR: number = 53;
|
|
public static USERS_GROUP_SELECTOR: number = 54;
|
|
public static USERS_HANDITEM_SELECTOR: number = 55;
|
|
public static FILTER_FURNI_EXTRA: number = 56;
|
|
public static FILTER_USER_EXTRA: number = 57;
|
|
public static MOVE_CARRY_USERS_EXTRA: number = 58;
|
|
public static MOVE_NO_ANIMATION_EXTRA: number = 59;
|
|
public static ANIMATION_TIME_EXTRA: number = 60;
|
|
public static MOVE_PHYSICS_EXTRA: number = 61;
|
|
}
|