Gaming
 

Khaos/Configuration template

From WoWWiki

This article is a part of the documentation of the Khaos function library

This is a simple configuration template for copy/paste

if ( Khaos ) then 
	local optionSet = {};
	local commandSet = {};
	local configurationSet = {
		id="MyAddon";
		text=ADDON_SECTION_TEXT;
		helptext=ADDON_SECTION_HELP;
		difficulty=2;
		options=optionSet;
		commands=commandSet;
		default=false;
	}; 
 	table.insert(
		optionSet,
		{
			id="";
			text=
			helptext=
			difficulty=
			callback=
			feedback=
			check=
			type=
			setup= {
			};
			default={
			};
			disabled={
			};				
		}
	);
	Khaos.registerOptionSet("other",configurationSet);
end