0

First Commit

This commit is contained in:
BuildTools
2016-08-06 12:00:33 +02:00
parent e63adbdb82
commit 24ec6d2a32
21 changed files with 1185 additions and 0 deletions

34
test.cmd Normal file
View File

@@ -0,0 +1,34 @@
command home {
set [string:name] {
[int:x] [int:y] [int:z] {
run home_set_coords name x y z;
perm home.set.xyz;
help Sets a new home at coordinates XYZ;
}
run home_set name;
perm home.set;
help Sets a new home;
}
del [string:name] {
run home_del name;
help Deletes a home\n&cCannot be undone!;
perm home.del;
}
list {
help Shows all homes;
run home_list;
perm home.list;
}
[string:name] {
perm home.tp;
help Teleports to a home;
run home_tp name;
}
yolo swag {
perm yo.mamma;
help Reks you;
run noskope;
}
}