forked from crazysmc/crazysmc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyeet.html
More file actions
46 lines (40 loc) · 1.31 KB
/
yeet.html
File metadata and controls
46 lines (40 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<meta charset=utf8>
<title>crazysmc – Yeet</title>
<link rel=stylesheet href=yeet.css>
<h1>Yeet calculator</h1>
<p>Ported to JavaScript from
<a href=https://replit.com/@The64thRealm/Yeet-calculator
>The64thRealm's Ruby script</a>.
<form name=yeet>
<fieldset>
<legend>Input</legend>
<p>Enter X and Z coordinates or paste the whole F3+C clipboard.
<table>
<tr><th scope=row><label for=boat>Boat coordinates</label>
<td><input id=boat name=boat type=text>
<td><output for=boat name=boatxz></output>
<tr><th scope=row><label for=target>Target coordinates</label>
<td><input id=target name=target type=text>
<td><output for=target name=targetxz></output>
</table>
</fieldset>
<fieldset>
<legend>Output</legend>
<table>
<tr class=important><th scope=row>Angle
<td><output for="boat target" name=angle></output>
<tr class=important><th scope=row>Normal friction
<td><output for="boat target" name=normal></output>
<tr><th scope=row>Slime block
<td><output for="boat target" name=slime></output>
<tr><th scope=row>Water/air/boat
<td><output for="boat target" name=water></output>
<tr><th scope=row>Ice/packed ice
<td><output for="boat target" name=ice></output>
<tr><th scope=row>Blue ice
<td><output for="boat target" name=blue></output>
</table>
</fieldset>
</form>
<script src=yeet.js></script>