serverCmdWhis(%client,%a1,%a2,%a3,%a4,%a5,%a6,%a7,%a8,%a9,%a10,%a11,%a12,%a13,%a14,%a15,%a16,%a17,%a18,%a19,%a20)
Actually, IGSO's whis used something like this:Code: [Select]serverCmdWhis(%client,%a1,%a2,%a3,%a4,%a5,%a6,%a7,%a8,%a9,%a10,%a11,%a12,%a13,%a14,%a15,%a16,%a17,%a18,%a19,%a20)Each %a was a word (so 20 words max).
I have a copy of pretty much every (decent) add-on for reference purposes.I also just happened to be looking at this myself the other day.
Actually, IGSO's whis used something like this:
/whis Truce Ohay, how's it going?
serverCmdWhis(%client,findClientByName("Truce"),"Ohay,","how's","it","going?");
messageClient(%client, '', "[\c3You\c0] to [\c3" @ %name @ "\c0]: "@ %a1 SPC %a2 SPC %a3 SPC %a4 SPC %a5 SPC %a6 SPC %a7 SPC %a8 SPC %a9 SPC %a10 SPC %a11 SPC %a12 SPC %a13 SPC %a14 SPC %a15 SPC %a16 SPC %a17 SPC %a18 SPC %a19 SPC %a20 @ "");
Download IGSO and look for the servercmdwhis function?