Warning: Declaration of action_plugin_tablewidth::register(&$controller) should be compatible with DokuWiki_Action_Plugin::register(Doku_Event_Handler $controller) in /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/lib/plugins/tablewidth/action.php on line 0

Warning: Declaration of action_plugin_prettytables::register(Doku_Event_Handler &$controller) should be compatible with DokuWiki_Action_Plugin::register(Doku_Event_Handler $controller) in /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/lib/plugins/prettytables/action.php on line 0

Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/lib/plugins/tablewidth/action.php:0) in /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/inc/auth.php on line 427

Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/lib/plugins/tablewidth/action.php:0) in /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/inc/Action/Export.php on line 103

Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/lib/plugins/tablewidth/action.php:0) in /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/inc/Action/Export.php on line 103

Warning: Cannot modify header information - headers already sent by (output started at /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/lib/plugins/tablewidth/action.php:0) in /var/www/vhosts/hosting125175.a2fe2.netcup.net/sites/rcraft_eu/pluginwiki/inc/Action/Export.php on line 103
====== Kit - Creating Kits ====== === kits.yml (created on first start) === \\ **Extended example:** mykitname: items: examplesword: id: DIAMOND_SWORD data: 0 amount: 1 enchantments: - DAMAGE_ARTHROPODS,2 - KNOCKBACK,1 - FIRE_ASPECT,1 lore: - '&0This makes a colored text' - '&1This is colored too' - 'This is uncolored' - 'Recipient its name is (player)' name: '&1(player)''s Swordname' slot: inventory unbreakable: true orangewool: id: WOOL data: 1 amount: 10 slot: inventory magentawool: id: WOOL data: 2 amount: 10 slot: inventory myhelmet: id: LEATHER_HELMET amount: 1 slot: helmet color: 51 255 204 commands: - say That triggered a say command - tell (player) Hi, I am the console. removeeffects: true effects: - FIRE_RESISTANCE,10,2 - FAST_DIGGING,10,1 givemoney: 20 givexp: 50 givelevels: 10 usages: 0 clearinv: true cleararmor: true cooldown: 10 price: 0 message: '&1Enjoy it ;)' #Books are only available in version 7.3 or higher! books: starterbook: title: '&eStarterbook' author: '&d&orecon' page: 1: "&cThis is a colored text displayed on the first page" 2: "Awesome second page content!" \\ **Simple example:** simpletkitname: items: coloredwool: id: WOOL data: 3 amount: 10 slot: inventory helmetlether: id: LEATHER_HELMETET amount: 1 slot: helmet cooldown: 10 message: '&1Enjoy it ;)' \\ === How to make kits === Kits are defined in this format: [kitname]: items: [identifier - any string] id: [exact item name - see below for info] data: [data value - for wool/potions/etc] amount: [any integer] color: [any rgb color] enchantments: - [exact enchant name - see below for info, Level] lore: - '[any string]' name: - '[any string]' slot: [helmet, chestplate, leggings, boots, inventory] commands: - [your commands string here - no "/" required] removeeffects: [true or false] effects: - [exact effect name - see below for info, Duration(seconds), strength] givemoney: [any floating-point number] givexp: [any integer] givelevels: [any integer] usages: [-2, -1, 0, 1 or more] clearinv: [true or false] clearamor: [true or false] cooldown: [cooldown in seconds] price: [price as floating-point number] message: '[any string]' books: [indentifier - any string] title: [any string] author: [any string] pages: 1: [any string] 2: [any string] #You can define as many pages as you want here. Just keep incresing the numbers. \\ **IMPORTANT:** The kits config is using Bukkit's yaml parser. That means you can't use TAB indentation and you have to use spaces (see example). \\ Also if you don't set an attribute, it will use its default value and/or just ignores it.\\ Make sure that you don't use IDs (numbers) for Items, Enchantmens and Status Effects. Only use exact names! SEE BELOW! \\ === Exact Item/Enchant/Effect Names === Why names? IDs will be removed from minecraft in the future. Probably in MC1.8.\\ If you are using KitPlugin v7.0 or higher, you have to use the item names. \\ **A full list of all names can be found in your KitPlugin folder! There are 3 files.** \\ \\ === Available config attributes=== ^attribute^description^possible^default^ |items|This is where you put all your items IDs in (surrounded by ' '). See example above.|item ids|none| |identifier|This is a string you have to put right above every item section. That allows you to use the same item ID multiple times.|any string|none| |id|Put in the exact item NAME (not ID) here (data value belongs to data - for wool/potions/etc) See below the table.|any item name|0| |data|This can be used for data values (e.g. wool, potions, etc)|any data id|0| |amount|The amount of the item|any integer|0| |unbreakable|Makes the item unbreakable if set to true|true/false|false| |color|Only works for leather armor. Requires a RGB color String. Scroll down for detailed explanation.|any rgb color|none| |enchantments|Define the enchantments for the item here. Format: exact name,Level|any enchant name|none| |lore|Here you can set an item desciption (colors supported - see below). Has to be surrounded with ' '|any string|none| |name|Define an item name here if you want.|any string|none| |slot|Here you can define the slot for the item (helmet,chestplate,leggings,boots,inventory)|see description|inventory| |commands|Here you can list commands which are being executed after requesting a kit. (player) represents the name of the player who is getting the kit. See example above.Note: This are console commands! Players don't need the permissions for the commands.|strings|none| |removeeffects|If true, this removes all effects on the player when requesting the kit|true or false|false |effects|Potion effects that are directly applied to the player. Format: exact name,Duration,Strength|any effect name|none |givemoney|Give money to the user who is requesting the kit (requires Vault + Economy plugin).|any floating-point number|0.0| |givexp|Give experience points to the kit requester.|any integer|0| |givelevels|Give full experience levels to the kit requester.|any integer|0| |usages|Defines how often a player can request this kit. -2 = deathkit; -1 = starterkit; 0 = infinite; 1 = only once; 2 or higher = limited to the given number |-2, -1, 0, 1 or higher|0| |cooldown|Here you can set a cooldown (in seconds) if you want.|any integer|0| |clearinv|Set this to true if you want the player's inventory to be cleared out before sending the kit.|true or false|false| |cleararmor|Set this to true if you want the player's armor to be cleared out before sending the kit.|true or false|false| |price|If you got Vault + Economy plugin installed, you can set a price here.|any floating-point number|0.0 |message|Here you can specify a custom message for this kit. The default message from config.yml will be used if you leave that empty or remove the "message:" field. Colors are possible: See color codes. Has to be surrounded with ' '|any string|nothing| |books|This is wher you put all your books||none| |books - indetifier|This is a string you have to put right above every book section. It's just for internal usage.|any string|none| |books - title|The title/displayname of the book. With color support.|any string|none| |books - author|The author of the book. With color support.|any string|none| |books - pages - number|You can define as many pages as you want here|any number|none| |books - pages - number - string|Set the page content here. With color Support|any string|none| \\ \\ === Color IDs === ^ID^Color^ |&0|Black| |&1|Dark Blue| |&2|Dark Green| |&3|Dark Aqua| |&4|Dark Red| |&5|Dark Purple| |&6|Gold| |&7|Gray| |&8|Dark Gray| |&9|Blue| |&a|Green| |&b|Aqua| |&c|Red| |&d|Light Purple| |&e|Yellow| |&f|White| |&k|Magic/Obfuscated| |&l|Bold| |&m|Strikethrough| |&n|Underline| |&o|Italic| |&r|Reset Color| \\ === Armor Colors === Get your RGB colors here: https://www.w3schools.com/colors/colors_rgb.asp