diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-01 17:19:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-01 17:19:21 -0300 |
commit | 921f100af87307c830d2736f801c6b7ed29aa4ad (patch) | |
tree | 478b12146c44d3281c80756e7fdc9c7407780be5 /npc/commands | |
parent | b066c953084c6e624322db928db3b671a9478099 (diff) | |
download | serverdata-921f100af87307c830d2736f801c6b7ed29aa4ad.tar.gz serverdata-921f100af87307c830d2736f801c6b7ed29aa4ad.tar.bz2 serverdata-921f100af87307c830d2736f801c6b7ed29aa4ad.tar.xz serverdata-921f100af87307c830d2736f801c6b7ed29aa4ad.zip |
Introducing @k, which will broadcast to #world too
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/kami.txt | 26 | ||||
-rw-r--r-- | npc/commands/music.txt | 6 | ||||
-rw-r--r-- | npc/commands/wgm.txt | 15 |
3 files changed, 32 insertions, 15 deletions
diff --git a/npc/commands/kami.txt b/npc/commands/kami.txt new file mode 100644 index 000000000..4204ae5fe --- /dev/null +++ b/npc/commands/kami.txt @@ -0,0 +1,26 @@ +// TMW2 Script +// +// @k atcommand +// Broadcast, and broadcast to #world too +// +// group lv: 0 +// group char lv: 0 +// log: True +// +// usage: +// @wgm Help +// + +- script @k 32767,{ + end; + +OnCall: + .@request$ = strcharinfo(0)+": "+.@atcmd_parameters$[0]; + channelmes("#world", .@request$); + announce l(.@request$), bc_all|bc_npc; + end; + + +OnInit: + bindatcmd "k", "@k::OnCall", 80, 80, 1; +} diff --git a/npc/commands/music.txt b/npc/commands/music.txt index 82b7fc139..3a964083b 100644 --- a/npc/commands/music.txt +++ b/npc/commands/music.txt @@ -15,8 +15,7 @@ end; OnCall: - if (!is_gm()) - { + if (!is_gm()) { end; } @@ -26,8 +25,7 @@ OnCall: .@key$ = .@atcmd_parameters$[0]; .@m$ = htget(.hash, .@key$, "Not found"); - if (.@m$ == "Not found") - { + if (.@m$ == "Not found") { //.@m$ = implode(.@atcmd_parameters$[0], " "); dispbottom "Invalid music key. Current accepted values are:"; dispbottom "ship, city, ghoul, surreal, magic, forest, mythica, acid, misuse, prelude, sunrise, peace, toast"; diff --git a/npc/commands/wgm.txt b/npc/commands/wgm.txt index f356305f4..e48d0ed1b 100644 --- a/npc/commands/wgm.txt +++ b/npc/commands/wgm.txt @@ -13,18 +13,11 @@ end; OnCall: - .@request$ = strtoupper(strip(.@atcmd_parameters$[0])); // sanitize - .@map$ = ""; - .@x = 0; - .@y = 0; - - if (.@map$ == "") - { - .@map$ = .@atcmd_parameters$[0]; - } - - atcommand("@request "+.@map$); + .@request$ = .@atcmd_parameters$[0]; + atcommand("@request "+.@request$); + end; OnInit: bindatcmd "wgm", "@wgm::OnCall", 0, 0, 1; + end; } |