blob: 5ff3713b84adc5d30dfe7a9e20d70ccbda0a071e (
plain)
1
2
3
4
5
6
7
8
9
|
import { client, extrafeatures } from "../../client";
/**
* Sends call mod command.
* @param {string} message to mod
*/
export const sendZZ = (msg: string, target: number) => {
client.sender.sendServer(`ZZ#${msg}#${target}#%`);
};
|