mirror of
https://bitbucket.org/projectswg/cucore.git
synced 2026-07-13 20:00:58 -04:00
17 lines
470 B
JavaScript
17 lines
470 B
JavaScript
function executeCommand(galacticManager, player, target, args) {
|
|
var ChatAvatarRequestIntent = Java.type("intents.chat.ChatAvatarRequestIntent");
|
|
var RequestType = Java.type("intents.chat.ChatAvatarRequestIntent.RequestType");
|
|
var name;
|
|
|
|
if(args == null) {
|
|
return;
|
|
}
|
|
|
|
name = args.split(" ")[0].toLowerCase(java.util.Locale.English);
|
|
|
|
if(name == null) {
|
|
return;
|
|
}
|
|
|
|
new ChatAvatarRequestIntent(player, name, RequestType.FRIEND_REMOVE_TARGET).broadcast();
|
|
} |