diff options
author | mekolat <mekolat@users.noreply.github.com> | 2016-04-12 16:37:08 -0400 |
---|---|---|
committer | mekolat <mekolat@users.noreply.github.com> | 2016-04-12 19:21:46 -0400 |
commit | dc9c6ac482b353fe9a4b1e1628f691c487a517fc (patch) | |
tree | 655b6616766410e8880e8395298811beba8c742a /world/map/npc/commands/zeny.txt | |
parent | d55ee9ec4a43cbc7d52619b6a473a4760bb9acdb (diff) | |
download | serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.gz serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.bz2 serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.tar.xz serverdata-dc9c6ac482b353fe9a4b1e1628f691c487a517fc.zip |
add default permissions
Diffstat (limited to 'world/map/npc/commands/zeny.txt')
-rw-r--r-- | world/map/npc/commands/zeny.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/world/map/npc/commands/zeny.txt b/world/map/npc/commands/zeny.txt index 94c02c4b..513330b5 100644 --- a/world/map/npc/commands/zeny.txt +++ b/world/map/npc/commands/zeny.txt @@ -2,11 +2,11 @@ { callfunc "argv_splitter"; set .@n$, if_then_else(@argv$[1] != "", "char", "") + "zeny"; - if (GM < get(.zeny, "GM") && GM < G_SYSOP) goto L_GM; // check if you can use it on self + if (GM < CMD_ZENY && 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(.charzeny, "GM") && GM < G_SYSOP) goto L_GM; // when target is not self, use charzeny permission + if (@argv$[1] != "" && GM < CMD_CHARZENY && GM < G_SYSOP) goto L_GM; // when target is not self, use charzeny permission if (@argv$[0] == "--") goto L_Remove; if (@argv$[0] == "---") goto L_RemoveAll; if (@argv$[0] == "++") goto L_Max; @@ -67,7 +67,7 @@ L_Success: end; L_GM: - message strcharinfo(0), .@n$+" : GM command is level "+ get(if_then_else(@argv$[1] != "", .charzeny, .zeny), "GM") +", but you are level " + GM; + message strcharinfo(0), .@n$+" : GM command is level "+ if_then_else(@argv$[1] != "", CMD_CHARZENY, CMD_ZENY) +", but you are level " + GM; end; OnInit: |