TotalControl for LSL/Examples/Header variables

From SmartBots Developers Docs
Jump to: navigation, search

Include these constants to your code to communicate with AdminBot for Bots:

//////////////////////////////////////////////////////////////////////
// SmartBots AdminBot for Bots, http://www.mysmartbots.com
// Documentation and help: https://www.mysmartbots.com/dev/docs/AdminBot_for_Bots
//////////////////////////////////////////////////////////////////////
       
// Setup and startup                         
integer BOT_SETUP_SETBOT            = 280101;
integer BOT_SETUP_SETLINK           = 280102;
integer BOT_SETUP_DEVICENAME        = 280103;
integer BOT_SETUP_SETOPTIONS        = 280104;
integer BOT_SETUP_DEBUG             = 280105;
integer BOT_STATUS_QUERY            = 280106;
                                             
// Bot Status                                
integer BOT_LOGIN                   = 280111;
integer BOT_LOGOUT                  = 280112;
                                             
// 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_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;
                                             
// Misc. commands                            
integer BOT_LISTEN_INVENTORY_OFFER  = 280141;
integer BOT_LISTEN_MONEY_PAYMENTS   = 280142;
integer BOT_LISTEN_DIALOG           = 280143;
integer BOT_LIST_GROUPS             = 280144;
integer BOT_GROUP_JOIN              = 280145;
integer BOT_GROUP_LEAVE             = 280146;
integer BOT_OFFER_FRIENSHIP         = 280147;
integer BOT_TOUCH_OBJECT            = 280148;
integer BOT_ATTACHMENT_OBJECT       = 280149;
integer BOT_GIVE_INVENTORY          = 280150;
integer BOT_GIVE_MONEY              = 280151;
integer BOT_GET_BALANCE             = 280152;
integer BOT_ATTACHMENTS             = 280153;
integer BOT_DIALOG_REPLY            = 280154;
integer BOT_WEAR                    = 280155;
integer BOT_RESET_ADMINBOT          = 9997770;
                                             
// EVENTS                                    
integer BOT_SETUP_SUCCESS           = 280201;
integer BOT_SETUP_FAILED            = 280202;
integer BOT_COMMAND_FAILED          = 280203;
integer BOT_EVENT_LISTEN_LOCAL_CHAT = 280204;
integer BOT_EVENT_LISTEN_IM         = 280205;
integer BOT_EVENT_LISTEN_INVENTORY  = 280206;
integer BOT_EVENT_LISTEN_MONEY      = 280207;
integer BOT_EVENT_LISTEN_SUCCESS    = 280208;
integer BOT_EVENT_STATUS_REPLY      = 280209;
integer BOT_LIST_GROUPS_REPLY       = 280210;
integer BOT_GET_BALANCE_REPLY       = 280211;
integer BOT_EVENT_LISTEN_DIALOG     = 280212;
integer BOT_ATTACHMENTS_REPLY       = 280213;