100 lines
No EOL
1.9 KiB
Text
100 lines
No EOL
1.9 KiB
Text
/*
|
|
Global variables for stall board
|
|
*/
|
|
|
|
#define DEVELOPER 0
|
|
|
|
|
|
integer g_iWaitFor = 0;
|
|
key CIRCLE_LOGO = "f063237e-429b-5e02-dbfb-8a2a69535cdc";
|
|
key OFFLINE_TEXTURE = "62f26398-4d32-15fb-38d8-d59e31dd0a86";
|
|
key ONLINE_TEXTURE = "69fdb503-d13b-8b21-98c9-70011db399d3";
|
|
#if DEVELOPER == 0
|
|
key AVAILABLE = "8833aa83-b7f1-5c40-f4e8-fdf6d397ef1b";
|
|
#else
|
|
key AVAILABLE = "8833aa83-b7f1-5c40-f4e8-fdf6d397ef1b";
|
|
#endif
|
|
|
|
key NO_TEXTURE = "a67ed6f6-dca8-4ce4-a338-13ac5f32e9d0";
|
|
|
|
|
|
list g_lAdminTag = ["FFF Stable Mistress", "FFF Stable Master"];
|
|
list g_lManagerTag = ["FFF Trainer", "FFF Senior Trainer"];
|
|
|
|
|
|
|
|
integer LINK_MENU_DISPLAY = 300;
|
|
integer LINK_MENU_REMOVE = 310;
|
|
integer LINK_MENU_RETURN = 320;
|
|
integer LINK_MENU_TIMEOUT = 330;
|
|
|
|
string g_sDate;
|
|
|
|
list MAIN_MENU_BUTTONS = [];
|
|
string MAIN_MENU_TEXT = "";
|
|
string IMPORT_MENU_TEXT = "";
|
|
|
|
key g_kInvLoad;
|
|
key g_kTransferID=NULL_KEY;
|
|
integer g_iTransferTimeout;
|
|
integer g_iHaveKVP = 0;
|
|
integer g_iLastKVPTry;
|
|
|
|
|
|
string HEADER = "Stall Board\n[By Aria's Creations]\nVersion 4.1.081324.2324 (Aug 13, 2024)\n \n";
|
|
|
|
|
|
integer g_iAuthorized;
|
|
key g_kAuthorized;
|
|
|
|
key g_kLeasedTo=NULL_KEY;
|
|
key g_kTexture=NULL_KEY;
|
|
integer g_iExpireAt;
|
|
key g_kOwner=NULL_KEY;
|
|
string g_sPreferredName;
|
|
integer g_iWhiteFrame = FALSE;
|
|
|
|
integer g_iNotification;
|
|
|
|
string g_sName;
|
|
string g_sDisplayName;
|
|
integer g_iOnline;
|
|
|
|
|
|
integer g_iLogo=1;
|
|
vector g_vCustomColorText;
|
|
integer g_iCustomTextColor=FALSE;
|
|
|
|
|
|
|
|
integer g_iProtocol;
|
|
integer g_iFill = 0;
|
|
|
|
string g_sPayload = "";
|
|
|
|
integer g_iNotifFlags; // (may be incompatible!)
|
|
|
|
|
|
string g_sLeasedTo;
|
|
key g_kTransferDest=NULL_KEY;
|
|
|
|
|
|
integer SERVER_CHANNEL = 0x9F1C;
|
|
|
|
integer g_iState;
|
|
|
|
|
|
integer g_iFlags;
|
|
integer g_iPricePerDay;
|
|
|
|
integer g_iBoot;
|
|
integer g_iMask = 1;
|
|
|
|
integer MASK_LOGO = 1;
|
|
integer MASK_CUSTOM_TEXT_COLOR = 2;
|
|
integer MASK_WHITEFRAME = 4;
|
|
|
|
integer STATE_REBOOT_PENDING =1;
|
|
integer STATE_REBOOT_FAST = 2;
|
|
|
|
string g_sTextureSet; |