22 lines
567 B
HTML
22 lines
567 B
HTML
|
<!DOCTYPE html>
|
|||
|
|
|||
|
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
|
|||
|
<head>
|
|||
|
<meta charset="utf-8" />
|
|||
|
<title>Command converter</title>
|
|||
|
<script src="converter.js"></script>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<h1>Command converter</h1>
|
|||
|
<p>This tool is designed to convert one command creations to work on Spigot/Bukkit. Note that the command may stil not work if it's not designed to be multiplayer.</p>
|
|||
|
<h2>Command:</h2>
|
|||
|
<textarea>
|
|||
|
</textarea>
|
|||
|
<button onclick="convert">
|
|||
|
Convert
|
|||
|
</button>
|
|||
|
<textarea>
|
|||
|
|
|||
|
</textarea>
|
|||
|
</body>
|
|||
|
</html>
|