0
This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
CommandManager/test.cmd
2016-10-16 10:26:15 +02:00

35 lines
626 B
Batchfile

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;
type none;
}
del [optional:-a] [string:name] {
run home_del name -a;
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;
}
}