Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
Documented Version
Browse files Browse the repository at this point in the history
Signed-off-by: Zaicon Kiroshu <kzaicon@yahoo.com>
  • Loading branch information
Zaicon committed Dec 26, 2016
1 parent a432a52 commit 68b0d32
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
56 changes: 56 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Advanced-Warpplates
## Version 2.0.0.0

Introduction
-----
Warpplates function similarly to teleporters without the need for wiring or teleporters themselves. For basic functionality, simply add two warpplates, set the destination for one (or both for two-way travel), and you're done. You can optionally adjust other functionality such as the area of influence and the delay before being warped.

Commands
-----
`/warpplate add <name>`<br />
Adds a warpplate at the user's location using the specified warpplate name.

`/warpplate del <name>`<br />
Deletes the specified warpplate.

`/warpplate info <name>`<br />
Returns information about the specified warpplate.

`/warpplate mod <name> name <new name>`<br />
Modifies the specified warpplate's name. (Note that this will break any warpplates that use this warpplate as a destination.)

`/warpplate mod <name> size <w,h>`<br />
Modifies the specified warpplate's area. Use the format `width,height` without spaces (example: `warpplate mod spawn size 5,4`).

`/warpplate mod <name> delay <delay>`<br />
Modifies the specified warpplate's delay. The delay is in seconds.

`/warpplate mod <name> destination <dest name>`<br />
Modifies the specified warpplate's destination warpplate.

`/togglewarpplates`<br />
Toggles automatic warpping for the user.

Permissions
-----
`warpplate.set`<br />
Allows use of `/warpplate` command.

`warpplate.use`<br />
Allows use of /togglewarpplates command.<br />
Allows the ability to warp via warpplate.

Database
-----
_Warpplates_

| Column Name | Type | Length |
| --- | --- | --- |
| warppname | VarChar | 30 |
| x | Int32 | 5 |
| y | Int32 | 5 |
| width | Int32 | 5 |
| height | Int32 | 5 |
| delay | Int32 | 3 |
| destination | VarChar | 30 |
| worldid | VarChar | 15 |
Binary file modified bin/Release/AdvancedWarpplate.dll
Binary file not shown.

0 comments on commit 68b0d32

Please sign in to comment.