summaryrefslogtreecommitdiff
path: root/world/map/npc/commands/changesex.txt
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2016-04-12 16:37:08 -0400
committermekolat <mekolat@users.noreply.github.com>2016-04-12 19:21:46 -0400
commitdc9c6ac482b353fe9a4b1e1628f691c487a517fc (patch)
tree655b6616766410e8880e8395298811beba8c742a /world/map/npc/commands/changesex.txt
parentd55ee9ec4a43cbc7d52619b6a473a4760bb9acdb (diff)
downloadserverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.gz
serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.bz2
serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.xz
serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.zip
add default permissions
Diffstat (limited to 'world/map/npc/commands/changesex.txt')
-rw-r--r--world/map/npc/commands/changesex.txt16
1 files changed, 7 insertions, 9 deletions
diff --git a/world/map/npc/commands/changesex.txt b/world/map/npc/commands/changesex.txt
index ba08783d..fca27645 100644
--- a/world/map/npc/commands/changesex.txt
+++ b/world/map/npc/commands/changesex.txt
@@ -2,29 +2,27 @@
{
callfunc "argv_splitter";
set .@n$, if_then_else(@argv$[1] != "", "char", "") + "changesex";
- if (GM < get(.changesex, "GM") && GM < G_SYSOP) goto L_GM; // check if you can use it on self
+ if (GM < CMD_CHANGESEX && GM < G_SYSOP) goto L_GM; // check if you can use it on self
set .@target_id, BL_ID;
if (@argv$[1] != "") set .@target_id, getcharid(3, @argv$[1]);
if (@argv$[1] != "" && !(isloggedin(.@target_id))) goto L_Failed; // do NOT fallback to self
- if (@argv$[1] != "" && GM < get(.charchangesex, "GM") && GM < G_SYSOP) goto L_GM; // when target is not self, use charchangesex permission
+ if (@argv$[1] != "" && GM < CMD_CHARCHANGESEX && GM < G_SYSOP) goto L_GM; // when target is not self, use charchangesex permission
+
set .@s, 3; // default to non-binary
if (@argv$[0] == "M" || @argv$[0] == "m") set .@s, 1;
if (@argv$[0] == "F" || @argv$[0] == "f") set .@s, 0;
set Sex, .@s, .@target_id;
- goto L_Success;
+ gmlog "@"+.@n$+" " + @args$;
+ message strcharinfo(0), .@n$+" : The operation succeeded.";
+ end;
L_Failed:
// XXX: should we allow GMs to change sex of users that are not logged in?
message strcharinfo(0), .@n$+" : Impossible to attach to the target player. Did you try putting the name in \"quotation marks\"?";
end;
-L_Success:
- gmlog "@"+.@n$+" " + @args$;
- message strcharinfo(0), .@n$+" : The operation succeeded.";
- end;
-
L_GM:
- message strcharinfo(0), .@n$+" : GM command is level "+ get(if_then_else(@argv$[1] != "", .charchangesex, .changesex), "GM") +", but you are level " + GM;
+ message strcharinfo(0), .@n$+" : GM command is level "+ if_then_else(@argv$[1] != "", CMD_CHARCHANGESEX, CMD_CHANGESEX) +", but you are level " + GM;
end;
OnInit: