Scripting

From Citizens Wiki

Revision as of 10:22, 6 August 2012 by AgentKid (talk | contribs) (Created page with "== Scripting Support in Citizens2 == Citizens2 includes support for various scripting languages including Lua, Javascript and Python. Javascript support is built into Java; a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Scripting Support in Citizens2

Citizens2 includes support for various scripting languages including Lua, Javascript and Python.

Javascript support is built into Java; additional languages can be added in through installing things such as JRuby (http://jruby.org/), Jython (http://www.jython.org/), Kahlua (http://www.ohloh.net/p/kahlua) and more. These use the Java Scripting API to give common scripting support to Citizens.

The scripting API contains a few built in objects in the global namespace which aid in some tasks. Currently, the 'events' object allows registering event listeners for Bukkit events and a reference to the Citizens plugin object is available under 'plugin'.

Let's see an example of how to use scripts. Citizens builds in by default the 'Behaviour' trait - this lets you specify AI tasks via scripts.

Scripts for behaviours should be placed in the plugins/Citizens/scripts/behaviours folder. Scripts are differentiated by their extension -- make sure it is correct!

Behaviours can be added to the NPC via the /npc behaviour [behaviours] command, where behaviours is a list of files to use.

When the script file is loaded by Citizens, it will call the method 'addGoals(Goals, NPC)'. Goals can be added via calling goals.addGoal(priority, goal), where goal implements the interface specified here -http://jd.citizensnpcs.net/net/citizensnpcs/api/ai/Goal.html.


Code: Example done in Javascript