Difference between revisions of "Template:TOTALCONTROL SCRIPT HEADERS"
From SmartBots Developers Docs
Line 6: | Line 6: | ||
// Setup and startup // | // Setup and startup // | ||
integer BOT_SETUP_SETBOT = 280101; // | integer BOT_SETUP_SETBOT = 280101; // | ||
− | |||
− | |||
− | |||
− | |||
integer BOT_STATUS_QUERY = 280106; // | integer BOT_STATUS_QUERY = 280106; // | ||
+ | integer BOT_RESET_ADMINBOT = 9997770; // | ||
// | // | ||
// Bot Status // | // Bot Status // | ||
integer BOT_LOGIN = 280111; // | integer BOT_LOGIN = 280111; // | ||
integer BOT_LOGOUT = 280112; // | integer BOT_LOGOUT = 280112; // | ||
+ | // | ||
+ | // Device Settings // | ||
+ | integer BOT_SETUP_SETOPTIONS = 280104; // | ||
+ | integer BOT_SETUP_DEVICENAME = 280103; // | ||
+ | integer BOT_SETUP_DEBUG = 280105; // | ||
+ | integer BOT_SETUP_SETLINK = 280102; // | ||
// | // | ||
// Communication commands // | // Communication commands // | ||
Line 21: | Line 24: | ||
integer BOT_SAY_GROUP_CHAT = 280123; // | integer BOT_SAY_GROUP_CHAT = 280123; // | ||
integer BOT_SEND_NOTICE = 280124; // | integer BOT_SEND_NOTICE = 280124; // | ||
+ | integer BOT_OFFER_TELEPORT = 290226; // | ||
integer BOT_LISTEN_LOCAL_CHAT = 280125; // | integer BOT_LISTEN_LOCAL_CHAT = 280125; // | ||
integer BOT_LISTEN_IM = 280126; // | integer BOT_LISTEN_IM = 280126; // | ||
Line 30: | Line 34: | ||
integer BOT_FLY = 280134; // | integer BOT_FLY = 280134; // | ||
integer BOT_SIT = 290214; // | integer BOT_SIT = 290214; // | ||
− | integer BOT_STAND | + | integer BOT_STAND = 290217; // |
// | // | ||
− | // | + | // Group Management // |
− | + | ||
− | + | ||
− | + | ||
integer BOT_LIST_GROUPS = 280144; // | integer BOT_LIST_GROUPS = 280144; // | ||
− | integer BOT_LIST_GROUP_ROLES | + | integer BOT_LIST_GROUP_ROLES = 290227; // |
− | + | ||
integer BOT_GROUP_JOIN = 280145; // | integer BOT_GROUP_JOIN = 280145; // | ||
integer BOT_GROUP_LEAVE = 280146; // | integer BOT_GROUP_LEAVE = 280146; // | ||
+ | integer BOT_ACTIVATE_GROUP = 290215; // | ||
+ | integer BOT_GROUP_SET_ROLE = 290228; // | ||
+ | integer BOT_GROUP_INVITE = 280156; // | ||
+ | integer BOT_GROUP_EJECT = 280157; // | ||
+ | integer BOT_SELECT_GROUP_TAG = 290216; // | ||
+ | // | ||
+ | // Friendship // | ||
integer BOT_OFFER_FRIENDSHIP = 280147; // | integer BOT_OFFER_FRIENDSHIP = 280147; // | ||
− | |||
integer BOT_UNFRIEND = 280160; // | integer BOT_UNFRIEND = 280160; // | ||
− | integer | + | integer BOT_FRIENDSHIP_CAN_EDIT = 290229; // |
− | integer | + | integer BOT_FRIENDSHIP_SEE_ONLINE = 290230; // |
+ | integer BOT_FRIENDSHIP_SEE_ON_MAP = 290231; // | ||
+ | // | ||
+ | // Money and Inventory // | ||
+ | integer BOT_LISTEN_INVENTORY_OFFER = 280141; // | ||
+ | integer BOT_LISTEN_MONEY_PAYMENTS = 280142; // | ||
integer BOT_GIVE_INVENTORY = 280150; // | integer BOT_GIVE_INVENTORY = 280150; // | ||
integer BOT_GIVE_MONEY = 280151; // | integer BOT_GIVE_MONEY = 280151; // | ||
− | integer BOT_GIVE_MONEY_OBJECT | + | integer BOT_GIVE_MONEY_OBJECT = 290225; // |
integer BOT_GET_BALANCE = 280152; // | integer BOT_GET_BALANCE = 280152; // | ||
− | + | // | |
− | + | // Bot Appearance // | |
integer BOT_WEAR = 280155; // | integer BOT_WEAR = 280155; // | ||
− | |||
integer BOT_TAKEOFF = 290223; // | integer BOT_TAKEOFF = 290223; // | ||
− | integer | + | integer BOT_REBAKE = 290222; // |
− | integer | + | integer BOT_ATTACHMENTS = 280153; // |
− | + | // | |
− | + | // Sim Management // | |
integer BOT_SIM_RESTART_START = 280158; // | integer BOT_SIM_RESTART_START = 280158; // | ||
integer BOT_SIM_RESTART_STOP = 280159; // | integer BOT_SIM_RESTART_STOP = 280159; // | ||
− | integer BOT_SIM_SEND_MESSAGE | + | integer BOT_SIM_SEND_MESSAGE = 290218; // |
− | integer BOT_SIM_KICK | + | integer BOT_SIM_KICK = 290219; // |
− | integer BOT_SIM_ACCESS | + | integer BOT_SIM_ACCESS = 290220; // |
− | integer BOT_SIM_ACCESS_ALL_ESTATES = 290221; | + | integer BOT_SIM_ACCESS_ALL_ESTATES = 290221; // |
− | + | ||
// | // | ||
− | // | + | // Misc. commands // |
− | integer | + | integer BOT_LISTEN_DIALOG = 280143; // |
− | integer | + | integer BOT_TOUCH_OBJECT = 280148; // |
− | integer | + | integer BOT_ATTACHMENT_OBJECT = 280149; // |
− | + | integer BOT_DIALOG_REPLY = 280154; // | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | integer | + | |
− | + | ||
− | + | ||
− | + | ||
// | // | ||
////////////////////////////////////////////////// | ////////////////////////////////////////////////// | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 05:53, 5 March 2019
/////////// SMARTBOTS TOTALCONTROL ///////////////
// Library docs: //
// mysmartbots.com/dev/docs/TotalControl //
//
// Setup and startup //
integer BOT_SETUP_SETBOT = 280101; //
integer BOT_STATUS_QUERY = 280106; //
integer BOT_RESET_ADMINBOT = 9997770; //
//
// Bot Status //
integer BOT_LOGIN = 280111; //
integer BOT_LOGOUT = 280112; //
//
// Device Settings //
integer BOT_SETUP_SETOPTIONS = 280104; //
integer BOT_SETUP_DEVICENAME = 280103; //
integer BOT_SETUP_DEBUG = 280105; //
integer BOT_SETUP_SETLINK = 280102; //
//
// Communication commands //
integer BOT_SAY_CHAT = 280121; //
integer BOT_INSTANT_MESSAGE = 280122; //
integer BOT_SAY_GROUP_CHAT = 280123; //
integer BOT_SEND_NOTICE = 280124; //
integer BOT_OFFER_TELEPORT = 290226; //
integer BOT_LISTEN_LOCAL_CHAT = 280125; //
integer BOT_LISTEN_IM = 280126; //
//
// Movement //
integer BOT_WALK = 280131; //
integer BOT_WALKTO = 280132; //
integer BOT_TELEPORT = 280133; //
integer BOT_FLY = 280134; //
integer BOT_SIT = 290214; //
integer BOT_STAND = 290217; //
//
// Group Management //
integer BOT_LIST_GROUPS = 280144; //
integer BOT_LIST_GROUP_ROLES = 290227; //
integer BOT_GROUP_JOIN = 280145; //
integer BOT_GROUP_LEAVE = 280146; //
integer BOT_ACTIVATE_GROUP = 290215; //
integer BOT_GROUP_SET_ROLE = 290228; //
integer BOT_GROUP_INVITE = 280156; //
integer BOT_GROUP_EJECT = 280157; //
integer BOT_SELECT_GROUP_TAG = 290216; //
//
// Friendship //
integer BOT_OFFER_FRIENDSHIP = 280147; //
integer BOT_UNFRIEND = 280160; //
integer BOT_FRIENDSHIP_CAN_EDIT = 290229; //
integer BOT_FRIENDSHIP_SEE_ONLINE = 290230; //
integer BOT_FRIENDSHIP_SEE_ON_MAP = 290231; //
//
// Money and Inventory //
integer BOT_LISTEN_INVENTORY_OFFER = 280141; //
integer BOT_LISTEN_MONEY_PAYMENTS = 280142; //
integer BOT_GIVE_INVENTORY = 280150; //
integer BOT_GIVE_MONEY = 280151; //
integer BOT_GIVE_MONEY_OBJECT = 290225; //
integer BOT_GET_BALANCE = 280152; //
//
// Bot Appearance //
integer BOT_WEAR = 280155; //
integer BOT_TAKEOFF = 290223; //
integer BOT_REBAKE = 290222; //
integer BOT_ATTACHMENTS = 280153; //
//
// Sim Management //
integer BOT_SIM_RESTART_START = 280158; //
integer BOT_SIM_RESTART_STOP = 280159; //
integer BOT_SIM_SEND_MESSAGE = 290218; //
integer BOT_SIM_KICK = 290219; //
integer BOT_SIM_ACCESS = 290220; //
integer BOT_SIM_ACCESS_ALL_ESTATES = 290221; //
//
// Misc. commands //
integer BOT_LISTEN_DIALOG = 280143; //
integer BOT_TOUCH_OBJECT = 280148; //
integer BOT_ATTACHMENT_OBJECT = 280149; //
integer BOT_DIALOG_REPLY = 280154; //
//
//////////////////////////////////////////////////