-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommandlist.php
More file actions
142 lines (129 loc) · 2.22 KB
/
Copy pathcommandlist.php
File metadata and controls
142 lines (129 loc) · 2.22 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<?php
include 'header.php';
?>
<!doctype html>
<html prefix="og: https://ogp.me/ns#">
<head>
<link href="./AllCSS.css" rel="stylesheet" type="text/css" media="all">
<meta property="og:title" content="Kaizer's Command List" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://kaizer.ga/commandlist.php" />
<meta charset="UTF-8">
<link rel="apple-touch-icon"/>
<meta name="format-detection"/>
<meta name="HandheldFriendly"/>
<meta name="viewport"/>
<meta http-equiv="Expires"/>
<meta http-equiv="X-UA-Compatible"/>
<title>Kaizer's Site</title>
</head>
<body class="bodycenter">
<center>
<h1>welcome to my site</h1>
<br><br>
</center>
<center>
<h2>[] = required parameter, {} = optional</h2>
<br>
<h2>
<br>
For everyone:
<br>
<br>
~help
<br>
~ship [something] [something]
<br>
~randomstring
<br>
~upsidedown [text]
<br>
or you can use ~upside [text]
<br>
~bin [message]
<br>
~morse [enc or dec] [message or morse]
<br>
<br>
examples:
<br>
~morse enc hi
<br>
~morse dec .... ..
<br>
<br>
~reverse [message]
<br>
~randomstring
<br>
~qr [message]
<br>
~gay [user]
<br>
~horny [user]
<br>
~say [message]
<br>
~addrole [color] [name]
<br>
~embed [color hex/random] [message]
<br>
~stats
<br>
~ping {website}
<br>
~8ball [question]
<br>
~weather [zip/state initials]
<br>
~permissions [user]
<br>
~ping
<br>
~invite
<br>
~userinfo [user]
<br>
~avatar [user]
<br>
~randomhex
<br>
~color [hex]
<br>
~uptime
<br>
~owoify [level] [message]
<br>
<br>
Admin Only:
<br>
~kick [user] [reason]
<br>
~ban [user] [reason]
<br>
<br>
Owner Only:
<br>
<br>
~spam [message]
<br>
~dm [user] [message]
<br>
~eval [code]
<br>
~cmd [windows command]
<br>
~hook [client id] [token] [message]
</h2>
<br>
<script type="text/javascript">
var today = new Date();
var dd = String(today.getDate()).padStart(2, '0');
var mm = String(today.getMonth() + 1).padStart(2, '0'); //January is 0!
var yyyy = today.getFullYear();
today = mm + '/' + dd + '/' + yyyy;
document.write(`<div class="center"> <br> <br> <h2> today is ${today} </div>`);
</script>
</center>
</body>
</html>