mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-11 11:49:12 +00:00
Create /paytoggle
command. Resolves #413
This commit is contained in:
parent
f1d9cda5eb
commit
2493c655f8
29 changed files with 131 additions and 0 deletions
|
@ -163,4 +163,8 @@ public interface IUser {
|
|||
void setAfkMessage(final String message);
|
||||
|
||||
long getAfkSince();
|
||||
|
||||
boolean isAcceptingPay();
|
||||
|
||||
void setAcceptingPay(boolean acceptingPay);
|
||||
}
|
||||
|
|
|
@ -89,6 +89,7 @@ public abstract class UserData extends PlayerExtension implements IConf {
|
|||
logoutLocation = _getLogoutLocation();
|
||||
lastAccountName = _getLastAccountName();
|
||||
commandCooldowns = _getCommandCooldowns();
|
||||
acceptingPay = _getAcceptingPay();
|
||||
}
|
||||
|
||||
private BigDecimal money;
|
||||
|
@ -879,6 +880,22 @@ public abstract class UserData extends PlayerExtension implements IConf {
|
|||
save();
|
||||
}
|
||||
|
||||
private boolean acceptingPay = true; // players accept pay by default
|
||||
|
||||
public boolean _getAcceptingPay() {
|
||||
return config.getBoolean("acceptingPay", true);
|
||||
}
|
||||
|
||||
public boolean isAcceptingPay() {
|
||||
return acceptingPay;
|
||||
}
|
||||
|
||||
public void setAcceptingPay(boolean acceptingPay) {
|
||||
this.acceptingPay = acceptingPay;
|
||||
config.setProperty("acceptingPay", acceptingPay);
|
||||
save();
|
||||
}
|
||||
|
||||
public UUID getConfigUUID() {
|
||||
return config.uuid;
|
||||
}
|
||||
|
|
|
@ -44,6 +44,10 @@ public class Commandpay extends EssentialsLoopCommand {
|
|||
protected void updatePlayer(final Server server, final CommandSource sender, final User player, final String[] args) throws ChargeException {
|
||||
User user = ess.getUser(sender.getPlayer());
|
||||
try {
|
||||
if (!player.isAcceptingPay()) {
|
||||
sender.sendMessage(tl("notAcceptingPay", player.getDisplayName()));
|
||||
return;
|
||||
}
|
||||
user.payUser(player, amount);
|
||||
Trade.log("Command", "Pay", "Player", user.getName(), new Trade(amount, ess), player.getName(), new Trade(amount, ess), user.getLocation(), ess);
|
||||
} catch (MaxMoneyException ex) {
|
||||
|
|
|
@ -0,0 +1,32 @@
|
|||
package com.earth2me.essentials.commands;
|
||||
|
||||
import static com.earth2me.essentials.I18n.tl;
|
||||
|
||||
import com.earth2me.essentials.I18n;
|
||||
import com.earth2me.essentials.User;
|
||||
|
||||
import org.bukkit.Server;
|
||||
|
||||
public class Commandpaytoggle extends EssentialsCommand {
|
||||
|
||||
public Commandpaytoggle() {
|
||||
super("paytoggle");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run(Server server, User user, String commandLabel, String[] args) throws Exception {
|
||||
boolean acceptingPay = !user.isAcceptingPay();
|
||||
if (commandLabel.contains("payon")) {
|
||||
acceptingPay = true;
|
||||
} else if (commandLabel.contains("payoff")) {
|
||||
acceptingPay = false;
|
||||
}
|
||||
user.setAcceptingPay(acceptingPay);
|
||||
if (acceptingPay) {
|
||||
user.sendMessage(tl("payToggleOn"));
|
||||
} else {
|
||||
user.sendMessage(tl("payToggleOff"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -291,6 +291,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
|
|||
noPowerTools=\u00a76You have no power tools assigned.
|
||||
noWarpsDefined=\u00a76No warps defined.
|
||||
none=none
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74You are not authorized to use question.
|
||||
notAllowedToShout=\u00a74You are not authorized to shout.
|
||||
notEnoughExperience=\u00a74You do not have enough experience.
|
||||
|
@ -308,6 +309,8 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74.
|
|||
onlySunStorm=\u00a74/weather only supports sun/storm.
|
||||
orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait...
|
||||
oversizedTempban=\u00a74You may not ban a player for this period of time.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Nemas opravneni k nastaveni efektu \u00a7c{0} \u00a74t
|
|||
noPowerTools=Nemas zadny mocny nastroj.
|
||||
noWarpsDefined=Nejsou nastaveny zadne warpy.
|
||||
none=zadny
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a7cNejsi opravnen pouzit otazku.
|
||||
notAllowedToShout=\u00a7cNejsi opravnen pouzit kriceni.
|
||||
notEnoughExperience=Nemas dostatek zkusenosti.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Jen hraci ve hre muzou pouzit \u00a7c{0}\u00a74.
|
|||
onlySunStorm=/weather podporuje pouze sun/storm.
|
||||
orderBalances=Usporadavam bohatstvi {0} hracu, prosim vydrz ...
|
||||
oversizedTempban=\u00a74Nemuzes potrestat hrace ne tak dlouhou dobu.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7eCas hrace u00a7f je {1}. //???
|
||||
pTimeCurrentFixed=\u00a7eCas hrace {0} u00a7f je nastaven na {1}.
|
||||
pTimeNormal=\u00a7eCas hrace {0}\u00a7f je normalni a souhlasi s casem serveru.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Du har ikke tilladelse til at tilf\u00f8je effekten \u
|
|||
noPowerTools=\u00a76Du har ingen magtv\u00e6rkt\u00f8jer tildelt.
|
||||
noWarpsDefined=\u00a76Ingen warps defineret.
|
||||
none=ingen
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74Du er ikke autoriseret til at bruge sp\u00f8rgsm\u00e5l.
|
||||
notAllowedToShout=\u00a74Du er ikke autoriseret til at r\u00e5be.
|
||||
notEnoughExperience=\u00a74Du har ikke nok experience.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Kun spillere p\u00e5 serveren kan bruge \u00a7c{0}\u00a74.
|
|||
onlySunStorm=\u00a74/weather underst\u00f8tter kun sun/storm.
|
||||
orderBalances=\u00a76Tjekker saldi af\u00a7c {0} \u00a76brugere. Vent venligst...
|
||||
oversizedTempban=\u00a74Du kan ikke bandlyse den spiller i det tidsrum.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''s tid er\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76''s tid er fastsat til\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''s tid er normal og matcher serverens tid.
|
||||
|
|
|
@ -291,6 +291,7 @@ noPotionEffectPerm=\u00a74Du darfst den Zaubertrankeffekt \u00a7c{0} \u00a74dies
|
|||
noPowerTools=\u00a76Du hast keine Powertools zugewiesen.
|
||||
noWarpsDefined=\u00a76Keine Warp-Punkte erstellt.
|
||||
none=keine
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74Du bist nicht berechtigt zu fragen.
|
||||
notAllowedToShout=\u00a74Du bist nicht berechtigt zu schreien.
|
||||
notEnoughExperience=\u00a74Du hast nicht genug Erfahrung.
|
||||
|
@ -308,6 +309,8 @@ onlyPlayers=\u00a74Nur Ingame-Spieler k\u00f6nnen \u00a7c{0} \u00a74benutzen.
|
|||
onlySunStorm=\u00a74/weather unterst\u00fctzt nur sun und storm.
|
||||
orderBalances=\u00a76Ordne die Kontost\u00e4nde von\u00a7c {0} \u00a76Benutzern, bitte warten ...
|
||||
oversizedTempban=\u00a74Du darfst einen Spieler nicht f\u00fcr so eine lange Zeit verbannen.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a76Die Zeit f\u00fcr\u00a7c {0} \u00a76ist\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 wurde auf \u00a7c{1}\u00a76 gesetzt.
|
||||
pTimeNormal=\u00a76Die Zeit f\u00fcr \u00a7c{0}\u00a76 ist normal und entspricht der Serverzeit.
|
||||
|
|
|
@ -290,6 +290,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
|
|||
noPowerTools=\u00a76You have no power tools assigned.
|
||||
noWarpsDefined=\u00a76No warps defined.
|
||||
none=none
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74You are not authorized to use question.
|
||||
notAllowedToShout=\u00a74You are not authorized to shout.
|
||||
notEnoughExperience=\u00a74You do not have enough experience.
|
||||
|
@ -307,6 +308,8 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74.
|
|||
onlySunStorm=\u00a74/weather only supports sun/storm.
|
||||
orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait...
|
||||
oversizedTempban=\u00a74You may not ban a player for this period of time.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74No tienes permiso para aplicar el efecto\u00a7c {0} \u
|
|||
noPowerTools=\u00a76No tienes ninguna herramienta el\u00e9ctrica asignada.
|
||||
noWarpsDefined=\u00a76No hay warps disponibles.
|
||||
none=ninguno
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74No est\u00e1s autorizado para hacer una pregunta.
|
||||
notAllowedToShout=\u00a74No est\u00e1s autorizado para gritar.
|
||||
notEnoughExperience=\u00a74No tienes la experiencia necesaria.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Solo jugadores dentro del juego pueden usar \u00a7c{0}\u00a74
|
|||
onlySunStorm=\u00a7c/weather \u00a74solo acepta los valores \u00a7csun \u00a74o \u00a7cstorm \u00a74(\u00a76sol\u00a74/\u00a76tormenta\u00a74).
|
||||
orderBalances=Creando un ranking de {0} usuarios segun su presupuesto, espera...
|
||||
oversizedTempban=\u00a74No puedes banear por ese periodo de tiempo.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a76La hora de \u00a7c{0} es\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76 la hora ha sido corregida a\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0} \u00a77\: el tiempo es normal (coincide con el del servidor).
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Teil ei ole luba, et lisada n\u00f5iajoogi effekti \u0
|
|||
noPowerTools=\u00a76Teil ei ole power tool-e m\u00e4\u00e4ratud.
|
||||
noWarpsDefined=\u00a76L\u00f5ime ei ole m\u00e4\u00e4ratud.
|
||||
none=mitte \u00fckski
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74Te ei ole autoriseeritud, et kasutada k\u00fcsimust.
|
||||
notAllowedToShout=\u00a74Te ei ole autoriseeritud, et karjuda.
|
||||
notEnoughExperience=\u00a74Teil ei ole piisavalt exp-d.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74K\u00e4sku \u00a7c{0}\u00a74 saab kasutada ainult m\u00e4ngus
|
|||
onlySunStorm=\u00a74/weather toetab ainult sun/storm.
|
||||
orderBalances=\u00a76J\u00e4rjestan\u00a7c {0} \u00a76m\u00e4ngija raha, palun oota...
|
||||
oversizedTempban=\u00a74Sa ei saa blokeerida m\u00e4ngijat nii pikaks ajaks.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''i aeg on\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76''i aeg on peatatud\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''i aeg on normaalne ja kattub serveriga.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
|
|||
noPowerTools=Ei voimaty\u00f6kaluja laitettu.
|
||||
noWarpsDefined=Ei warppeja
|
||||
none=ei mit\u00e4\u00e4n
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a7cSinulla ei ole lupaa k\u00e4ytt\u00e4\u00e4 kysymyst\u00e4.
|
||||
notAllowedToShout=\u00a7cSinulla ei ole lupaa huutaa.
|
||||
notEnoughExperience=Sinulla ei ole tarpeeksi kokemusta.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74.
|
|||
onlySunStorm=/weather tukee vain sun/storm.
|
||||
orderBalances=J\u00e4rjestet\u00e4\u00e4n rahatilanteita {0}, odota...
|
||||
oversizedTempban=\u00a74You may not ban a player for this period of time.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=Pelaajan \u00a7e{0}\u00a7f aika on {1}.
|
||||
pTimeCurrentFixed=Pelaajan \u00a7e{0}\u00a7f aika on korjattu {1}.
|
||||
pTimeNormal=Pelaajan \u00a7e{0}\u00a7f aika on normaali ja vastaa palvelimen aikaa.
|
||||
|
|
|
@ -290,6 +290,7 @@ noPotionEffectPerm=\u00a74Vous n''avez pas la permission d''appliquer l''effet \
|
|||
noPowerTools=Vous n''avez pas d''outil macro associ\u00e9.
|
||||
noWarpsDefined=Aucun warp d\u00e9fini.
|
||||
none=aucun
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 poser des questions.
|
||||
notAllowedToShout=\u00a7cVous n''\u00eates pas autoris\u00e9 \u00e0 crier.
|
||||
notEnoughExperience=Vous n''avez pas assez d''exp\u00e9rience.
|
||||
|
@ -307,6 +308,8 @@ onlyPlayers=\u00a74Seul les joueurs en jeu peuvent utiliser \u00a7c{0}\u00a74.
|
|||
onlySunStorm=/weather ne supporte que (soleil) sun/storm (temp\u00eate).
|
||||
orderBalances=Classement des soldes des {0} joueurs, patientez...
|
||||
oversizedTempban=\u00a74Vous ne pouvez pas bannir un joueur pour cette p\u00e9riode.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=Pour \u00a7e{0}\u00a7f l''heure est {1}.
|
||||
pTimeCurrentFixed=L''heure de \u00a7e{0}\u00a7f est fix\u00e9e \u00e0 {1}.
|
||||
pTimeNormal=\u00a7fPour \u00a7e{0}\u00a7f l''heure est normale et correspond au serveur.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
|
|||
noPowerTools=\u00a76You have no power tools assigned.
|
||||
noWarpsDefined=\u00a76Nincs m\u00e9g egy warp se.
|
||||
none=none
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74You are not authorized to use question.
|
||||
notAllowedToShout=\u00a74You are not authorized to shout.
|
||||
notEnoughExperience=\u00a74You do not have enough experience.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Csak j\u00e1t\u00e9kon bel\u00fcl haszn\u00e1lhat\u00f3 a \u0
|
|||
onlySunStorm=\u00a74/weather only supports sun/storm.
|
||||
orderBalances=\u00a76Egyenlegek \u00f6sszegy\u00fcjt\u00e9se\u00a7c {0} \u00a76j\u00e1t\u00e9kost\u00f3l, k\u00e9rlek v\u00e1rj...
|
||||
oversizedTempban=\u00a74You may not ban a player for this period of time.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Non hai il permesso di applicare questo effetto di poz
|
|||
noPowerTools=\u00a76Non hai nessun power tool assegnato.
|
||||
noWarpsDefined=\u00a76Nessun warp definito.
|
||||
none=nessun
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74Non sei autorizzato a fare domande.
|
||||
notAllowedToShout=\u00a74Non hai il permesso di gridare.
|
||||
notEnoughExperience=\u00a74Non hai abbastanza esperienza.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Solo in gioco i giocatori possono usare \u00a7c{0}\u00a74.
|
|||
onlySunStorm=/weather supporta solo sun/storm.
|
||||
orderBalances=\u00a76Ordinamento bilanci di\u00a7c {0} \u00a76utenti, attendere prego...
|
||||
oversizedTempban=\u00a74Non potrai esiliare giocatori in questo arco di tempo.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a76L''orario di \u00a7c{0}\u00a76 e''\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=L''orario di \u00a7e{0}\u00a7f e'' fissato alle {1}.
|
||||
pTimeNormal=L''orario di \u00a7e{0}\u00a7f e'' normale e corrisponde a quello del server.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74\ub2f9\uc2e0\uc740 \uc774 \ud3ec\uc158\uc5d0 \u00a7c{0
|
|||
noPowerTools=\u00a76\ud560\ub2f9\ub41c \ud30c\uc6cc\ud234\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.
|
||||
noWarpsDefined=&6\uc124\uc815\ub41c \uc6cc\ud504\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.
|
||||
none=\uc5c6\uc74c
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74\ub2f9\uc2e0\uc740 \uc9c8\ubb38\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
||||
notAllowedToShout=\u00a74\uc678\uce60 \uc218 \uc788\ub294 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.
|
||||
notEnoughExperience=\u00a74\uacbd\ud5d8\uce58\uac00 \ubd80\uc871\ud569\ub2c8\ub2e4.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74\ubc84\ud0b7\uc5d0\uc11c\ub294 \u00a7c{0}\u00a74 \ub97c \uc0a
|
|||
onlySunStorm=\u00a74/\ub0a0\uc528\ub294 \ub9d1\uc74c/\ud750\ub9bc\ub9cc \uc124\uc815\uc774 \uac00\ub2a5\ud569\ub2c8\ub2e4.
|
||||
orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait...
|
||||
oversizedTempban=\u00a74You may not \ucc28\ub2e8 a player for this period of time.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00
|
|||
noPowerTools=\u00a76You have no power tools assigned.
|
||||
noWarpsDefined=\u00a76Jokie warps neegzistuoja.
|
||||
none=niekas
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74J\u016bs nesate \u012fgaliotas naudotis klausim\u0105.
|
||||
notAllowedToShout=\u00a74You are not authorized to shout.
|
||||
notEnoughExperience=\u00a74Tu turi per ma\u017eai patirties.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Turite b\u016bti \u017eaidime, jeigu norite naudoti \u00a7c{0
|
|||
onlySunStorm=\u00a74Naudojimas\: /weather \u00a72sun/storm.
|
||||
orderBalances=\u00a76Ordering balances of\u00a7c {0} \u00a76users, please wait...
|
||||
oversizedTempban=\u00a74Tu negali u\u017eblokuoti \u017eaid\u0117jo laikinai.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''s time is\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76''s time is fixed to\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''s time is normal and matches the server.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74U heeft geen toestemming om het \u00a7c{0} \u00a74effe
|
|||
noPowerTools=\u00a76U heeft geen powertools toegewezen.
|
||||
noWarpsDefined=Geen warps gedefinieerd
|
||||
none=geen
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74U bent niet bevoegd om de vraag functie te gebruiken.
|
||||
notAllowedToShout=\u00a74U bent niet bevoegd om de roep functie te gebruiken.
|
||||
notEnoughExperience=\u00a74U heeft niet genoeg experience.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=&4Alleen ingame spelers kunnen &c{0}&4 gebruiken.
|
|||
onlySunStorm=\u00a74/weather ondersteunt alleen sun/storm.
|
||||
orderBalances=\u00a76Saldo''s bestellen van\u00a7c {0} \u00a76gebruikers, een moment geduld alstublieft...
|
||||
oversizedTempban=\u00a74U kunt een speler niet verbannen voor deze lange period van tijd.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''s tijd is\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7cc{0}\u00a76''s tijd is vastgezet op\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''s tijd is normaal en komt overeen met de server.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Nie masz uprawnien by dodac efekt \u00a7c{0} \u00a74te
|
|||
noPowerTools=\u00a77Nie masz przypisanego zadnego power tool.
|
||||
noWarpsDefined=\u00a77Nie ma zadnych warpow.
|
||||
none=zaden
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74Nie mozesz zadac tego pytania.
|
||||
notAllowedToShout=\u00a74Nie mozesz krzyczec..
|
||||
notEnoughExperience=\u00a74Nie masz wystarczajaco duzo doswiadczenia.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Tylko gracze bedacy w grze moga uzyc {0}.
|
|||
onlySunStorm=\u00a74/weather obsluguje tylko sun/storm.
|
||||
orderBalances=Pobieram fundusze {0} graczy, prosze czekac ...
|
||||
oversizedTempban=\u00a74Nie mozesz teraz zbanowac tego gracza.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=Czas \u00a7e{0} u00a7f to {1}.
|
||||
pTimeCurrentFixed=\u00a77Czas \u00a7c{0}\u00a77 przywrocony do\u00a7c {1}\u00a77.
|
||||
pTimeNormal=\u00a77Czas \u00a7c{0}''s\u00a77 jest normalny i odpowiada serwerowemu.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00A74N\u00E3o tens permiss\u00E3o para aplicar o efeito \u0
|
|||
noPowerTools=\u00A76N\u00E3o tens nenhuma ferramenta de poder atribu\u00EDda.
|
||||
noWarpsDefined=\u00A76Nenhum warp definido.
|
||||
none=nada
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00A74N\u00E3o tens permiss\u00E3o para usar a pergunta.
|
||||
notAllowedToShout=\u00A74N\u00E3o tens permiss\u00E3o para gritar.
|
||||
notEnoughExperience=\u00A74N\u00E3o tens experi\u00EAncia suficiente.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00A74Apenas jogadores podem usar \u00A7c{0}\u00A74.
|
|||
onlySunStorm=\u00A74/weather suporta apenas sun/storm.
|
||||
orderBalances=\u00A76A organizar saldos de\u00A7c {0} \u00A76jogadores, aguarda...
|
||||
oversizedTempban=\u00A74N\u00E3o podes banir um jogador por tanto tempo.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00A76O tempo para \u00A7c{0}\u00A76 e \u00A7c {1}\u00A76.
|
||||
pTimeCurrentFixed=\u00A76O tempo para \u00A7c{0}\u00A76 foi bloqueado para\u00A7c {1}\u00A76.
|
||||
pTimeNormal=\u00A76O tempo de \u00A7c{0}\u00A76 est\u00E1 normal e corresponde ao do servidor.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para aplicar o e
|
|||
noPowerTools=\u00A76Voc\u00EA n\u00E3o tem nenhuma ferramenta de poder atribuida.
|
||||
noWarpsDefined=\u00A76Nenhum warp definido.
|
||||
none=nada
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para usar a pergunta.
|
||||
notAllowedToShout=\u00A74Voc\u00EA n\u00E3o tem permiss\u00E3o para gritar.
|
||||
notEnoughExperience=\u00A74Voc\u00EA n\u00E3o tem experiencia o suficiente.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00A74Apenas jogadores no jogo podem usar \u00A7c{0}\u00A74.
|
|||
onlySunStorm=\u00A74/weather suporta apenas sun/storm.
|
||||
orderBalances=\u00A76Organizando saldos de\u00A7c {0} \u00A76usu\u00E1rios, aguarde...
|
||||
oversizedTempban=\u00A74Voc\u00EA n\u00E3o pode banir um jogador por esse per\u00EDodo de tempo.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00A76O tempo para \u00A7c{0}\u00A76 e \u00A7c {1}\u00A76.
|
||||
pTimeCurrentFixed=\u00A76O tempo para \u00A7c{0}\u00A76 foi arrumado para\u00A7c {1}\u00A76.
|
||||
pTimeNormal=\u00A76O tempo de \u00A7c{0}\u00A76 est\u00E1 normal e correspondendo ao do servidor.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Nu ai permisiunea sa aplici efectul\u00a7c{0} \u00a74p
|
|||
noPowerTools=\u00a76Nu ai nicio putere pe acest obiect.
|
||||
noWarpsDefined=\u00a76Nu sunt teleportari specificate.
|
||||
none=nimic
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74Nu ai permisiunea sa intrebi.
|
||||
notAllowedToShout=\u00a74Nu ai permisiunea sa strigi.
|
||||
notEnoughExperience=\u00a74Nu ai destula experienta.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74.
|
|||
onlySunStorm=\u00a74/weather suporta doar sun/storm.
|
||||
orderBalances=\u00a76Se ordoneaza balantele a\u00a7c {0} \u00a76jucatori, te rog asteapta...
|
||||
oversizedTempban=\u00a74Nu poti interzice un jucator pentru asa o perioada de timp.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 este\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 a fost fixat la\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a76Timpul jucatorului \u00a7c{0}\u00a76 este timpul normal si potrivit serverului.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0
|
|||
noPowerTools=\u00a76\u0423 \u0412\u0430\u0441 \u043d\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u043e\u0432.
|
||||
noWarpsDefined=\u00a76\u041d\u0435\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0445 \u0432\u0430\u0440\u043f\u043e\u0432.
|
||||
none=\u043d\u0438\u0447\u0435\u0433\u043e
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439, \u043d\u0430\u0447\u0438\u043d\u0430\u044e\u0449\u0438\u0445\u0441\u044f \u0441 \u0432\u043e\u043f\u0440\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u043d\u0430\u043a\u0430.
|
||||
notAllowedToShout=\u00a74\u0423 \u0412\u0430\u0441 \u043d\u0435\u0442 \u043f\u0440\u0430\u0432 \u043d\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0447\u0430\u0442\u0430.
|
||||
notEnoughExperience=\u00a74\u041d\u0435 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043e\u043f\u044b\u0442\u0430.
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74\u0422\u043e\u043b\u044c\u043a\u043e \u0432 \u0438\u0433\u044
|
|||
onlySunStorm=\u00a74\u041a\u043e\u043c\u0430\u043d\u0434\u0430 /weather \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442 \u0442\u043e\u043b\u044c\u043a\u043e sun/storm.
|
||||
orderBalances=\u00a76\u041f\u043e\u0434\u0441\u0447\u0435\u0442 \u0431\u0430\u043b\u0430\u043d\u0441\u0430\u00a7c {0} \u00a76\u0438\u0433\u0440\u043e\u043a\u043e\u0432, \u043f\u043e\u0434\u043e\u0436\u0434\u0438 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f.
|
||||
oversizedTempban=\u00a74\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0431\u0430\u043d\u0438\u0442\u044c \u0438\u0433\u0440\u043e\u043a\u0430 \u043d\u0430 \u0442\u0430\u043a\u043e\u0439 \u0441\u0440\u043e\u043a.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0} - {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0}\u00a76 \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043d\u0430\u00a7c {1}\u00a76.
|
||||
pTimeNormal=\u00a76\u0412\u0440\u0435\u043c\u044f \u0438\u0433\u0440\u043e\u043a\u0430 \u00a7c{0}\u00a76 \u0442\u0435\u043f\u0435\u0440\u044c \u0442\u0430\u043a\u043e\u0435 \u0436\u0435, \u043a\u0430\u043a \u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Du har inte till\u00e5telse att l\u00e4gga till brygd-
|
|||
noPowerTools=Du har inga power-tools tilldelade.
|
||||
noWarpsDefined=Inga warpar \u00e4r definerade
|
||||
none=inga
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a7cDu har inte tillst\u00e5nd att anv\u00e4nda den fr\u00e5gan.
|
||||
notAllowedToShout=\u00a7cDu har inte tillst\u00e5nd att ropa.
|
||||
notEnoughExperience=Du har inte nog med erfarenhet.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74Bunun Icin Gerekli Izine Sahip Degilsin\!
|
|||
noPowerTools=\u00a76Aktif Edilmis Herhangi Bir Guc Aleti Yok\!
|
||||
noWarpsDefined=\u00a76Hic Warp Yok\!
|
||||
none=yok
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74Soru Sorabilmek Icin Izinin Yok\!
|
||||
notAllowedToShout=\u00a74Bagirmak Icin Iznin Yok\!
|
||||
notEnoughExperience=\u00a74Yeterli Exp Yok\!
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Sadece Oyun Icinde Kullanilabilir Bir Komut {0}.
|
|||
onlySunStorm=\u00a74/weather sadece sun/storm destekliyor.
|
||||
orderBalances=\u00a7c {0} \u00a76Adli oyuncularin bakiyesi listeleniyor, l\u00fctfen bekleyin...
|
||||
oversizedTempban=\u00a74Oyunculari bu kadar sure yasaklayamazsin.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a7c{0}\u00a76''in zaman\u0131\:\u00a7c {1}\u00a76.
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76''in zaman\u0131 {1}\u00a76''a ayarland\u0131.
|
||||
pTimeNormal=\u00a7c{0}\u00a76''in zaman\u0131 do\u011fru ve sunucuya uyuyor.
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74\u4f60\u6ca1\u6709\u6743\u9650\u5e94\u7528\u7279\u6548
|
|||
noPowerTools=\u00a76\u4f60\u6ca1\u6709\u7ed1\u5b9a\u547d\u4ee4
|
||||
noWarpsDefined=\u00a74\u6ca1\u6709\u786e\u5b9a\u7684\u5730\u6807
|
||||
none=\u65e0
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u4f7f\u7528\u63d0\u95ee\u53d1\u8a00
|
||||
notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6743\u4f7f\u7528\u558a\u8bdd\u53d1\u8a00
|
||||
notEnoughExperience=\u00a74\u4f60\u6ca1\u6709\u8db3\u591f\u7684\u7ecf\u9a8c\u503c
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74Only in-game players can use \u00a7c{0}\u00a74.
|
|||
onlySunStorm=\u00a74/weather \u547d\u4ee4\u53ea\u6709 sun/storm \u4e24\u4e2a\u9009\u62e9
|
||||
orderBalances=\u00a76\u6392\u5e8f {0} \u00a76\u4e2a\u73a9\u5bb6\u7684\u8d44\u91d1\u4e2d,\u8bf7\u7a0d\u5019\u2026\u2026
|
||||
oversizedTempban=\u00a74\u4f60\u53ef\u80fd\u6ca1\u6709\u5728\u8fd9\u4e2a\u65f6\u6bb5\u5c01\u7981\u73a9\u5bb6.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u65f6\u95f4\u662f \u00a7c{1}
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u65f6\u95f4\u88ab\u8fde\u63a5\u5230 \u00a7c{1}
|
||||
pTimeNormal=\u00a7c{0}\u00a76 \u7684\u65f6\u95f4\u662f\u6b63\u5e38\u7684\u5e76\u4e0e\u670d\u52a1\u5668\u540c\u6b65
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74\u4f60\u6c92\u6709\u6b0a\u9650\u61c9\u7528\u7279\u6548
|
|||
noPowerTools=\u00a76\u4f60\u6c92\u6709\u7d81\u5b9a\u547d\u4ee4
|
||||
noWarpsDefined=\u00a74\u6c92\u6709\u78ba\u5b9a\u7684\u5730\u6a19
|
||||
none=\u7121
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u63d0\u554f\u767c\u8a00
|
||||
notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u558a\u8a71\u767c\u8a00
|
||||
notEnoughExperience=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u7d93\u9a57\u503c
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74\u53ea\u6709\u904a\u6232\u4e2d\u7684\u73a9\u5bb6\u53ef\u4ee5\
|
|||
onlySunStorm=\u00a74/weather \u547d\u4ee4\u53ea\u6709 sun/storm \u5169\u500b\u9078\u64c7
|
||||
orderBalances=\u00a76\u6392\u5e8f {0} \u00a76\u500b\u73a9\u5bb6\u7684\u8cc7\u91d1\u4e2d,\u8acb\u7a0d\u5019\u2026\u2026
|
||||
oversizedTempban=\u00a74\u4f60\u53ef\u80fd\u6c92\u6709\u5728\u9019\u500b\u6642\u6bb5\u5c01\u7981\u73a9\u5bb6.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u6642\u9593\u662f \u00a7c{1}
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{1}
|
||||
pTimeNormal=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u662f\u6b63\u5e38\u7684\u4e26\u8207\u670d\u52d9\u5668\u540c\u6b65
|
||||
|
|
|
@ -289,6 +289,7 @@ noPotionEffectPerm=\u00a74\u4f60\u6c92\u6709\u8a31\u53ef\u6b0a\u61c9\u7528\u7279
|
|||
noPowerTools=\u00a76\u4f60\u6c92\u6709\u7d81\u5b9a\u547d\u4ee4
|
||||
noWarpsDefined=\u00a74\u6c92\u6709\u78ba\u5b9a\u7684\u5730\u6a19
|
||||
none=\u7121
|
||||
notAcceptingPay=\u00a74{0} \u00a74is not accepting payment.
|
||||
notAllowedToQuestion=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u63d0\u554f\u767c\u8a00
|
||||
notAllowedToShout=\u00a74\u4f60\u672a\u88ab\u6388\u6b0a\u4f7f\u7528\u558a\u8a71\u767c\u8a00
|
||||
notEnoughExperience=\u00a74\u4f60\u6c92\u6709\u8db3\u5920\u7684\u7d93\u9a57\u503c
|
||||
|
@ -306,6 +307,8 @@ onlyPlayers=\u00a74\u53ea\u6709\u904a\u6232\u4e2d\u7684\u73a9\u5bb6\u53ef\u4ee5\
|
|||
onlySunStorm=\u00a74/weather \u547d\u4ee4\u53ea\u6709 sun/storm \u5169\u500b\u9078\u64c7
|
||||
orderBalances=\u00a76\u6392\u5e8f {0} \u00a76\u500b\u73a9\u5bb6\u7684\u8cc7\u91d1\u4e2d,\u8acb\u7a0d\u5019\u2026\u2026
|
||||
oversizedTempban=\u00a74\u4f60\u53ef\u80fd\u6c92\u6709\u5728\u9019\u500b\u6642\u6bb5\u5c01\u7981\u73a9\u5bb6.
|
||||
payToggleOn=\u00a76You are now accepting payments.
|
||||
payToggleOff=\u00a76You are no longer accepting payments.
|
||||
pTimeCurrent=\u00a76{0}\u00a7c \u00a76\u7684\u6642\u9593\u662f \u00a7c{1}
|
||||
pTimeCurrentFixed=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u88ab\u9023\u63a5\u5230 \u00a7c{1}
|
||||
pTimeNormal=\u00a7c{0}\u00a76 \u7684\u6642\u9593\u662f\u6b63\u5e38\u7684\u4e26\u8207\u4f3a\u670d\u5668\u540c\u6b65
|
||||
|
|
|
@ -279,6 +279,10 @@ commands:
|
|||
description: Pays another player from your balance.
|
||||
usage: /<command> <player> <amount>
|
||||
aliases: [epay]
|
||||
paytoggle:
|
||||
description: Toggles whether you are accepting payments.
|
||||
usage: /<command>
|
||||
aliases: [epaytoggle, payoff, epayoff, payon, epayon]
|
||||
ping:
|
||||
description: Pong!
|
||||
usage: /<command>
|
||||
|
|
Loading…
Reference in a new issue