Author Topic: Command Chat Script  (Read 441 times)

I know it would be possible to make a script like this but I'm just too lazy to learn torquescript for this small thing. Could someone make me a script that binds to the "/" key and opens chat but starts the line with /

Code: [Select]
function openCommandChat(%x)
{
if(!%x)
return;

globalChat(1);
nmh_type.setText("/");
}
$remapdivision[$remapcount] = "Command Chat";
$remapname[$remapcount] = "Command Chat";
$remapcmd[$remapcount] = "openCommandChat";
$remapcount++;