Difference between revisions of "Template:ADMINBOT SCRIPT HEADERS"
From SmartBots Developers Docs
Line 4: | Line 4: | ||
// Documentation and help: https://www.mysmartbots.com/dev/docs/AdminBot_for_Groups | // Documentation and help: https://www.mysmartbots.com/dev/docs/AdminBot_for_Groups | ||
////////////////////////////////////////////////////////////////////// | ////////////////////////////////////////////////////////////////////// | ||
− | string SB_VERSION=" | + | string SB_VERSION="2.0"; |
// Setup and startup | // Setup and startup | ||
integer SB_SETUP_SETGROUP=180101; | integer SB_SETUP_SETGROUP=180101; | ||
Line 17: | Line 17: | ||
integer SB_GROUP_EJECT=180107; | integer SB_GROUP_EJECT=180107; | ||
integer SB_AVATAR_GROUP=180114; | integer SB_AVATAR_GROUP=180114; | ||
+ | integer SB_ADJUST_GROUP_ROLE=180120; | ||
+ | integer SB_GET_GROUP_ROLES=180121; | ||
// Group chat | // Group chat | ||
integer SB_CHAT_SAY=180106; | integer SB_CHAT_SAY=180106; | ||
Line 23: | Line 25: | ||
// Notices | // Notices | ||
integer SB_NOTICE_SEND=180109; | integer SB_NOTICE_SEND=180109; | ||
+ | // Sim control | ||
+ | integer SB_SIM_RESTART=180116; | ||
+ | integer SB_SIM_KICK_RESIDENT=180117; | ||
+ | integer SB_SIM_RETURN=180118; | ||
+ | integer SB_SIM_SEND_MESSAGE=180119; | ||
// Misc. commands | // Misc. commands | ||
integer SB_RESET_ADMINBOT=9996660; | integer SB_RESET_ADMINBOT=9996660; | ||
integer SB_SETUP_SETLINK=180110; | integer SB_SETUP_SETLINK=180110; | ||
+ | |||
// EVENTS | // EVENTS | ||
integer SB_COMMAND_FAILED=180201; | integer SB_COMMAND_FAILED=180201; |
Revision as of 22:07, 4 May 2017
//////////////////////////////////////////////////////////////////////
// SmartBots AdminBot for Groups, http://www.mysmartbots.com
// Documentation and help: https://www.mysmartbots.com/dev/docs/AdminBot_for_Groups
//////////////////////////////////////////////////////////////////////
string SB_VERSION="2.0";
// Setup and startup
integer SB_SETUP_SETGROUP=180101;
integer SB_SETUP_SETGROUPUUID=180102;
integer SB_SETUP_DEBUG=180103;
integer SB_STATUS_QUERY=180104;
integer SB_SETUP_DEVICENAME=180111;
integer SB_SETUP_BOTNAME=180112;
integer SB_SETUP_SETOPTIONS=180113;
// Group members control
integer SB_INVITE_SEND=180105;
integer SB_GROUP_EJECT=180107;
integer SB_AVATAR_GROUP=180114;
integer SB_ADJUST_GROUP_ROLE=180120;
integer SB_GET_GROUP_ROLES=180121;
// Group chat
integer SB_CHAT_SAY=180106;
integer SB_CHAT_LISTEN=180108;
integer SB_CHAT_MUTE=180115;
// Notices
integer SB_NOTICE_SEND=180109;
// Sim control
integer SB_SIM_RESTART=180116;
integer SB_SIM_KICK_RESIDENT=180117;
integer SB_SIM_RETURN=180118;
integer SB_SIM_SEND_MESSAGE=180119;
// Misc. commands
integer SB_RESET_ADMINBOT=9996660;
integer SB_SETUP_SETLINK=180110;
// EVENTS
integer SB_COMMAND_FAILED=180201;
integer SB_STATUS_REPLY=180202;
integer SB_CHAT_MESSAGE=180203;
integer SB_SETUP_SUCCESS=180204;
integer SB_SETUP_FAILED=180205;
integer SB_CHAT_SUCCESS=180206;
integer SB_GROUP_CHECKED=180207;