Difference between revisions of "Category:Plugins"

From OpenKore Wiki
Jump to navigation Jump to search
m
 
(11 intermediate revisions by 3 users not shown)
Line 2: Line 2:
 
This page aims to describe how to use OpenKore plugins.
 
This page aims to describe how to use OpenKore plugins.
 
Plugins are little perl packages (.pl extension) that extend OpenKore's functionality.
 
Plugins are little perl packages (.pl extension) that extend OpenKore's functionality.
They do this by reacting to built-in events in kore called hooks.
+
They do this by reacting to events using kore built-in event-handlers called hooks.
  
 
==Downloading==
 
==Downloading==
 
You can download most plugins from the official OpenKore plugin repository at SourceForge:
 
You can download most plugins from the official OpenKore plugin repository at SourceForge:
* http://openkore.svn.sf.net/viewvc/openkore/plugins (manually)
+
* http://openkore.svn.sf.net/viewvc/openkore/plugins (manually, using "download tarball" links)
* https://openkore.svn.sourceforge.net/svnroot/openkore/plugins (with svn, the best method)
+
* https://openkore.svn.sourceforge.net/svnroot/openkore/plugins ('''svn checkout''' - preferred method)
  
  
Line 13: Line 13:
 
* It is advised to get the '''entire [http://openkore.svn.sf.net/viewvc/openkore/plugins/example/trunk/ <pluginname>/trunk] folder''' of the plugin.
 
* It is advised to get the '''entire [http://openkore.svn.sf.net/viewvc/openkore/plugins/example/trunk/ <pluginname>/trunk] folder''' of the plugin.
 
* '''Unofficial sources are unsafe''' to get plugins from. (forums, third party, ...)
 
* '''Unofficial sources are unsafe''' to get plugins from. (forums, third party, ...)
* Using the plugins from the OpenKore plugin repository '''helps developers fix and maintain''' them.  
+
* Using the plugins from the OpenKore plugin repository '''helps developers fix and maintain''' them, given that you provide bugreports and feedback. It also helps you to update them, if you're using svn.
 
+
* Some plugins require additional modules to work. See how to make [[Installing Modules]].
  
 
==Installing==
 
==Installing==
 
Rename the [http://openkore.svn.sf.net/viewvc/openkore/plugins/example/trunk/ trunk] folder that you downloaded to <pluginname> and place it in the plugins folder so that you end up with plugins/<pluginname>.
 
Rename the [http://openkore.svn.sf.net/viewvc/openkore/plugins/example/trunk/ trunk] folder that you downloaded to <pluginname> and place it in the plugins folder so that you end up with plugins/<pluginname>.
 +
 +
plugins/
 +
macro/
 +
<files from ^/plugins/macro/trunk>
 +
state/
 +
<files from ^/plugins/state/trunk>
 +
randomplugin/
 +
<files from ^/plugins/randomplugin/trunk>
 +
...
  
 
'''Notes:'''
 
'''Notes:'''
* OpenKore only looks for plugins down to 2 levels of the specified plugins folder. (ex. /plugins/<pluginname>/<pluginname.pl>)
+
* OpenKore only looks for plugins down to '''2 levels''' of the specified plugins folder. (ex. /plugins/<pluginname>/<pluginname.pl>)
* Additional configuration may be required to get the plugins to work. (in: [[loadPlugins|sys.txt]], [[#Configuring|config.txt]], ...)
+
* '''Additional configuration may be required''' to get the plugins to work. (in: [[loadPlugins|sys.txt]], [[#Configuring|config.txt]], ...)
 
* Which plugins folder to use can be configured. (this is unnecessary in most cases)
 
* Which plugins folder to use can be configured. (this is unnecessary in most cases)
  
 +
==Downloading, Installing and Updating with SVN (deprecated)==
 +
<span style="font-weight:bold; color:red;">The OpenKore project has to moved to GitHub as of Feburary 28th 2016. The old repository at SourceForge.net has been deprecated and made read-only. All plugins are now available at [[Git|GitHub]]</span>
 +
 +
Installing plugin "example" (it's a really existing example plugin, by the way):
 +
svn co https://openkore.svn.sourceforge.net/svnroot/openkore/plugins/example/trunk plugins/example
 +
 +
Updating plugin "example":
 +
svn up plugins/example
 +
 +
Updating all installed plugins:
 +
svn up plugins/*
  
 
==Configuring==
 
==Configuring==
How to configure a specific plugin to your needs can be found on the forum and in some cases in [http://openkore.svn.sf.net/viewvc/openkore/plugins/example/trunk/doc <pluginname>/trunk/doc]. The goal is to port this information to the wiki (ex. [[macro plugin]], [[wx captcha]]).
+
How to configure a specific plugin to your needs can be found on the forum and in some cases in [http://openkore.svn.sf.net/viewvc/openkore/plugins/example/trunk/doc <pluginname>/trunk/doc] or directly in the plugin file. The goal is to port this information to the wiki (ex. [[macro plugin]], [[wx captcha]]).

Latest revision as of 19:54, 30 November 2016

Introduction

This page aims to describe how to use OpenKore plugins. Plugins are little perl packages (.pl extension) that extend OpenKore's functionality. They do this by reacting to events using kore built-in event-handlers called hooks.

Downloading

You can download most plugins from the official OpenKore plugin repository at SourceForge:


Notes:

  • It is advised to get the entire <pluginname>/trunk folder of the plugin.
  • Unofficial sources are unsafe to get plugins from. (forums, third party, ...)
  • Using the plugins from the OpenKore plugin repository helps developers fix and maintain them, given that you provide bugreports and feedback. It also helps you to update them, if you're using svn.
  • Some plugins require additional modules to work. See how to make Installing Modules.

Installing

Rename the trunk folder that you downloaded to <pluginname> and place it in the plugins folder so that you end up with plugins/<pluginname>.

plugins/
	macro/
		<files from ^/plugins/macro/trunk>
	state/
		<files from ^/plugins/state/trunk>
	randomplugin/
		<files from ^/plugins/randomplugin/trunk>
	...

Notes:

  • OpenKore only looks for plugins down to 2 levels of the specified plugins folder. (ex. /plugins/<pluginname>/<pluginname.pl>)
  • Additional configuration may be required to get the plugins to work. (in: sys.txt, config.txt, ...)
  • Which plugins folder to use can be configured. (this is unnecessary in most cases)

Downloading, Installing and Updating with SVN (deprecated)

The OpenKore project has to moved to GitHub as of Feburary 28th 2016. The old repository at SourceForge.net has been deprecated and made read-only. All plugins are now available at GitHub

Installing plugin "example" (it's a really existing example plugin, by the way):

svn co https://openkore.svn.sourceforge.net/svnroot/openkore/plugins/example/trunk plugins/example

Updating plugin "example":

svn up plugins/example

Updating all installed plugins:

svn up plugins/*

Configuring

How to configure a specific plugin to your needs can be found on the forum and in some cases in <pluginname>/trunk/doc or directly in the plugin file. The goal is to port this information to the wiki (ex. macro plugin, wx captcha).

Pages in category "Plugins"

The following 6 pages are in this category, out of 6 total.