commit
efb4b14b79
@ -1,7 +1,5 @@
|
|||||||
# Craft Inc. Gates #
|
# Craft Inc. Gates #
|
||||||
|
|
||||||
We are happy to finally announce __Craft Inc. Gates__.
|
|
||||||
|
|
||||||
This awesome plugin lets you _travel_ to far away places and worlds _faster than light_! Just create a gate at any location and set an exit somewhere else.
|
This awesome plugin lets you _travel_ to far away places and worlds _faster than light_! Just create a gate at any location and set an exit somewhere else.
|
||||||
|
|
||||||
This has been made available by the hard work of the research and development department of the _Craft Inc. Corporation_. Under the lead of Professor Ddidderr Craftman scientists worked years to find a way to bend time and space inside the Minecraft universe to enable _ultra fast transportation_.
|
This has been made available by the hard work of the research and development department of the _Craft Inc. Corporation_. Under the lead of Professor Ddidderr Craftman scientists worked years to find a way to bend time and space inside the Minecraft universe to enable _ultra fast transportation_.
|
||||||
@ -56,7 +54,7 @@ Have a look at the [_Commands_](http://dev.bukkit.org/bukkit-plugins/craftinc-ga
|
|||||||
## Installing ##
|
## Installing ##
|
||||||
|
|
||||||
1. Download the latest release _[here](http://dev.bukkit.org/bukkit-plugins/craftinc-gates/files/)_
|
1. Download the latest release _[here](http://dev.bukkit.org/bukkit-plugins/craftinc-gates/files/)_
|
||||||
2. Delete any old versions of _Craft Inc. Gates_ (only the .jar files) including the extra dynmap-plugin for this plugin.
|
2. Delete any old versions of _Craft Inc. Gates_ (only the .jar files) including the extra dynmap-plugin of this plugin.
|
||||||
3. Extract the content of the zip file into the plugins folder of your Bukkit server.
|
3. Extract the content of the zip file into the plugins folder of your Bukkit server.
|
||||||
4. Start or reload the server.
|
4. Start or reload the server.
|
||||||
|
|
||||||
@ -75,9 +73,6 @@ allows players to build a replicator to replicate blocks and other items. (still
|
|||||||
coming soon!
|
coming soon!
|
||||||
|
|
||||||
## Roadmap ##
|
## Roadmap ##
|
||||||
* Optionally allow animals and mobs to travel via gates.
|
|
||||||
* Allow players to use gates while sitting inside a minecart or boat
|
|
||||||
* Dynmap integration.
|
|
||||||
* Per player permissions for using and managing gates.
|
* Per player permissions for using and managing gates.
|
||||||
* Horizontal gates.
|
* Horizontal gates.
|
||||||
|
|
||||||
|
26
pom.xml
26
pom.xml
@ -7,7 +7,7 @@
|
|||||||
<name>Craft Inc. Gates</name>
|
<name>Craft Inc. Gates</name>
|
||||||
<url>http://dev.bukkit.org/bukkit-plugins/craftinc-gates/</url>
|
<url>http://dev.bukkit.org/bukkit-plugins/craftinc-gates/</url>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>2.4.0</version>
|
<version>2.4.1</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
@ -90,22 +90,32 @@
|
|||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
||||||
|
<!--Spigot API-->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.spigotmc</groupId>
|
||||||
|
<artifactId>spigot-api</artifactId>
|
||||||
|
<version>1.11-R0.1-SNAPSHOT</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!--Bukkit API-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.bukkit</groupId>
|
<groupId>org.bukkit</groupId>
|
||||||
<artifactId>bukkit</artifactId>
|
<artifactId>bukkit</artifactId>
|
||||||
<version>1.7.2-R0.2-SNAPSHOT</version>
|
<version>1.11-R0.1-SNAPSHOT</version>
|
||||||
<type>jar</type>
|
<scope>provided</scope>
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!--Vault-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.milkbowl.vault</groupId>
|
<groupId>net.milkbowl.vault</groupId>
|
||||||
<artifactId>Vault</artifactId>
|
<artifactId>Vault</artifactId>
|
||||||
<version>1.2.27-SNAPSHOT</version>
|
<version>1.6.6</version>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!--Metrics-->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.mcstats.bukkit</groupId>
|
<groupId>org.mcstats.bukkit</groupId>
|
||||||
<artifactId>metrics</artifactId>
|
<artifactId>metrics</artifactId>
|
||||||
@ -118,13 +128,13 @@
|
|||||||
<repositories>
|
<repositories>
|
||||||
|
|
||||||
<repository>
|
<repository>
|
||||||
<id>bukkit-repo</id>
|
<id>spigot-repo</id>
|
||||||
<url>http://repo.bukkit.org/content/groups/public</url>
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<repository>
|
<repository>
|
||||||
<id>vault-repo</id>
|
<id>vault-repo</id>
|
||||||
<url>http://ci.herocraftonline.com/plugin/repository/everything</url>
|
<url>http://nexus.hc.to/content/repositories/pub_releases</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<repository>
|
<repository>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user