2020-05-11 17:10:43 -04:00
|
|
|
let commands = [{
|
|
|
|
// required
|
|
|
|
name: "pingpong",
|
|
|
|
// required
|
|
|
|
description: "pongs a ping",
|
|
|
|
// required
|
|
|
|
alias: "pp",
|
|
|
|
// required
|
|
|
|
permission: "User",
|
2020-09-28 21:32:53 -04:00
|
|
|
// optional (defaults to false)
|
|
|
|
targetRequired: false,
|
2020-05-11 17:10:43 -04:00
|
|
|
// optional
|
|
|
|
arguments: [{
|
|
|
|
name: "times to ping",
|
|
|
|
required: true
|
|
|
|
}],
|
|
|
|
// required
|
|
|
|
execute: (gameEvent) => {
|
|
|
|
// parse the first argument (number of times)
|
|
|
|
let times = parseInt(gameEvent.Data);
|
|
|
|
|
|
|
|
// we only want to allow ping pong up to 5 times
|
|
|
|
if (times > 5 || times <= 0) {
|
|
|
|
gameEvent.Origin.Tell("You can only ping pong between 1 and 5 times");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we want to print out a pong message for the number of times they requested
|
|
|
|
for (var i = 0; i < times; i++) {
|
|
|
|
gameEvent.Origin.Tell(`^${i}pong #${i + 1}^7`);
|
|
|
|
|
|
|
|
// don't want to wait if it's the last pong
|
|
|
|
if (i < times - 1) {
|
|
|
|
System.Threading.Tasks.Task.Delay(1000).Wait();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
|
|
|
|
let plugin = {
|
|
|
|
author: 'RaidMax',
|
|
|
|
version: 1.0,
|
|
|
|
name: 'Ping Pong Sample Command Plugin',
|
|
|
|
|
|
|
|
onEventAsync: function (gameEvent, server) {
|
|
|
|
},
|
|
|
|
|
|
|
|
onLoadAsync: function (manager) {
|
2020-09-26 19:13:56 -04:00
|
|
|
this.logger = _serviceResolver.ResolveService("ILogger");
|
|
|
|
this.logger.WriteDebug("sample plugin loaded");
|
2020-05-11 17:10:43 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
onUnloadAsync: function () {
|
|
|
|
},
|
|
|
|
|
|
|
|
onTickAsync: function (server) {
|
|
|
|
}
|
|
|
|
};
|