first commit
This commit is contained in:
commit
e2a1f8ac7d
23 changed files with 1646 additions and 0 deletions
80
README.md
Normal file
80
README.md
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
# Points of Interest
|
||||
|
||||
A Mod for Minetest.
|
||||
|
||||

|
||||
|
||||
This Mod adds PoI's, Point's of Interest to your World.
|
||||
If you have set a PoI, you can everytime jump back to the PoI with a simple Chatcommand or easy with the GUI.
|
||||
|
||||
### /poi_list [-a] [-f] [-c] [-i <Number>]
|
||||
Lists Points of Interest.<br>
|
||||
Option -a: List all Points of Interest with Coordinates<br>
|
||||
Option -f: Lists forbidden Chars or Names<br>
|
||||
Option -c: Lists the Categories of PoI's<br>
|
||||
Option -i <Number>: Lists all Entrys of the given Categorienumber or Categoriename<br>
|
||||
|
||||
### /poi_jump [Name]
|
||||
Jumps to a Point of Interest.
|
||||
|
||||
### /poi_gui
|
||||
Opens a simple GUI, where you can Double-Click the Points to Jump.
|
||||
|
||||
### This commands demands the Priv "poi":
|
||||
### /poi_set [Name][, Categorie[number]]
|
||||
Set's a new Point of Interest. You can't overwrite an existing POI.<br>
|
||||
If you don't set a Categorienumber or Categoriename, it will given 1 by default.<br>
|
||||
You can change the Categorie of an Point, if you set the Point with a different Categorienumber or Categoriename.<br>
|
||||
This Action will be logged.
|
||||
|
||||
### /poi_delete [Name]
|
||||
Deletes a Point of Interest. You can't delete an unknown POI.<br>
|
||||
This Action will be logged.
|
||||
|
||||
### /poi_move [Name]
|
||||
This command overwrites the Coordinates of the given POI with your current Coordinates.<br>
|
||||
This Action will be logged.
|
||||
|
||||
### /poi_rename [Name1],[Name2]
|
||||
This command renames an existing Point [Name1] of Interest to Point of Interest [Name2]. [Name2] can't have the name of an already existing Point.<br>
|
||||
This Action will be logged.
|
||||
|
||||
### /poi_reload
|
||||
If the List of POI's are in any kind corrupted, you can reload the List without a new Serverstart.
|
||||
|
||||
### /poi_validate
|
||||
Checks the List of Entrys for invalid Names or Positions. If found an Entry, the command deletes it.<br>
|
||||
This Function checks the Entries for a Categorienumber, if there is no, it sets to 1 per default.<br>
|
||||
This Action will be logged.
|
||||
|
||||
As Admin, you can grant Privs for the Player.
|
||||
|
||||
## Privileges
|
||||
|
||||
### interact:<br>
|
||||
/poi_jump [name]<br>
|
||||
/poi_list [-a] [-f] [-c] [-i <Categorie[number>]]<br>
|
||||
/poi_gui<br>
|
||||
|
||||
### poi:<br>
|
||||
/poi_set [name][, Categorie[number]]<br>
|
||||
/poi_delete [name]<br>
|
||||
/poi_reload<br>
|
||||
/poi_move [name]<br>
|
||||
/poi_rename [name1], [name2]<br>
|
||||
/poi_validate<br><br>
|
||||
|
||||
With this Privileg, you have access to the grafical POI-Manager:
|
||||

|
||||
|
||||
## Install
|
||||
|
||||
Move your Download to the Mods-Folder.
|
||||
|
||||
## Depends
|
||||
|
||||
none
|
||||
|
||||
## License
|
||||
|
||||
License: cc0-1.0
|
||||
Loading…
Add table
Add a link
Reference in a new issue