Files
cucore/scripts/commands/generic/groupInvite.js

6 lines
295 B
JavaScript

function executeCommand(galacticManager, player, target, args) {
var GroupEventIntent = Java.type("intents.GroupEventIntent");
var GroupEventType = Java.type("intents.GroupEventIntent.GroupEventType");
new GroupEventIntent(GroupEventType.GROUP_INVITE, player, target).broadcast();
}