Denizen/0.7/Getting Started: Difference between revisions

From Citizens Wiki

< Denizen‎ | 0.7

(Created page with "== Getting started with Denizen == <div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;"> Denizen is in BETA! Expect a few bugs here and there...")
 
(Blanked the page)
Line 1: Line 1:
== Getting started with Denizen ==
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
Denizen is in BETA! Expect a few bugs here and there! If you are having problems, [[#Debug_Mode|<code>/denizen debug</code>]] is your friend! We're always willing to help out in [irc://irc.esper.net #denizen-dev on EsperNET] as well. If you do come across any errors beyond bad command syntax, please  report them to the [http://www.github.com/aufdemrand/Denizen/issues Github Issues page for Denizens].


Denizen is not a drag-and-go type of plugin. In fact, Denizen won't do anything unless you assign and define scripts to NPCs. It's highly customizable. In order to write awesome scripts, you will need to read the entirety of this wiki page and think outside the box! I'm always around IRC to help out and provide suggestions, but please don't ask about the basics unless you have consulted here first.
Some Denizen commands and requirements '''REQUIRE''' you to have [http://dev.bukkit.org/server-mods/vault/ Vault] installed with a compatible Permissions System and and Economy System. If the commands deals with money or permissions, chances are you will need Vault in order to utilize it.
The easiest way to use Denizen for the first time is to download the [http://dl.dropbox.com/u/44002922/Start-up%20Kit.zip Start-up Kit] with sample .yml configuration files and scripts. This includes the default config file, sample scripts, and sample assignments to get you started.
Denizen relies on a few files to run properly, so let's first go over the file structure.
</div>
=== File Structure ===
[[File:Figure 1 - Denizen file structure.png|250px|thumb|right|Denizen File Structure]]
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
Denizen requires the use of a few different YML files to operate properly. This includes a config.yml, assignments.yml, scripts, and saves.yml.
</div>
==== denizen.jar ====
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
I've gotten a few questions about where to place the Denizen JAR file. It should be treated like any other bukkit plugin and be placed in your craftbukkit/plugins/ folder. Please note that while a lot of plugins will automatically generate a folder to go along with it, Denizen does not, and this should be either created by hand and populated, or generated by copying the [http://dl.dropbox.com/u/44002922/Start-up%20Kit.zip Start-up Kit] with sample .yml configuration files and scripts.
</div>
==== config.yml ====
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
The Denizen config.yml contains nodes to alter the stock behavior and look of Denizen. You'll notice that Denizen does not create its own config.yml. Why is this? Denizen stores its entire config inside memory, so it's not necessary to have a copy inside the Denizen folder unless you need to change the defaults. You can use the config.yml to override those defaults. Not having Denizen write to the config.yml itself (as well as scripts files) ensures that upon a <code>/denizen reload</code>, the config.yml, between a save and reload, is never changed when you don't want it to. This also keeps code comments inside the YML files stay intact, exactly the way you left them from last edit allowing you to leave yourself and others detailed notes and ideas.
This file can be reloaded from disk to Denizen memory at any time by using <code>/denizen reload</code>. Some changes in the config.yml may require a restart of the server. This includes <code>interact_delay_in_ticks</code>, but is not limited to that config node.
See: [[Denizen config.yml]] for a stock copy and explanation of all available options.
</div>
==== assignments.yml ====
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
This YML is where you can define all the options and information for your Denizen NPCs. This will be explained further along in this document, but the most common information in this file is [Interact Script Assignments], [Activity Script Schedule], and [Custom Interact Texts].
This file can be reloaded from disk into Denizen memory at any time by using <code>/denizen reload</code>, and, if using in-game commands to assign scripts, it should be saved to disk before editing it by hand with <code>/denizen save</code>.
See: [[#A basic assignment]] for information on how to get started with assignments.
</div>
==== saves.yml ====
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
This file is not meant to be edited by hand, Denizen will create and populate this file automatically as needed. It stores important information such as player progression, flags, Denizen location and block bookmarks, active activity script progression and more. If you absolutely need to make changes by hand, it's best to stop the server, edit, and then restart your server, as this file is constantly being written to by Denizen which will overwrite any changes you make.
To reiterate: This file saves periodically, and automatically, upon progression and a server stop, and should only be edited by hand when the server is off or Denizen is disabled.
</div>
==== read-only-scripts.yml ====
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
This is another files that Denizen creates and should not be edited by hand. This is a combination of the files contained in the scripts folder that Denizen reads from.
This file is populated on a server restart, or by using the <code>/denizen reload</code> command.
</div>
==== /scripts/ folder ====
<div style="margin-right:2.0em; padding:10px; font-family:museo-sans; font-size:110%;">
This folder is where Denizen will read all the script information from. Upon a server load or <code>/denizen reload</code>, the files are combined and put into the read-only-scripts.yml for the Denizen to read from. This allows better organization of scripts to be maintained, since the amount of scripts can easily get into the triple digits.
The files in the plugins/Denizen/scripts/ folder can be named whatever you please, as long as they end in <code>.yml</code>. Be sure not to duplicate script names from file to file as this will cause problems. All scripts in the scripts folder are merged into <code>read-only-scripts.yml</code>, so there will be an issue if two scripts are named the same.
See: [[#A_Basic_Interact_Script|A basic Interact Script]] for information on how to get started with scripts.
</div>

Revision as of 17:30, 14 August 2012