By continuing to use this site, you agree to the Terms of Service of this website, including usage of cookies.
OK, Don't show this again
/ffa create "your arena name"
to create the arena./ffa setlobby
to set it./ffa setrespawn
that will return to it after death (you can turn on/off from config)/ffa reload
to load the arena./ffa join "your arena name"
enjoy. if you want leave the game type /ffa quit
{PLAYER}
: to get the player name{ARENA} | {GAME}
: to get the arena name&
: same as §
{WORLD}
: to get arena world name{PLAYERS}
: to get arena players count{TIME}
: to get player protected time leftscoreboardIp
: you can set to your server ip to show it in the game scoreboardbanned-commands
: you can add the commands who want to banned in the gamedeath-respawn-inMap
: that's will return the player to respawn position after death, you can set to true
or false
join-and-respawn-protected
: that's will protect the player for 3 seconds after join and respawnprotected-time
: to can edit the protect timeprotected-message
: to edit protect messagedeath-attack-message
: here you can set the death message when killed by someonedeath-void-message
: and here you can set the death message when killed by voidjoin-message
: to edit player join messageleave-message
: to edit player leave messagekills-messages
: to add/remove kill messages, this message will send to player every 5 kills automaticallyscoreboard-title
: to edit scoreboard title nameprovider
: currently now it's support sqlit3
only do not change itdatabase
: do not change anythingkits
: you can edit the default kit right now, example:kits:
default:
slot-0:
id: 267
meta: 0
count: 1
enchants: []
slot-1:
id: 322
meta: 0
count: 5
enchants: []
helmet:
id: 306
enchants: []
chestplate:
id: 307
enchants:
id-0:
level: 2
leggings:
id: 308
enchants: []
boots:
id: 309
enchants: []
Command | Description | Permission |
---|---|---|
/ffa join <ArenaName:optional> |
To join a specific or random arena |
No permission |
/ffa quit |
To leave the arena |
No permission |
/ffa help |
To see commands list |
ffa.command.admin |
/ffa create |
To create a new arena |
ffa.command.admin |
/ffa remove |
To delete a specific arena |
ffa.command.admin |
/ffa setlobby |
To set lobby position in arena |
ffa.command.admin |
/ffa setrespawn |
To set respawn position in arena |
ffa.command.admin |
/ffa reload |
re-loaded the kits and arenas |
ffa.command.admin |
/ffa list |
To see arenas list |
ffa.command.admin |
use Laith98Dev\FFA\Main as FFA;
// add kills to player
FFA::getInstaance()->addKill(Player, $amount);
// add kills to player by name
FFA::getInstaance()->addKillByName("player name", $amount);
// add deaths to player
FFA::getInstaance()->addDeath(Player, $amount);
// add deaths to player by name
FFA::getInstaance()->addDeathByName("player name", $amount);
// get player kills
FFA::getInstaance()->getKills(Player, function (int $kills){
// TODO
});
// get player kills by name
FFA::getInstaance()->getKillsByName("player name", function (int $kills){
// TODO
});
// get player deaths
FFA::getInstaance()->getDeaths(Player, function (int $deaths){
// TODO
});
// get player deaths by name
FFA::getInstaance()->getDeathsByName("player name", function (int $deaths){
// TODO
});
Reply to review by :
You can leave one review per plugin release, and delete or update your review at any time