summaryrefslogtreecommitdiff
path: root/npc/commands/bodytype.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 13:33:57 -0300
commitcf18ce071c79ae37e14ea38943e0b1d88da70a7b (patch)
treef9159c9b60b3018300dd22ffba0d797bc5e828e5 /npc/commands/bodytype.txt
parent8a4bf716002a017de77fe7df301ef8e4aaf00a2e (diff)
downloadserverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.gz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.bz2
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.tar.xz
serverdata-cf18ce071c79ae37e14ea38943e0b1d88da70a7b.zip
Override
Diffstat (limited to 'npc/commands/bodytype.txt')
-rw-r--r--npc/commands/bodytype.txt53
1 files changed, 0 insertions, 53 deletions
diff --git a/npc/commands/bodytype.txt b/npc/commands/bodytype.txt
deleted file mode 100644
index 290c6fd6..00000000
--- a/npc/commands/bodytype.txt
+++ /dev/null
@@ -1,53 +0,0 @@
-// @bodytype atcommand
-// changes or returns the body type
-
-- script @bodytype 32767,{
- end;
-
-OnCall:
- if (.@atcmd_parameters$[0] == "") {
- dispbottom("Your current body type is " + bodytypeToString());
- end;
- }
-
- .@desired = stringToBodytype(.@atcmd_parameters$[0]);
-
- if (.@desired == BodyType) {
- dispbottom("Your body type is already " + bodytypeToString());
- } else {
- BodyType = .@desired;
- dispbottom("Body type changed to " + bodytypeToString());
- }
- end;
-
-OnInit:
- bindatcmd("gender", "@bodytype::OnCall", 99, 99, false);
- bindatcmd("bodytype", "@bodytype::OnCall", 99, 99, false);
- bindatcmd("body", "@bodytype::OnCall", 99, 99, false);
- bindatcmd("type", "@bodytype::OnCall", 99, 99, false);
- bindatcmd("changesex", "@bodytype::OnCall", 99, 99, false);
-
- add_group_command("gender", 40, true, false);
- add_group_command("bodytype", 40, true, false);
- add_group_command("body", 40, true, false);
- add_group_command("type", 40, true, false);
- add_group_command("changesex", 40, true, false);
-
- add_group_command("gender", 50, true, false);
- add_group_command("bodytype", 50, true, false);
- add_group_command("body", 50, true, false);
- add_group_command("type", 50, true, false);
- add_group_command("changesex", 50, true, false);
-
- add_group_command("gender", 60, true, false);
- add_group_command("bodytype", 60, true, false);
- add_group_command("body", 60, true, false);
- add_group_command("type", 60, true, false);
- add_group_command("changesex", 60, true, false);
-
- add_group_command("gender", 80, true, false);
- add_group_command("bodytype", 80, true, false);
- add_group_command("body", 80, true, false);
- add_group_command("type", 80, true, false);
- add_group_command("changesex", 80, true, false);
-}