From d584b0430abbaeb743203fd753e457bb1034dc06 Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Sat, 2 Jun 2018 22:04:52 -0300 Subject: Maybe this fix my split problem --- npc/commands/kami.txt | 5 ++++- npc/commands/wgm.txt | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'npc') diff --git a/npc/commands/kami.txt b/npc/commands/kami.txt index 4204ae5fe..c07190796 100644 --- a/npc/commands/kami.txt +++ b/npc/commands/kami.txt @@ -15,7 +15,10 @@ end; OnCall: - .@request$ = strcharinfo(0)+": "+.@atcmd_parameters$[0]; + .@request$ = strcharinfo(0)+": "; + for (.@i = 0; .@i < .@atcmd_numparameters; ++.@i) { + .@request$ += (.@i > 0 ? " " : "") + .@atcmd_parameters$[.@i]; + } channelmes("#world", .@request$); announce l(.@request$), bc_all|bc_npc; end; diff --git a/npc/commands/wgm.txt b/npc/commands/wgm.txt index dbb46eca4..d24841546 100644 --- a/npc/commands/wgm.txt +++ b/npc/commands/wgm.txt @@ -13,7 +13,10 @@ end; OnCall: - .@request$ = .@atcmd_parameters$; + .@request$ = strcharinfo(0)+": "; + for (.@i = 0; .@i < .@atcmd_numparameters; ++.@i) { + .@request$ += (.@i > 0 ? " " : "") + .@atcmd_parameters$[.@i]; + } atcommand("@request "+.@request$); end; -- cgit v1.2.3-70-g09d2