Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
{ /* Required options */ optionId: 'unique_id', optionName: "Option Name", optionDescription: "Option Description", optionType: <FormType>, getActualSet: async ({guild,user}) => { return <FormTypeValueType>; }, setNew: async ({guild,user,newData}) => { return <FormTypeValueType>; }, /* Optional options */ allowedCheck: async ({guild,user}) => { if(guild.id == "123456789876")return {allowed: false, errorMessage: 'You cannot use this option - guild is blacklisted for it.'}; if(user.id == "123456789876")return {allowed: false, errorMessage: 'You cannot use this option - user is blacklisted for.'}; return {allowed: true, errorMessage: null}; } }
Was this page helpful?