mirror of
https://github.com/webbukkit/dynmap.git
synced 2025-02-16 11:51:58 +01:00
Updated maven buildfile, removed depricated readmes.
This commit is contained in:
parent
32567b8569
commit
6205aee3b6
12
pom.xml
12
pom.xml
@ -19,12 +19,10 @@
|
||||
</plugins>
|
||||
</build>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>bukkit</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<type>jar</type>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.bukkit</groupId>
|
||||
<artifactId>bukkit</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
22
readme.txt
22
readme.txt
@ -1,22 +0,0 @@
|
||||
Commands
|
||||
--------------------------------------------------
|
||||
/map_wait [wait] - set wait between tile renders (ms)
|
||||
/map_stat - query number of tiles in render queue
|
||||
/map_regen - regenerate entire map (currently buggy)
|
||||
/map_debug - send map debugging messages
|
||||
/map_nodebug - disable map debugging messages
|
||||
/map_regenzoom - regenerates zoom-out tiles
|
||||
|
||||
/addsign [name] - adds a named sign to the map
|
||||
/removesign [name] - removes a named sign to the map
|
||||
/listsigns - list all named signs
|
||||
/tpsign [name] - teleport to a named sign
|
||||
|
||||
server.properties
|
||||
--------------------------------------------------
|
||||
map-colorsetpath - point to colors.txt
|
||||
map-tilepath - point to web/tiles folder
|
||||
map-signspath - point to signs.txt file (do not need to create the file, one will be created when you create a sign)
|
||||
map-serverport - the port the web server runs on (default is 8123)
|
||||
map-showmarkers - a list of which markers to show on the map, comma separated if multiple (spawn, homes, warps, signs, players, all, none)
|
||||
map-generateportraits - whether player-portraits are generated by the server (0, 1, default: 0)
|
@ -1 +0,0 @@
|
||||
Update map.js and set tileUrl and updateUrl
|
@ -1,3 +0,0 @@
|
||||
Set map.js tileUrl to this folder
|
||||
Also set map-tilepath in server.properties to point to this folder.
|
||||
New tile images will be generated here by the plugin
|
@ -1,16 +0,0 @@
|
||||
<%@ Page Language="C#" %>
|
||||
<script runat="server" language="C#">
|
||||
public void Page_Load(object sender, EventArgs e)
|
||||
{
|
||||
string lasttimestamp = Request.Params["lasttimestamp"];
|
||||
System.Net.HttpWebRequest request = (System.Net.HttpWebRequest)System.Net.WebRequest.Create("http://localhost:8123/" + lasttimestamp);
|
||||
System.Net.WebResponse response = request.GetResponse();
|
||||
System.IO.Stream responseStream = response.GetResponseStream();
|
||||
System.IO.StreamReader reader = new System.IO.StreamReader(responseStream);
|
||||
Response.ContentType = "text/plain";
|
||||
Response.Write(reader.ReadToEnd());
|
||||
reader.Close();
|
||||
responseStream.Close();
|
||||
response.Close();
|
||||
}
|
||||
</script>
|
@ -1,2 +0,0 @@
|
||||
default.aspx is not required for all installations.
|
||||
If you are running a windows server with IIS, it may help in your setup.
|
Loading…
Reference in New Issue
Block a user