mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-23 13:46:46 +01:00
Edit /mcc
information with new party commands
`/party password` can now be used to clear the parties password when no argument is provided. Also improved feedback messages when managing your party.
This commit is contained in:
parent
5b862a4cee
commit
5bf1e49e43
@ -24,15 +24,16 @@ public class MccCommand implements CommandExecutor {
|
|||||||
|
|
||||||
if (Permissions.party(player)) {
|
if (Permissions.party(player)) {
|
||||||
player.sendMessage(LocaleLoader.getString("Commands.Party.Commands"));
|
player.sendMessage(LocaleLoader.getString("Commands.Party.Commands"));
|
||||||
player.sendMessage("/party " + LocaleLoader.getString("Commands.Party"));
|
player.sendMessage("/party create <" + LocaleLoader.getString("Commands.Usage.PartyName") + "> " + LocaleLoader.getString("Commands.Party1"));
|
||||||
player.sendMessage("/party q " + LocaleLoader.getString("Commands.Party.Quit"));
|
player.sendMessage("/party join <" + LocaleLoader.getString("Commands.Usage.Player") + "> " + LocaleLoader.getString("Commands.Party2"));
|
||||||
|
player.sendMessage("/party quit " + LocaleLoader.getString("Commands.Party.Quit"));
|
||||||
|
|
||||||
if (Permissions.partyChat(player)) {
|
if (Permissions.partyChat(player)) {
|
||||||
player.sendMessage("/p " + LocaleLoader.getString("Commands.Party.Toggle"));
|
player.sendMessage("/p " + LocaleLoader.getString("Commands.Party.Toggle"));
|
||||||
}
|
}
|
||||||
|
|
||||||
player.sendMessage("/invite " + LocaleLoader.getString("Commands.Party.Invite"));
|
player.sendMessage("/party invite <" + LocaleLoader.getString("Commands.Usage.Player") + "> " + LocaleLoader.getString("Commands.Party.Invite"));
|
||||||
player.sendMessage("/accept " + LocaleLoader.getString("Commands.Party.Accept"));
|
player.sendMessage("/party accept " + LocaleLoader.getString("Commands.Party.Accept"));
|
||||||
|
|
||||||
if (Permissions.partyTeleport(player)) {
|
if (Permissions.partyTeleport(player)) {
|
||||||
player.sendMessage("/ptp " + LocaleLoader.getString("Commands.Party.Teleport"));
|
player.sendMessage("/ptp " + LocaleLoader.getString("Commands.Party.Teleport"));
|
||||||
|
@ -229,6 +229,7 @@ public final class PartyManager {
|
|||||||
if (password != null) {
|
if (password != null) {
|
||||||
party.setPassword(password);
|
party.setPassword(password);
|
||||||
party.setLocked(true);
|
party.setLocked(true);
|
||||||
|
player.sendMessage(LocaleLoader.getString("Party.Password.Set", new Object[] {password}));
|
||||||
}
|
}
|
||||||
parties.add(party);
|
parties.add(party);
|
||||||
}
|
}
|
||||||
|
@ -168,6 +168,11 @@ public class PartyCommand implements CommandExecutor {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (party != null && party.equals(Users.getProfile(target).getParty())) {
|
||||||
|
player.sendMessage(LocaleLoader.getString("Party.Join.Self"));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
String password = null;
|
String password = null;
|
||||||
|
|
||||||
if (args.length > 2) {
|
if (args.length > 2) {
|
||||||
@ -554,19 +559,21 @@ public class PartyCommand implements CommandExecutor {
|
|||||||
String playerName = player.getName();
|
String playerName = player.getName();
|
||||||
Party party = playerProfile.getParty();
|
Party party = playerProfile.getParty();
|
||||||
|
|
||||||
if (args.length < 2) {
|
if (!party.getLeader().equals(playerName)) {
|
||||||
player.sendMessage(LocaleLoader.getString("Commands.Usage.2", new Object[] {"party", "password", "<" + LocaleLoader.getString("Commands.Usage.Password") + ">"}));
|
player.sendMessage(LocaleLoader.getString("Party.NotOwner"));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (args.length < 2) {
|
||||||
|
party.setLocked(true);
|
||||||
|
party.setPassword(null);
|
||||||
|
player.sendMessage(LocaleLoader.getString("Party.Password.Removed"));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (party.getLeader().equals(playerName)) {
|
|
||||||
party.setLocked(true);
|
party.setLocked(true);
|
||||||
party.setPassword(args[1]);
|
party.setPassword(args[1]);
|
||||||
player.sendMessage(LocaleLoader.getString("Party.PasswordSet", new Object[] {args[1]}));
|
player.sendMessage(LocaleLoader.getString("Party.Password.Set", new Object[] {args[1]}));
|
||||||
}
|
|
||||||
else {
|
|
||||||
player.sendMessage(LocaleLoader.getString("Party.NotOwner"));
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--P\u0158\u00cdKAZY PARTY--
|
Commands.Party.Commands=[[GREEN]]--P\u0158\u00cdKAZY PARTY--
|
||||||
Commands.Party.Invite.0=[[RED]]VAROVANI: [[GREEN]]Obdrzel jsi pozvanku do party {0} od {1}
|
Commands.Party.Invite.0=[[RED]]VAROVANI: [[GREEN]]Obdrzel jsi pozvanku do party {0} od {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Napis [[GREEN]]/party accept[[YELLOW]] pro potvrzeni pozvanky
|
Commands.Party.Invite.1=[[YELLOW]]Napis [[GREEN]]/party accept[[YELLOW]] pro potvrzeni pozvanky
|
||||||
Commands.Party.Invite=<player> [[RED]]- Poslat pozv\u00e1nku do party
|
Commands.Party.Invite=[[RED]]- Poslat pozv\u00e1nku do party
|
||||||
Commands.Party.Join=[[GRAY]]Pripojen do party: {0}
|
Commands.Party.Join=[[GRAY]]Pripojen do party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[RED]]Nejsi v zadne party.
|
|||||||
Commands.Party.Quit=[[RED]]- Opustil jsi svoji aktualni partu
|
Commands.Party.Quit=[[RED]]- Opustil jsi svoji aktualni partu
|
||||||
Commands.Party.Teleport=<hrac> [[RED]]- Teleport ke clenovi party
|
Commands.Party.Teleport=<hrac> [[RED]]- Teleport ke clenovi party
|
||||||
Commands.Party.Toggle=[[RED]]- Zapnout party chat
|
Commands.Party.Toggle=[[RED]]- Zapnout party chat
|
||||||
Commands.Party=<jm\u00e9no-party> [[RED]]- Vytvo\u0159it/P\u0159ipojit se k part\u011b.
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Heslo do party nastaveno na {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]Tohle neni platny hrac.
|
Party.Player.Invalid=[[RED]]Tohle neni platny hrac.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]] RHYBUDD: [[GREEN]] fod wedi derbyn gwahoddiad i barti {0} o {1}
|
Commands.Party.Invite.0=[[RED]] RHYBUDD: [[GREEN]] fod wedi derbyn gwahoddiad i barti {0} o {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]] Math [[GREEN]]/party accept[[YELLOW]] i dderbyn y gwahoddiad
|
Commands.Party.Invite.1=[[YELLOW]] Math [[GREEN]]/party accept[[YELLOW]] i dderbyn y gwahoddiad
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]] Blaid cyfrinair wedi ei osod i {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]] Nid yw hynny\'n chwaraewr ddilys.
|
Party.Player.Invalid=[[RED]] Nid yw hynny\'n chwaraewr ddilys.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--GRUPPE KOMMANDOER--
|
Commands.Party.Commands=[[GREEN]]--GRUPPE KOMMANDOER--
|
||||||
Commands.Party.Invite.0=[[RED]]INFORMATION: [[GREEN]]Du har modtaget en gruppe invitation for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]INFORMATION: [[GREEN]]Du har modtaget en gruppe invitation for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Skrive [[GREEN]]/party accept[[YELLOW]] for at acceptere invitation
|
Commands.Party.Invite.1=[[YELLOW]]Skrive [[GREEN]]/party accept[[YELLOW]] for at acceptere invitation
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send gruppe invitation
|
Commands.Party.Invite=[[RED]]- Send gruppe invitation
|
||||||
Commands.Party.Join=[[GRAY]]Joinede Gruppen: {0}
|
Commands.Party.Join=[[GRAY]]Joinede Gruppen: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]Du er ikke i en gruppe.
|
|||||||
Commands.Party.Quit=[[RED]]- Forlad din nuv\u00e6rende Gruppe
|
Commands.Party.Quit=[[RED]]- Forlad din nuv\u00e6rende Gruppe
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleporter til gruppe medlem
|
Commands.Party.Teleport=<player> [[RED]]- Teleporter til gruppe medlem
|
||||||
Commands.Party.Toggle=[[RED]]- Skift Gruppe Chat
|
Commands.Party.Toggle=[[RED]]- Skift Gruppe Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Lav/Join \u00f8nskede Gruppe
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} er den nye gruppe leder.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]Du er ikke l\u00e6ngere gruppens leder.
|
Party.Owner.NotLeader=[[DARK_RED]]Du er ikke l\u00e6ngere gruppens leder.
|
||||||
Party.Owner.Player=[[GREEN]]Du er nu gruppe lederen.
|
Party.Owner.Player=[[GREEN]]Du er nu gruppe lederen.
|
||||||
Party.Password.Incorrect=[[RED]]Gruppe kodeord er forkert.
|
Party.Password.Incorrect=[[RED]]Gruppe kodeord er forkert.
|
||||||
Party.PasswordSet=[[GREEN]]Gruppe adgangskode sat til {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]Dette er ikke en rigtig spiller.
|
Party.Player.Invalid=[[RED]]Dette er ikke en rigtig spiller.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--GRUPPEN COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--GRUPPEN COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]INFO: [[GREEN]]Du hast eine Gruppen-Einladung f\u00fcr {0} von {1} bekommen
|
Commands.Party.Invite.0=[[RED]]INFO: [[GREEN]]Du hast eine Gruppen-Einladung f\u00fcr {0} von {1} bekommen
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Schreibe [[GREEN]]/party accept[[YELLOW]] um die Einladung zu genehmingen
|
Commands.Party.Invite.1=[[YELLOW]]Schreibe [[GREEN]]/party accept[[YELLOW]] um die Einladung zu genehmingen
|
||||||
Commands.Party.Invite=<Spieler> [[RED]]- Gruppen-Einladung versenden
|
Commands.Party.Invite=[[RED]]- Gruppen-Einladung versenden
|
||||||
Commands.Party.Join=[[GRAY]]Beigetretene Gruppe: {0}
|
Commands.Party.Join=[[GRAY]]Beigetretene Gruppe: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]Du bist in keiner Gruppe.
|
|||||||
Commands.Party.Quit=[[RED]]- Verlasse deine derzeitige Gruppe
|
Commands.Party.Quit=[[RED]]- Verlasse deine derzeitige Gruppe
|
||||||
Commands.Party.Teleport=<Spieler> [[RED]]- Zu Gruppen-Mitglied teleportieren
|
Commands.Party.Teleport=<Spieler> [[RED]]- Zu Gruppen-Mitglied teleportieren
|
||||||
Commands.Party.Toggle=[[RED]]- Gruppen-Chat umschalten
|
Commands.Party.Toggle=[[RED]]- Gruppen-Chat umschalten
|
||||||
Commands.Party=<party-name> [[RED]]- Gew\u00fcnschte Gruppe Er\u00f6ffnen/Beitreten
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Gruppen-Password ge\u00e4ndert zu: {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]Dies ist kein g\u00fcltiger Spieler.
|
Party.Player.Invalid=[[RED]]Dies ist kein g\u00fcltiger Spieler.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -447,7 +447,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -460,7 +460,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -521,7 +522,8 @@ Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
|||||||
Party.Owner.Player =[[GREEN]]You are now the party leader.
|
Party.Owner.Player =[[GREEN]]You are now the party leader.
|
||||||
Party.Password.None=[[RED]]This party is password protected.
|
Party.Password.None=[[RED]]This party is password protected.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Party password set to {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--COMANDOS DEL GRUPO--
|
Commands.Party.Commands=[[GREEN]]--COMANDOS DEL GRUPO--
|
||||||
Commands.Party.Invite.0=[[RED]]ATENCI\u00d3N: [[GREEN]]Fuiste invitado al grupo {0} por {1}
|
Commands.Party.Invite.0=[[RED]]ATENCI\u00d3N: [[GREEN]]Fuiste invitado al grupo {0} por {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Ingresa [[GREEN]]/party accept[[YELLOW]] para aceptar la invitaci\u00f3n
|
Commands.Party.Invite.1=[[YELLOW]]Ingresa [[GREEN]]/party accept[[YELLOW]] para aceptar la invitaci\u00f3n
|
||||||
Commands.Party.Invite=<jugador> [[RED]]- Enviar invitaci\u00f3n al grupo
|
Commands.Party.Invite=[[RED]]- Enviar invitaci\u00f3n al grupo
|
||||||
Commands.Party.Join=[[GRAY]]Se uni\u00f3 al grupo: {0}
|
Commands.Party.Join=[[GRAY]]Se uni\u00f3 al grupo: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]No est\u00e1s en un grupo.
|
|||||||
Commands.Party.Quit=[[RED]]- Abandona tu grupo actual
|
Commands.Party.Quit=[[RED]]- Abandona tu grupo actual
|
||||||
Commands.Party.Teleport=<jugador> [[RED]]- Teletransportarse al miembro del grupo
|
Commands.Party.Teleport=<jugador> [[RED]]- Teletransportarse al miembro del grupo
|
||||||
Commands.Party.Toggle=[[RED]]- Alternar chat de grupo
|
Commands.Party.Toggle=[[RED]]- Alternar chat de grupo
|
||||||
Commands.Party=<nombre del grupo> [[RED]]- Crear/Unirse al grupo elegido
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Contrase\u00f1a del grupo establecida: [[RED]]{0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]Ese no es un jugador v\u00e1lido.
|
Party.Player.Invalid=[[RED]]Ese no es un jugador v\u00e1lido.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Party password set to {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--COMMANDES DE GROUPE--
|
Commands.Party.Commands=[[GREEN]]--COMMANDES DE GROUPE--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]Vous avez re\u00e7u une invitation de {1} pour rejoindre le groupe {0}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]Vous avez re\u00e7u une invitation de {1} pour rejoindre le groupe {0}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Faites [[GREEN]]/party accept[[YELLOW]] pour accepter l\'invitation
|
Commands.Party.Invite.1=[[YELLOW]]Faites [[GREEN]]/party accept[[YELLOW]] pour accepter l\'invitation
|
||||||
Commands.Party.Invite=<nom> [[RED]]- Envoyer une invitation
|
Commands.Party.Invite=[[RED]]- Envoyer une invitation
|
||||||
Commands.Party.Join=[[GRAY]]Rejoint le groupe: {0}
|
Commands.Party.Join=[[GRAY]]Rejoint le groupe: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]Vous n\'\u00eates pas dans un groupe.
|
|||||||
Commands.Party.Quit=[[RED]]- Quitte votre groupe actuel
|
Commands.Party.Quit=[[RED]]- Quitte votre groupe actuel
|
||||||
Commands.Party.Teleport=<nom> [[RED]]- T\u00e9l\u00e9porte sur un membre du groupe
|
Commands.Party.Teleport=<nom> [[RED]]- T\u00e9l\u00e9porte sur un membre du groupe
|
||||||
Commands.Party.Toggle=[[RED]]- Active / d\u00e9sactive le canal groupe
|
Commands.Party.Toggle=[[RED]]- Active / d\u00e9sactive le canal groupe
|
||||||
Commands.Party=<nom> [[RED]]- Cr\u00e9e ou rejoint ce groupe
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Mot de passe d\u00e9fini : {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]Ce joueur n\'existe pas.
|
Party.Player.Invalid=[[RED]]Ce joueur n\'existe pas.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--COMANDI DI COMPAGNIA--
|
Commands.Party.Commands=[[GREEN]]--COMANDI DI COMPAGNIA--
|
||||||
Commands.Party.Invite.0=[[RED]]AVVISO: [[GREEN]]Hai ricevuto un invito ad unirti alla compagnia {0} da {1}
|
Commands.Party.Invite.0=[[RED]]AVVISO: [[GREEN]]Hai ricevuto un invito ad unirti alla compagnia {0} da {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Digita [[GREEN]]/party accept[[YELLOW]] per accettare l\'invito
|
Commands.Party.Invite.1=[[YELLOW]]Digita [[GREEN]]/party accept[[YELLOW]] per accettare l\'invito
|
||||||
Commands.Party.Invite=<giocatore> [[RED]]- Manda un invito nella compagnia
|
Commands.Party.Invite=[[RED]]- Manda un invito nella compagnia
|
||||||
Commands.Party.Join=[[GRAY]]Ti sei unito alla Compagnia: {0}
|
Commands.Party.Join=[[GRAY]]Ti sei unito alla Compagnia: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]Non sei nella compagnia.
|
|||||||
Commands.Party.Quit=[[RED]]- Abbandona la tua attuale compagnia
|
Commands.Party.Quit=[[RED]]- Abbandona la tua attuale compagnia
|
||||||
Commands.Party.Teleport=<giocatore> [[RED]]- Teletrasportati verso un membro della compagnia
|
Commands.Party.Teleport=<giocatore> [[RED]]- Teletrasportati verso un membro della compagnia
|
||||||
Commands.Party.Toggle=[[RED]]- Attiva o Disattiva la Chat di Compagnia
|
Commands.Party.Toggle=[[RED]]- Attiva o Disattiva la Chat di Compagnia
|
||||||
Commands.Party=<nome-compagnia> [[RED]]- Crea/Unisciti alla compagnia scelta
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} \u00e8 il nuovo capo della compagnia.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]Non sei pi\u00f9 il capo della compagnia.
|
Party.Owner.NotLeader=[[DARK_RED]]Non sei pi\u00f9 il capo della compagnia.
|
||||||
Party.Owner.Player=[[GREEN]]Ora sei il capo della compagnia.
|
Party.Owner.Player=[[GREEN]]Ora sei il capo della compagnia.
|
||||||
Party.Password.Incorrect=[[RED]]Password di compagnia incorretta.
|
Party.Password.Incorrect=[[RED]]Password di compagnia incorretta.
|
||||||
Party.PasswordSet=[[GREEN]]Password della compagnia impostata come {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]Quello non \u00e8 un giocatore valido.
|
Party.Player.Invalid=[[RED]]Quello non \u00e8 un giocatore valido.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[\uc801\uc0c9]] \uacbd\uace0 : [[\ub179\uc0c9]] \ub2f9\uc2e0\uc740 \ub098\uc5d0\uac8c \ud30c\ud2f0 \ucd08\ub300\ub97c\ubc1b\uc740 {0}\uc5d0\uc11c {1}
|
Commands.Party.Invite.0=[[\uc801\uc0c9]] \uacbd\uace0 : [[\ub179\uc0c9]] \ub2f9\uc2e0\uc740 \ub098\uc5d0\uac8c \ud30c\ud2f0 \ucd08\ub300\ub97c\ubc1b\uc740 {0}\uc5d0\uc11c {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet={0}\uc5d0 [[\ub179\uc0c9]] \uc790 \uc554\ud638\uac00 \uc124\uc815
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[\ub808\ub4dc]] \uadf8\uac74 \uc62c\ubc14\ub978 \ud50c\ub808\uc774\uc5b4\uac00 \uc544\ub2d9\ub2c8\ub2e4.
|
Party.Player.Invalid=[[\ub808\ub4dc]] \uadf8\uac74 \uc62c\ubc14\ub978 \ud50c\ub808\uc774\uc5b4\uac00 \uc544\ub2d9\ub2c8\ub2e4.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Party password set to {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]Jij hebt een groep uitnodiging ontvangen voor {0} van {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]Jij hebt een groep uitnodiging ontvangen voor {0} van {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Typ [[GREEN]]/party accept[[YELLOW]] om de uitnodiging te accepteren
|
Commands.Party.Invite.1=[[YELLOW]]Typ [[GREEN]]/party accept[[YELLOW]] om de uitnodiging te accepteren
|
||||||
Commands.Party.Invite=<player> [[RED]]- Stuur een groep uitnodiging
|
Commands.Party.Invite=[[RED]]- Stuur een groep uitnodiging
|
||||||
Commands.Party.Join=[[GRAY]]Groep betreden: {0}
|
Commands.Party.Join=[[GRAY]]Groep betreden: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Groep aangemaakt: {0}
|
Commands.Party.Create=[[GRAY]]Groep aangemaakt: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Groep naam veranderd naar: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Groep naam veranderd naar: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]Je bent niet in een groep.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Groeps wachtwoord is incorrect.
|
Party.Password.Incorrect=[[RED]]Groeps wachtwoord is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Groep wachtwoord veranderd in {0}
|
Party.Password.Set=[[GREEN]]Groep wachtwoord veranderd in {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]Dat is geen geldige speler.
|
Party.Player.Invalid=[[RED]]Dat is geen geldige speler.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is niet online!
|
Party.NotOnline=[[DARK_RED]]{0} is niet online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} zit al in je groep!
|
Party.Player.InSameParty=[[RED]]{0} zit al in je groep!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALARM: [[GREEN]]Du har mottatt en party invitasjon til {0} fra {1}
|
Commands.Party.Invite.0=[[RED]]ALARM: [[GREEN]]Du har mottatt en party invitasjon til {0} fra {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Party passord sett til {0}
|
Party.Password.Set=[[GREEN]]Party passord sett til {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Napisz [[GREEN]]/party accept[[YELLOW]] aby zaakceptowac zaproszenie
|
Commands.Party.Invite.1=[[YELLOW]]Napisz [[GREEN]]/party accept[[YELLOW]] aby zaakceptowac zaproszenie
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Dolaczyles do Grupy: {0}
|
Commands.Party.Join=[[GRAY]]Dolaczyles do Grupy: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleportacja do czlonka grupy.
|
Commands.Party.Teleport=<player> [[RED]]- Teleportacja do czlonka grupy.
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Haslo grupy zmienione na: {0}
|
Party.Password.Set=[[GREEN]]Haslo grupy zmienione na: {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]Nie ma takiego gracza.
|
Party.Player.Invalid=[[RED]]Nie ma takiego gracza.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Party password set to {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Senha da equipe: {0}
|
Party.Password.Set=[[GREEN]]Senha da equipe: {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--\u0413\u0420\u0423\u041f\u041f\u041e\u0412\u042b\u0415 \u041a\u041e\u041c\u0410\u041d\u0414\u042b--
|
Commands.Party.Commands=[[GREEN]]--\u0413\u0420\u0423\u041f\u041f\u041e\u0412\u042b\u0415 \u041a\u041e\u041c\u0410\u041d\u0414\u042b--
|
||||||
Commands.Party.Invite.0=[[RED]]\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415: [[GREEN]]\u0412\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443 {0} \u043e\u0442 {1}
|
Commands.Party.Invite.0=[[RED]]\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415: [[GREEN]]\u0412\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443 {0} \u043e\u0442 {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 [[GREEN]]/party accept[[YELLOW]] \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
|
Commands.Party.Invite.1=[[YELLOW]]\u041d\u0430\u043f\u0438\u0448\u0438\u0442\u0435 [[GREEN]]/party accept[[YELLOW]] \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043d\u044f\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435
|
||||||
Commands.Party.Invite=<player> [[RED]]- \u041f\u043e\u0441\u043b\u0430\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443
|
Commands.Party.Invite=[[RED]]- \u041f\u043e\u0441\u043b\u0430\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0433\u0440\u0443\u043f\u043f\u0443
|
||||||
Commands.Party.Join=[[GRAY]]\u0412\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u043b\u0438\u0441\u044c \u043a \u0413\u0440\u0443\u043f\u043f\u0435: {0}
|
Commands.Party.Join=[[GRAY]]\u0412\u044b \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u043b\u0438\u0441\u044c \u043a \u0413\u0440\u0443\u043f\u043f\u0435: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]\u0412\u044b \u043d\u0435 \u0432 \u0433\u0440\u0443\u
|
|||||||
Commands.Party.Quit=[[RED]]- \u041f\u043e\u043a\u0438\u043d\u0443\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443
|
Commands.Party.Quit=[[RED]]- \u041f\u043e\u043a\u0438\u043d\u0443\u0442\u044c \u0442\u0435\u043a\u0443\u0449\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443
|
||||||
Commands.Party.Teleport=<player> [[RED]]- \u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043a \u0447\u043b\u0435\u043d\u0443 \u0433\u0440\u0443\u043f\u043f\u044b
|
Commands.Party.Teleport=<player> [[RED]]- \u0422\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043a \u0447\u043b\u0435\u043d\u0443 \u0433\u0440\u0443\u043f\u043f\u044b
|
||||||
Commands.Party.Toggle=[[RED]]- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0433\u0440\u0443\u043f\u043f\u043e\u0432\u043e\u0439 \u0447\u0430\u0442
|
Commands.Party.Toggle=[[RED]]- \u0412\u043a\u043b./\u043e\u0442\u043a\u043b. \u0433\u0440\u0443\u043f\u043f\u043e\u0432\u043e\u0439 \u0447\u0430\u0442
|
||||||
Commands.Party=<party-name> [[RED]]- \u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0443\u043a\u0430\u0437\u0430\u043d\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443 \u0438\u043b\u0438 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0435\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u043d\u0435\u0439
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} \u0442\u0435\u043f\u0435\u0440\u044c \u043d\u043e\u
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]\u0412\u044b \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b.
|
Party.Owner.NotLeader=[[DARK_RED]]\u0412\u044b \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b.
|
||||||
Party.Owner.Player=[[GREEN]]\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u044b \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b.
|
Party.Owner.Player=[[GREEN]]\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u044b \u043b\u0438\u0434\u0435\u0440 \u0433\u0440\u0443\u043f\u043f\u044b.
|
||||||
Party.Password.Incorrect=[[RED]]\u041f\u0430\u0440\u043e\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439.
|
Party.Password.Incorrect=[[RED]]\u041f\u0430\u0440\u043e\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439.
|
||||||
Party.PasswordSet=[[GREEN]]\u041f\u0430\u0440\u043e\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d {0}
|
Party.Password.Set=[[GREEN]]\u041f\u0430\u0440\u043e\u043b\u044c \u0433\u0440\u0443\u043f\u043f\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]\u042d\u0442\u043e \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0438\u0433\u0440\u043e\u043a.
|
Party.Player.Invalid=[[RED]]\u042d\u0442\u043e \u043d\u0435\u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u0438\u0433\u0440\u043e\u043a.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Party password set to {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
Commands.Party.Commands=[[GREEN]]--PARTY COMMANDS--
|
||||||
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
Commands.Party.Invite.0=[[RED]]ALERT: [[GREEN]]You have received a party invite for {0} from {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
Commands.Party.Invite.1=[[YELLOW]]Type [[GREEN]]/party accept[[YELLOW]] to accept the invite
|
||||||
Commands.Party.Invite=<player> [[RED]]- Send party invite
|
Commands.Party.Invite=[[RED]]- Send party invite
|
||||||
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
Commands.Party.Join=[[GRAY]]Joined Party: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]You are not in a party.
|
|||||||
Commands.Party.Quit=[[RED]]- Leave your current party
|
Commands.Party.Quit=[[RED]]- Leave your current party
|
||||||
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
Commands.Party.Teleport=<player> [[RED]]- Teleport to party member
|
||||||
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
Commands.Party.Toggle=[[RED]]- Toggle Party Chat
|
||||||
Commands.Party=<party-name> [[RED]]- Create/Join designated party
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} is the new party leader.
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
Party.Owner.NotLeader=[[DARK_RED]]You are no longer the party leader.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]Party password set to {0}
|
Party.Password.Set=[[GREEN]]Party password set to {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]That is not a valid player.
|
Party.Player.Invalid=[[RED]]That is not a valid player.
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
@ -395,7 +395,7 @@ Commands.Party.Chat.Prefix=[[GREEN]]([[WHITE]]{0}[[GREEN]])
|
|||||||
Commands.Party.Commands=[[GREEN]]--\u7ec4\u961f\u547d\u4ee4--
|
Commands.Party.Commands=[[GREEN]]--\u7ec4\u961f\u547d\u4ee4--
|
||||||
Commands.Party.Invite.0=[[RED]]\u6ce8\u610f: [[GREEN]]\u4f60\u6536\u5230\u4e86\u4e00\u4e2a\u7ec4\u961f\u9080\u8bf7 {0} \u6765\u81ea {1}
|
Commands.Party.Invite.0=[[RED]]\u6ce8\u610f: [[GREEN]]\u4f60\u6536\u5230\u4e86\u4e00\u4e2a\u7ec4\u961f\u9080\u8bf7 {0} \u6765\u81ea {1}
|
||||||
Commands.Party.Invite.1=[[YELLOW]]\u8f93\u5165 [[GREEN]]/party accept[[YELLOW]] \u6765\u63a5\u53d7\u9080\u8bf7
|
Commands.Party.Invite.1=[[YELLOW]]\u8f93\u5165 [[GREEN]]/party accept[[YELLOW]] \u6765\u63a5\u53d7\u9080\u8bf7
|
||||||
Commands.Party.Invite=<player> [[RED]]- \u53d1\u9001\u961f\u4f0d\u9080\u8bf7
|
Commands.Party.Invite=[[RED]]- \u53d1\u9001\u961f\u4f0d\u9080\u8bf7
|
||||||
Commands.Party.Join=[[GRAY]]\u52a0\u5165\u961f\u4f0d: {0}
|
Commands.Party.Join=[[GRAY]]\u52a0\u5165\u961f\u4f0d: {0}
|
||||||
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
Commands.Party.Create=[[GRAY]]Created Party: {0}
|
||||||
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
Commands.Party.Rename=[[GRAY]]Party name changed to: [[WHITE]]{0}
|
||||||
@ -408,7 +408,8 @@ Commands.Party.None=[[RED]]\u4f60\u4e0d\u5728\u961f\u4f0d\u4e2d.
|
|||||||
Commands.Party.Quit=[[RED]]- \u79bb\u5f00\u4f60\u73b0\u6709\u7684\u961f\u4f0d
|
Commands.Party.Quit=[[RED]]- \u79bb\u5f00\u4f60\u73b0\u6709\u7684\u961f\u4f0d
|
||||||
Commands.Party.Teleport=<player> [[RED]]- \u4f20\u9001\u5230\u961f\u4f0d\u6210\u5458
|
Commands.Party.Teleport=<player> [[RED]]- \u4f20\u9001\u5230\u961f\u4f0d\u6210\u5458
|
||||||
Commands.Party.Toggle=[[RED]]- \u5207\u6362\u961f\u4f0d\u804a\u5929
|
Commands.Party.Toggle=[[RED]]- \u5207\u6362\u961f\u4f0d\u804a\u5929
|
||||||
Commands.Party=[\u961f\u4f0d\u540d] [[RED]]- \u521b\u5efa/\u52a0\u5165\u5df2\u5b58\u5728\u7684\u961f\u4f0d
|
Commands.Party1=[[RED]]- Create a new party
|
||||||
|
Commands.Party2=[[RED]]- Join a players party
|
||||||
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
Commands.ptp.Enabled=Party teleporting [[GREEN]]enabled
|
||||||
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
Commands.ptp.Disabled=Party teleporting [[RED]]disabled
|
||||||
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
Commands.ptp.NoRequests=[[RED]]You have no teleport requests at this time
|
||||||
@ -466,7 +467,8 @@ Party.Owner.New=[[GREEN]]{0} \u73b0\u5728\u662f\u65b0\u7684\u6d3e\u7cfb\u9886\u9
|
|||||||
Party.Owner.NotLeader=[[DARK_RED]]\u4f60\u5df2\u7ecf\u4e0d\u518d\u662f\u6d3e\u7cfb\u5185\u7684\u9886\u961f.
|
Party.Owner.NotLeader=[[DARK_RED]]\u4f60\u5df2\u7ecf\u4e0d\u518d\u662f\u6d3e\u7cfb\u5185\u7684\u9886\u961f.
|
||||||
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
Party.Owner.Player=[[GREEN]]You are now the party leader.
|
||||||
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
Party.Password.Incorrect=[[RED]]Party password is incorrect.
|
||||||
Party.PasswordSet=[[GREEN]]\u961f\u4f0d\u5bc6\u7801\u8bbe\u7f6e\u4e3a {0}
|
Party.Password.Set=[[GREEN]]\u961f\u4f0d\u5bc6\u7801\u8bbe\u7f6e\u4e3a {0}
|
||||||
|
Party.Password.Removed=[[GREEN]]Party password has been cleared.
|
||||||
Party.Player.Invalid=[[RED]]\u8fd9\u4e0d\u662f\u4e00\u540d\u6709\u6548\u7684\u73a9\u5bb6
|
Party.Player.Invalid=[[RED]]\u8fd9\u4e0d\u662f\u4e00\u540d\u6709\u6548\u7684\u73a9\u5bb6
|
||||||
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
Party.NotOnline=[[DARK_RED]]{0} is not online!
|
||||||
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
Party.Player.InSameParty=[[RED]]{0} already is in your party!
|
||||||
|
Loading…
Reference in New Issue
Block a user