1client.variableCreateCommand({2 name: "Variable Create",3 channel: "$channelId",4 code: `5 $log[$newVariable[variable] was created!]6 `7});
1module.exports = {2 name: "Variable Create",3 channel: "$channelId",4 type: "variableCreate",5 code: `6 $log[$newVariable[variable] was created!]7 `8};