Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Essentials/src/com/earth2me/essentials/IUser.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,8 @@ public interface IUser {
CommandSource getSource();

String getName();

String getAfkMessage();

void setAfkMessage(final String message);
}
14 changes: 14 additions & 0 deletions Essentials/src/com/earth2me/essentials/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public class User extends UserData implements Comparable<User>, IMessageRecipien
private boolean enderSee = false;
private transient long teleportInvulnerabilityTimestamp = 0;
private boolean ignoreMsg = false;
private String afkMessage;

public User(final Player base, final IEssentials ess) {
super(base, ess);
Expand Down Expand Up @@ -426,6 +427,7 @@ public void setAfk(final boolean set) {
afkPosition = this.getLocation();
} else if (!set && isAfk()) {
afkPosition = null;
this.afkMessage = null;
}
if (ess.getSettings().isAfkListName()) {
if(set) {
Expand Down Expand Up @@ -759,4 +761,16 @@ public String getName() {
@Override public void setReplyRecipient(IMessageRecipient recipient) {
this.messageRecipient.setReplyRecipient(recipient);
}

@Override
public String getAfkMessage() {
return this.afkMessage;
}

@Override
public void setAfkMessage(String message) {
if (isAfk()) {
this.afkMessage = message;
}
}
}
38 changes: 32 additions & 6 deletions Essentials/src/com/earth2me/essentials/commands/Commandafk.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,45 @@ public Commandafk() {
@Override
public void run(Server server, User user, String commandLabel, String[] args) throws Exception {
if (args.length > 0 && user.isAuthorized("essentials.afk.others")) {
User afkUser = getPlayer(server, user, args, 0);
toggleAfk(afkUser);
User afkUser = user; // if no player found, but message specified, set command executor to target user
String message;
try {
afkUser = getPlayer(server, user, args, 0);
message = args.length > 1 ? getFinalArg(args, 1) : null;
} catch (PlayerNotFoundException e) {
// If only one arg is passed, assume the command executor is targeting another player.
if (args.length == 1) {
throw e;
}
message = getFinalArg(args, 0);
}
toggleAfk(user, afkUser, message);
} else {
toggleAfk(user);
String message = args.length > 0 ? getFinalArg(args, 0) : null;
toggleAfk(user, user, message);
}
}

@Override
public void run(Server server, CommandSource sender, String commandLabel, String[] args) throws Exception {
if (args.length > 0) {
User afkUser = getPlayer(server, args, 0, true, false);
toggleAfk(afkUser);
String message = args.length > 1 ? getFinalArg(args, 1) : null;
toggleAfk(null, afkUser, message);
} else {
throw new NotEnoughArgumentsException();
}
}

private void toggleAfk(User user) {
private void toggleAfk(User sender, User user, String message) throws Exception {
if (message != null && sender != null) {
if (sender.isMuted()) {
throw new Exception(tl("voiceSilenced"));
}
if (!sender.isAuthorized("essentials.afk.message")) {
throw new Exception(tl("noPermToAFKMessage"));
}
}
user.setDisplayNick();
String msg = "";
if (!user.toggleAfk()) {
Expand All @@ -44,8 +65,13 @@ private void toggleAfk(User user) {
} else {
//user.sendMessage(_("markedAsAway"));
if (!user.isHidden()) {
msg = tl("userIsAway", user.getDisplayName());
if (message != null) {
msg = tl("userIsAwayWithMessage", user.getDisplayName(), message);
} else {
msg = tl("userIsAway", user.getDisplayName());
}
}
user.setAfkMessage(message);
}
if (!msg.isEmpty()) {
ess.broadcastMessage(user, msg);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,12 @@ public String getName() {
break;
// When this recipient is AFK, notify the sender. Then, proceed to send the message.
case SUCCESS_BUT_AFK:
sendMessage(tl("userAFK", recipient.getDisplayName()));
// Currently, only IUser can be afk, so we unsafely cast to get the afk message.
if (((IUser) recipient).getAfkMessage() != null) {
sendMessage(tl("userAFKWithMessage", recipient.getDisplayName(), ((IUser) recipient).getAfkMessage()));
} else {
sendMessage(tl("userAFK", recipient.getDisplayName()));
}
default:
sendMessage(tl("msgFormat", tl("me"), recipient.getDisplayName(), message));
}
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to
noNewMail=\u00a76You have no new mail.
noPendingRequest=\u00a74You do not have a pending request.
noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob.
noPlacePermission=\u00a74You do not have permission to place a block near that sign.
noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion.
Expand Down Expand Up @@ -464,8 +465,10 @@ unvanishedReload=\u00a74A reload has forced you to become visible.
upgradingFilesError=Error while upgrading the files.
uptime=\u00a76Uptime\:\u00a7c {0}
userAFK=\u00a77{0} \u00a75is currently AFK and may not respond.
userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond: {1}
userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist.
userIsAway=\u00a77* {0} \u00a77is now AFK.
userIsAwayWithMessage=\u00a77* {0} \u00a77is now AFK.
userIsNotAway=\u00a77* {0} \u00a77is no longer AFK.
userJailed=\u00a76You have been jailed\!
userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_cs.properties
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Nemas opravneni na nastaveni metadat \u00a7c{0}\u00a74 tohoto
noNewMail=\u00a77Nemas zadny novy mail.
noPendingRequest=Nemas zadne neuzavrene zadosti.
noPerm=\u00a7cNemas \u00a7f{0}\u00a7c permici.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a7cNemas povoleni k spawnovani mobu.
noPlacePermission=\u00a7cNemas povoleni pokladat nebo nicit cokoliv blizko teto cedule.
noPotionEffectPerm=\u00a74Nemas opravneni k nastaveni efektu \u00a7c{0} \u00a74tohoto lektvaru.
Expand Down Expand Up @@ -459,8 +460,10 @@ unvanishedReload=\u00a74Probehl reload serveru; jsi zase viditelny.
upgradingFilesError=Chyba pri updatovani souboru.
uptime=\u00a76Server je online\:\u00a7c {0}
userAFK=\u00a77{0} \u00a75je nyni AFK a mozna nebude reagovat.
userAFKWithMessage=\u00a77{0} \u00a75je nyni AFK a mozna nebude reagovat. {1}
userDoesNotExist=Uzivatel {0} neexistuje.
userIsAway={0} je AFK.
userIsAwayWithMessage={0} je AFK.
userIsNotAway={0} se vratil.
userJailed=\u00a77Byl jsi uveznen.
userUnknown=\u00a74Pozor\: Hrac ''\u00a7c{0}\u00a74'' se jeste nikdy nepripojil na tento server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_da.properties
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Du har ikke tilladelse til at tilf\u00f8je \u00a7c{0}\u00a74 m
noNewMail=\u00a76Du har ingen nye beskeder.
noPendingRequest=\u00a74Du har ingen afventende anmodning.
noPerm=\u00a74Du har ikke tilladelsen\: \u00a7c{0}\u00a74
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74Du har ikke tilladelse til at spawne det mob.
noPlacePermission=\u00a74Du har ikke tilladelse til at placere en blok i n\u00e6rheden af det skilt.
noPotionEffectPerm=\u00a74Du har ikke tilladelse til at tilf\u00f8je effekten \u00a7c{0} \u00a74til denne eliksir.
Expand Down Expand Up @@ -459,8 +460,10 @@ unvanishedReload=\u00a74En reload har tvunget dig til at blive synlig.
upgradingFilesError=Der opstod en fejl under opgraderingen af filerne.
uptime=\u00a76Oppetid\:\u00a7c {0}
userAFK=\u00a75{0} \u00a75er pt. AFK og svarer m\u00e5ske ikke.
userAFKWithMessage=\u00a75{0} \u00a75er pt. AFK og svarer m\u00e5ske ikke. {1}
userDoesNotExist=\u00a74Brugeren\u00a7c {0} \u00a74eksisterer ikke.
userIsAway=\u00a75{0} \u00a75er nu AFK.
userIsAwayWithMessage=\u00a75{0} \u00a75er nu AFK.
userIsNotAway=\u00a75{0} \u00a75er ikke l\u00e6ngere AFK.
userJailed=\u00a76Du er blevet f\u00e6ngslet\!
userUnknown=\u00a74Advarsel\: Brugerem ''\u00a7c{0}\u00a74'' har aldrig spillet p\u00e5 serveren.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ noMetaPerm=\u00a74Du darfst dem Gegenstand \u00a7c{0}\u00a74 keine Metadaten geb
noNewMail=\u00a76Du hast keine neue Nachrichten.
noPendingRequest=\u00a74Du hast keine Teleportierungsanfragen.
noPerm=\u00a74Du hast die Berechtigung \u00a7c{0}\u00a74 nicht.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74Du bis nicht berechtigt, diesen Mob zu spawnen.
noPlacePermission=\u00a7cDu hast keine Rechte, einen Block in der N\u00e4he des Schildes zu platzieren.
noPotionEffectPerm=\u00a74Du darfst den Zaubertrankeffekt \u00a7c{0} \u00a74diesem Trank nicht hinzuf\u00fcgen.
Expand Down Expand Up @@ -463,8 +464,10 @@ unvanishedReload=\u00a74Ein Neuladen des Servers hat dich sichtbar gemacht.
upgradingFilesError=Fehler beim Aktualisieren der Dateien
uptime=\u00a76Laufzeit\:\u00a7c {0}
userAFK=\u00a77{0} \u00a75ist gerade nicht da und antwortet wahrscheinlich nicht.
userAFKWithMessage=\u00a77{0} \u00a75ist gerade nicht da und antwortet wahrscheinlich nicht. {1}
userDoesNotExist=\u00a74Spieler\u00a7c {0} \u00a74existiert nicht.
userIsAway=\u00a77* {0} \u00a77ist nun abwesend.
userIsAwayWithMessage=\u00a77* {0} \u00a77ist nun abwesend.
userIsNotAway=\u00a77* {0} \u00a77ist wieder da.
userJailed=\u00a76Du wurdest eingesperrt.
userUnknown=\u00a74Warnung\: Der Spieler ''\u00a7c{0}\u00a74'' war nie auf diesem Server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to
noNewMail=\u00a76You have no new mail.
noPendingRequest=\u00a74You do not have a pending request.
noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob.
noPlacePermission=\u00a74You do not have permission to place a block near that sign.
noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion.
Expand Down Expand Up @@ -460,8 +461,10 @@ unvanishedReload=\u00a74A reload has forced you to become visible.
upgradingFilesError=Error while upgrading the files.
uptime=\u00a76Uptime\:\u00a7c {0}
userAFK=\u00a77{0} \u00a75is currently AFK and may not respond.
userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond: {1}
userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist.
userIsAway=\u00a77* {0} \u00a77is now AFK.
userIsAwayWithMessage=\u00a77* {0} \u00a77is now AFK.
userIsNotAway=\u00a77* {0} \u00a77is no longer AFK.
userJailed=\u00a76You have been jailed\!
userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ noMetaPerm=\u00a74No tienes permiso para aplicar \u00a7c{0}\u00a74 efectos a est
noNewMail=\u00a77No tienes correo nuevo.
noPendingRequest=\u00a74No tienes peticiones pendientes.
noPerm=\u00a74No tienes el permiso \u00a7c{0}\u00a74.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74No tienes permiso para generar esa criatura.
noPlacePermission=\u00a74No tienes permiso para colocar un bloque junto a eso.
noPotionEffectPerm=\u00a74No tienes permiso para aplicar el efecto\u00a7c {0} \u00a74a esta poci\u00f3n.
Expand Down Expand Up @@ -459,8 +460,10 @@ unvanishedReload=\u00a74Un reinicio o una recarga del servidor te ha forzado a p
upgradingFilesError=Error mientras se actualizaban los archivos
uptime=\u00a76Tiempo encendido\:\u00a7c {0}
userAFK=\u00a77{0} \u00a75se encuentra ausente y es probable que no responda.
userAFKWithMessage=\u00a77{0} \u00a75se encuentra ausente y es probable que no responda. {1}
userDoesNotExist=El usuario {0} no existe
userIsAway=\u00a77{0} \u00a77\u00a1est\u00e1 ausente\!
userIsAwayWithMessage=\u00a77{0} \u00a77\u00a1est\u00e1 ausente\!
userIsNotAway=\u00a77{0} \u00a77\u00a1ya no est\u00e1 ausente\!
userJailed=\u00a76\u00a1Has sido encarcelado\!
userUnknown=\u00a74Aviso\: \u00a7cel jugador \u00a74{0} \u00a7cnunca ha visitado el servidor\!
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_et.properties
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Teil ei ole luba lisada \u00a7c{0}\u00a74 effekte k\u00e4esole
noNewMail=\u00a76Teil ei ole \u00fchtegi uut kirja.
noPendingRequest=\u00a74Teil ei ole ootel taotlust.
noPerm=\u00a74Teil ei ole \u00a7c{0}\u00a74 permissionit.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74Sul ei ole luba tekitada antud elukat.
noPlacePermission=\u00a74Teil ei ole luba asetada plokki selle m\u00e4rgi l\u00e4heduses.
noPotionEffectPerm=\u00a74Teil ei ole luba, et lisada n\u00f5iajoogi effekti \u00a7c{0} \u00a74k\u00e4esolevale n\u00f5iajoogile.
Expand Down Expand Up @@ -459,8 +460,10 @@ unvanishedReload=\u00a74Taaslaadimine sundis sind muutuma n\u00e4htavaks.
upgradingFilesError=Viga uuendades faile.
uptime=\u00a76Uptime\:\u00a7c {0}
userAFK=\u00a77{0} \u00a75on hetkel eemal ja ei pruugi vastata.
userAFKWithMessage=\u00a77{0} \u00a75on hetkel eemal ja ei pruugi vastata. {1}
userDoesNotExist=\u00a74Kasutaja\u00a7c {0} \u00a74ei ole olemas.
userIsAway=\u00a77* {0} \u00a77on n\u00fc\u00fcd eemal.
userIsAwayWithMessage=\u00a77* {0} \u00a77on n\u00fc\u00fcd eemal.
userIsNotAway=\u00a77* {0} \u00a77on tagasi.
userJailed=\u00a76Teid on vangistatud\!
userUnknown=\u00a74Hoiatus\: Kasutaja ''\u00a7c{0}\u00a74'' ei ole kunagi selle serveriga liitunud.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_fi.properties
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to
noNewMail=\u00a77Ei viestej\u00e4.
noPendingRequest=Sinulla ei ole odottavia pyynt\u00f6j\u00e4.
noPerm=\u00a7cSinulla ei ole \u00a7f{0}\u00a7c oikeuksia.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a7cSinulla ei ole lupaa luoda t\u00e4t\u00e4 mobia.
noPlacePermission=\u00a7cSinulla ei ole lupaa laittaa palikoita l\u00e4helle tuota kyltti\u00e4.
noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion.
Expand Down Expand Up @@ -459,8 +460,10 @@ unvanishedReload=\u00a7cSinut on pakotettu taas n\u00e4kyv\u00e4ksi uudelleen la
upgradingFilesError=Virhe p\u00e4ivitett\u00e4ess\u00e4 tiedostoja
uptime=\u00a76Uptime\:\u00a7c {0}
userAFK=\u00a77{0} \u00a75is currently AFK and may not respond.
userAFKWithMessage=\u00a77{0} \u00a75is currently AFK and may not respond. {1}
userDoesNotExist=Pelaajaa {0} ei ole olemassa.
userIsAway={0} on nyt AFK
userIsAwayWithMessage={0} on nyt AFK
userIsNotAway={0} ei ole en\u00e4\u00e4 AFK
userJailed=\u00a77Sinut on laitettu vankilaan
userUnknown=\u00a74Warning\: The user ''\u00a7c{0}\u00a74'' has never joined this server.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ noMetaPerm=\u00a74Vous n''avez pas la permission d''appliquer la m\u00e9tadata \
noNewMail=\u00a77Vous n''avez pas de courrier.
noPendingRequest=Vous n''avez pas de requ\u00eate non lue.
noPerm=\u00a7cVous n''avez pas la permission \u00a7f{0}\u00a7c.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a7cVous n''avez pas la permission d''invoquer cette cr\u00e9ature.
noPlacePermission=\u00a7cVous n''avez pas la permission de placer un bloc pr\u00e8s de cette pancarte.
noPotionEffectPerm=\u00a74Vous n''avez pas la permission d''appliquer l''effet \u00a7c{0} \u00a74\u00e0 cette potion.
Expand Down Expand Up @@ -460,8 +461,10 @@ unvanishedReload=\u00a7cUn reload vous a rendu de nouveau visible.
upgradingFilesError=Erreur durant la mise \u00e0 jour des fichiers.
uptime=\u00a76Dur\u00e9e de fonctionnement \:\u00a7c {0}
userAFK=\u00a75{0} \u00a75est actuellement absent/AFK et peut ne pas r\u00e9pondre.
userAFKWithMessage=\u00a75{0} \u00a75est actuellement absent/AFK et peut ne pas r\u00e9pondre. {1}
userDoesNotExist=L''utilisateur {0} n''existe pas.
userIsAway={0} est d\u00e9sormais AFK.
userIsAwayWithMessage={0} est d\u00e9sormais AFK.
userIsNotAway={0} n''est plus AFK.
userJailed=\u00a77Vous avez \u00e9t\u00e9 emprisonn\u00e9.
userUnknown=\u00a74Attention \: le joueur \u00a7c{0}\u00a74 n''est jamais venu sur ce serveur.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_hu.properties
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ noMetaPerm=\u00a74You do not have permission to apply \u00a7c{0}\u00a74 meta to
noNewMail=\u00a76Nincs \u00faj leveled.
noPendingRequest=\u00a74You do not have a pending request.
noPerm=\u00a74You do not have the \u00a7c{0}\u00a74 permission.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74You don''t have permission to spawn this mob.
noPlacePermission=\u00a74You do not have permission to place a block near that sign.
noPotionEffectPerm=\u00a74You do not have permission to apply potion effect \u00a7c{0} \u00a74to this potion.
Expand Down Expand Up @@ -459,8 +460,10 @@ unvanishedReload=\u00a74A reload k\u00f6vetkezt\u00e9ben mindenki l\u00e1tni fog
upgradingFilesError=Error while upgrading the files.
uptime=\u00a76M\u00fbk\u00f6d\u00e9si id\u00f5\:\u00a7c {0}
userAFK=\u00a75{0} \u00a75most AFK \u00e9s nem bisztos hogy fog v\u00e1laszolni.
userAFKWithMessage=\u00a75{0} \u00a75most AFK \u00e9s nem bisztos hogy fog v\u00e1laszolni. {1}
userDoesNotExist=\u00a74The user\u00a7c {0} \u00a74does not exist.
userIsAway=\u00a77* \u00a75{0}\u00a77 elment a g\u00e9pt\u0151l...
userIsAwayWithMessage=\u00a77* \u00a75{0}\u00a77 elment a g\u00e9pt\u0151l...
userIsNotAway=\u00a77* \u00a75{0} \u00a77visszaj\u00f6tt...
userJailed=\u00a76Beb\u00f6rt\u00f6n\u00f6ztek\!
userUnknown=\u00a74Figyelem\: ''\u00a7c{0}\u00a74'' m\u00e9g sose j\u00e1rt a szerveren.
Expand Down
3 changes: 3 additions & 0 deletions Essentials/src/messages_it.properties
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ noMetaPerm=\u00a74Non hai il permesso di applicare \u00a7c{0}\u00a74 meta in que
noNewMail=\u00a76Non hai ricevuto nuove mail.
noPendingRequest=\u00a74Non hai richieste in sospeso.
noPerm=\u00a74Non hai il permesso \u00a7c{0}\u00a74.
noPermToAFKMessage=\u00a74You don''t have permission to set an AFK message.
noPermToSpawnMob=\u00a74Non hai il permesso di generare questo mob.
noPlacePermission=\u00a74Non hai il permesso di piazzare un blocco accanto a questo cartello.
noPotionEffectPerm=\u00a74Non hai il permesso di applicare questo effetto di pozione \u00a7c{0} \u00a74a questa pozione.
Expand Down Expand Up @@ -459,8 +460,10 @@ unvanishedReload=\u00a74Il server e'' stato ricaricato e cio'' ti ha forzato a t
upgradingFilesError=Errore durante l''aggiornamento dei file
uptime=\u00a76Tempo online\:\u00a7c {0}
userAFK=\u00a77{0} \u00a75e'' attualmente AFK e potrebbe non rispondere.
userAFKWithMessage=\u00a77{0} \u00a75e'' attualmente AFK e potrebbe non rispondere. {1}
userDoesNotExist=\u00a74L''utente\u00a7c {0} \u00a74non esiste.
userIsAway=\u00a77* {0} \u00a77e'' AFK.
userIsAwayWithMessage=\u00a77* {0} \u00a77e'' AFK.
userIsNotAway=\u00a77* {0} \u00a77non e'' piu'' AFK.
userJailed=\u00a76Sei stato incarcerato\!
userUnknown=\u00a74Attenzione\: Il giocatore ''\u00a7c{0}\u00a74'' non e'' mai entrato sul server.
Expand Down
Loading