mirror of
https://github.com/RonanPlugins/BetterRTP.git
synced 2025-08-17 09:05:47 +00:00
Russion Translation updated + Custom world patch + 3.0.2 Release
This commit is contained in:
parent
49d6e4876f
commit
17a574866b
2
pom.xml
2
pom.xml
@ -7,7 +7,7 @@
|
|||||||
<groupId>me.SuperRonanCraft</groupId>
|
<groupId>me.SuperRonanCraft</groupId>
|
||||||
<artifactId>BetterRTP</artifactId>
|
<artifactId>BetterRTP</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>3.0.1</version>
|
<version>3.0.2</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>1.8</maven.compiler.source>
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
|
@ -140,7 +140,7 @@ public class RTPPluginValidation { //Safe locations depending on enabled depende
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOT TESTED (2.14.3)
|
// NOT TESTED (3.0.2)
|
||||||
// KingdomsX (v1.10.5.2)
|
// KingdomsX (v1.10.5.2)
|
||||||
// https://www.spigotmc.org/resources/kingdomsx.77670/
|
// https://www.spigotmc.org/resources/kingdomsx.77670/
|
||||||
private boolean getKingdomsx(Location loc) {
|
private boolean getKingdomsx(Location loc) {
|
||||||
|
@ -11,7 +11,7 @@ import java.util.Map;
|
|||||||
|
|
||||||
public class WorldCustom implements RTPWorld {
|
public class WorldCustom implements RTPWorld {
|
||||||
public String world;
|
public String world;
|
||||||
private boolean useWorldborder = false;
|
private boolean useWorldborder;
|
||||||
private int CenterX, CenterZ, maxBorderRad, minBorderRad, price;
|
private int CenterX, CenterZ, maxBorderRad, minBorderRad, price;
|
||||||
private List<String> Biomes;
|
private List<String> Biomes;
|
||||||
|
|
||||||
@ -21,6 +21,16 @@ public class WorldCustom implements RTPWorld {
|
|||||||
List<Map<?, ?>> map = config.getMapList("CustomWorlds");
|
List<Map<?, ?>> map = config.getMapList("CustomWorlds");
|
||||||
this.world = world;
|
this.world = world;
|
||||||
|
|
||||||
|
//Set Defaults
|
||||||
|
WorldDefault worldDefault = BetterRTP.getInstance().getRTP().defaultWorld;
|
||||||
|
maxBorderRad = worldDefault.getMaxRad();
|
||||||
|
minBorderRad = worldDefault.getMinRad();
|
||||||
|
useWorldborder = worldDefault.getUseWorldborder();
|
||||||
|
CenterX = worldDefault.getCenterX();
|
||||||
|
CenterZ = worldDefault.getCenterZ();
|
||||||
|
price = worldDefault.getPrice();
|
||||||
|
Biomes = worldDefault.getBiomes();
|
||||||
|
|
||||||
//Find Custom World and cache values
|
//Find Custom World and cache values
|
||||||
for (Map<?, ?> m : map) {
|
for (Map<?, ?> m : map) {
|
||||||
for (Map.Entry<?, ?> entry : m.entrySet()) {
|
for (Map.Entry<?, ?> entry : m.entrySet()) {
|
||||||
@ -39,8 +49,9 @@ public class WorldCustom implements RTPWorld {
|
|||||||
CenterX = Integer.parseInt((test.get("CenterX")).toString());
|
CenterX = Integer.parseInt((test.get("CenterX")).toString());
|
||||||
}
|
}
|
||||||
if (test.get("CenterZ") != null) {
|
if (test.get("CenterZ") != null) {
|
||||||
if (test.get("CenterZ").getClass() == Integer.class)
|
if (test.get("CenterZ").getClass() == Integer.class) {
|
||||||
CenterZ = Integer.parseInt((test.get("CenterZ")).toString());
|
CenterZ = Integer.parseInt((test.get("CenterZ")).toString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (test.get("MaxRadius") != null) {
|
if (test.get("MaxRadius") != null) {
|
||||||
if (test.get("MaxRadius").getClass() == Integer.class)
|
if (test.get("MaxRadius").getClass() == Integer.class)
|
||||||
@ -73,19 +84,18 @@ public class WorldCustom implements RTPWorld {
|
|||||||
//Integers
|
//Integers
|
||||||
CenterX = config.getInt(pre + world + ".CenterX");
|
CenterX = config.getInt(pre + world + ".CenterX");
|
||||||
CenterZ = config.getInt(pre + world + ".CenterZ");
|
CenterZ = config.getInt(pre + world + ".CenterZ");
|
||||||
maxBorderRad = config.getInt(pre + world + ".MaxRadius");
|
maxBorderRad = config.getInt(pre + world + ".MaxRadius");*/
|
||||||
if (maxBorderRad <= 0) {
|
if (maxBorderRad <= 0) {
|
||||||
Main.getInstance().getText().sms(Bukkit.getConsoleSender(),
|
BetterRTP.getInstance().getText().sms(Bukkit.getConsoleSender(),
|
||||||
"WARNING! Custom world '" + world + "' Maximum radius of '" + maxBorderRad + "' is not allowed! Set to default value!");
|
"WARNING! Custom world '" + world + "' Maximum radius of '" + maxBorderRad + "' is not allowed! Set to default value!");
|
||||||
maxBorderRad = Main.getInstance().getRTP().Default.getMaxRad();
|
maxBorderRad = BetterRTP.getInstance().getRTP().defaultWorld.getMaxRad();
|
||||||
}
|
}
|
||||||
minBorderRad = config.getInt(pre + world + ".MinRadius");
|
//minBorderRad = config.getInt(pre + world + ".MinRadius");
|
||||||
if (minBorderRad <= 0 || minBorderRad >= maxBorderRad) {
|
if (minBorderRad <= 0 || minBorderRad >= maxBorderRad) {
|
||||||
Main.getInstance().getText().sms(Bukkit.getConsoleSender(),
|
BetterRTP.getInstance().getText().sms(Bukkit.getConsoleSender(),
|
||||||
"WARNING! Custom world '" + world + "' Minimum radius of '" + minBorderRad + "' is not allowed! Set to default value!");
|
"WARNING! Custom world '" + world + "' Minimum radius of '" + minBorderRad + "' is not allowed! Set to default value!");
|
||||||
minBorderRad = Main.getInstance().getRTP().Default.getMinRad();
|
minBorderRad = BetterRTP.getInstance().getRTP().defaultWorld.getMinRad();
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
if (BetterRTP.getInstance().getFiles().getType(FileBasics.FILETYPE.ECO).getBoolean("Economy.Enabled"))
|
if (BetterRTP.getInstance().getFiles().getType(FileBasics.FILETYPE.ECO).getBoolean("Economy.Enabled"))
|
||||||
if (BetterRTP.getInstance().getFiles().getType(FileBasics.FILETYPE.ECO).getBoolean(pre + "Enabled")) {
|
if (BetterRTP.getInstance().getFiles().getType(FileBasics.FILETYPE.ECO).getBoolean(pre + "Enabled")) {
|
||||||
map.clear();
|
map.clear();
|
||||||
|
@ -36,8 +36,10 @@ public class WorldPlayer implements RTPWorld {
|
|||||||
setMinRad(world.getMinRad());
|
setMinRad(world.getMinRad());
|
||||||
setPrice(price);
|
setPrice(price);
|
||||||
List<String> list = new ArrayList<>(world.getBiomes());
|
List<String> list = new ArrayList<>(world.getBiomes());
|
||||||
if (biomes != null)
|
if (biomes != null) {
|
||||||
|
list.clear();
|
||||||
list.addAll(biomes);
|
list.addAll(biomes);
|
||||||
|
}
|
||||||
setBiomes(list);
|
setBiomes(list);
|
||||||
if (personal)
|
if (personal)
|
||||||
setupGroup(BetterRTP.getInstance().getRTP().permConfig);
|
setupGroup(BetterRTP.getInstance().getRTP().permConfig);
|
||||||
|
@ -18,7 +18,6 @@ Messages:
|
|||||||
NoPermission:
|
NoPermission:
|
||||||
Basic: '&c对不起,&7你没有权限使用此命令!'
|
Basic: '&c对不起,&7你没有权限使用此命令!'
|
||||||
World: '&c对不起,&7你并没有被准许在%world%世界传送!'
|
World: '&c对不起,&7你并没有被准许在%world%世界传送!'
|
||||||
## %world% 是被设置为玩家无法随机传送的世界。#
|
|
||||||
DisabledWorld: '&c%world%世界已被禁止使用此命令,&7无法传送!'
|
DisabledWorld: '&c%world%世界已被禁止使用此命令,&7无法传送!'
|
||||||
Cooldown: '&c对不起,&7你需要在&c%time%&7秒后才能传送!'
|
Cooldown: '&c对不起,&7你需要在&c%time%&7秒后才能传送!'
|
||||||
Locked: '&c对不起,&7你已经用完了你的随机传送次数了!'
|
Locked: '&c对不起,&7你已经用完了你的随机传送次数了!'
|
||||||
|
@ -18,7 +18,6 @@ Messages:
|
|||||||
NoPermission:
|
NoPermission:
|
||||||
Basic: '&c抱歉,&7您沒有權限使用此指令!'
|
Basic: '&c抱歉,&7您沒有權限使用此指令!'
|
||||||
World: '&c抱歉,&7您不能在%world%世界傳送!'
|
World: '&c抱歉,&7您不能在%world%世界傳送!'
|
||||||
## %world% 是玩家嘗試傳送到但設定已禁用的世界! #
|
|
||||||
DisabledWorld: '&c%world%世界已被禁止使用此指令,&7您無法傳送!'
|
DisabledWorld: '&c%world%世界已被禁止使用此指令,&7您無法傳送!'
|
||||||
Cooldown: '&c抱歉,&7您需要在&c%time%&7秒後才能嘗試傳送!'
|
Cooldown: '&c抱歉,&7您需要在&c%time%&7秒後才能嘗試傳送!'
|
||||||
Locked: '&cSorry! &7You''ve used up all your RTP''s!'
|
Locked: '&cSorry! &7You''ve used up all your RTP''s!'
|
||||||
|
@ -18,7 +18,6 @@ Messages:
|
|||||||
NoPermission:
|
NoPermission:
|
||||||
Basic: '&cSorry! &7You don''t have permission to use this command!'
|
Basic: '&cSorry! &7You don''t have permission to use this command!'
|
||||||
World: '&cSorry! &7You are not allowed rtp in the %world% world!'
|
World: '&cSorry! &7You are not allowed rtp in the %world% world!'
|
||||||
## %world% is the world the player is in that is disabled to rtp in! #
|
|
||||||
DisabledWorld: '&cDisabled World %world%! &7Could not RTP!'
|
DisabledWorld: '&cDisabled World %world%! &7Could not RTP!'
|
||||||
Cooldown: '&cSorry! &7You can''t rtp for another &c%time% &7seconds!'
|
Cooldown: '&cSorry! &7You can''t rtp for another &c%time% &7seconds!'
|
||||||
Locked: '&cSorry! &7You''ve used up all your RTP''s!'
|
Locked: '&cSorry! &7You''ve used up all your RTP''s!'
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
# Translation author: At0micA55, Mrflo67 (GitHub)
|
# Translation author: At0micA55, Mrflo67 (GitHub)
|
||||||
Messages:
|
Messages:
|
||||||
Prefix: '&7[&6BetterRTP&7] '
|
Prefix: '&7[&6BetterRTP&7] '
|
||||||
## Placeholders! %x% %y% et %z% sont les coordonées x, y, et z auxquelles le joueur sera téléporté! #
|
Success: ## Placeholders! %x% %y% et %z% sont les coordonées x, y, et z auxquelles le joueur sera téléporté! #
|
||||||
Success:
|
|
||||||
Paid: '&aTu as été téléporté à&7 x=%x% y=%y% z=%z% pour &c$%price%&7 en &f%attempts% &7tentatives!'
|
Paid: '&aTu as été téléporté à&7 x=%x% y=%y% z=%z% pour &c$%price%&7 en &f%attempts% &7tentatives!'
|
||||||
Bypass: '&aTu as été téléporté à&7 x=%x% y=%y% z=%z% en &f%attempts% &7tentatives!'
|
Bypass: '&aTu as été téléporté à&7 x=%x% y=%y% z=%z% en &f%attempts% &7tentatives!'
|
||||||
Loading: '&aEndroit sûr trouvé! &7Chargement des chunks...'
|
Loading: '&aEndroit sûr trouvé! &7Chargement des chunks...'
|
||||||
@ -14,11 +13,11 @@ Messages:
|
|||||||
Other:
|
Other:
|
||||||
Success: '&a%player% a été téléporté à&7 x=%x% y=%y% z=%z% em &f%attempts% &7tentatives!'
|
Success: '&a%player% a été téléporté à&7 x=%x% y=%y% z=%z% em &f%attempts% &7tentatives!'
|
||||||
NotSafe: '&cImpossible de trouver un endroit sûr en %attempts% tentatives! &7%player% n''a pas été téléporté!'
|
NotSafe: '&cImpossible de trouver un endroit sûr en %attempts% tentatives! &7%player% n''a pas été téléporté!'
|
||||||
|
# Biome: '&cSeems like the biome&7 %biome%&c does not exist! &7Try using the tab list!'
|
||||||
Reload: '&eConfiguration rechargée avec succès!'
|
Reload: '&eConfiguration rechargée avec succès!'
|
||||||
NoPermission:
|
NoPermission:
|
||||||
Basic: '&cDésolé! &7Il te manque la permission pour utiliser cette commande'
|
Basic: '&cDésolé! &7Il te manque la permission pour utiliser cette commande'
|
||||||
World: '&cDésolé! &7Tu n''es pas autorisé à te téléporter dans le monde %world% !'
|
World: '&cDésolé! &7Tu n''es pas autorisé à te téléporter dans le monde %world% !'
|
||||||
## %world% Est le monde dans lequel le joueur est téléporté ! #
|
|
||||||
DisabledWorld: '&cLe monde %world% est désactivé! &7Impossible de se téléporter!'
|
DisabledWorld: '&cLe monde %world% est désactivé! &7Impossible de se téléporter!'
|
||||||
Cooldown: '&cDésolé! &7Tu ne peux pas te téléporter pour encore &c%time% &7secondes!'
|
Cooldown: '&cDésolé! &7Tu ne peux pas te téléporter pour encore &c%time% &7secondes!'
|
||||||
Locked: '&cSDésolé! &7Vous avez utilisé tous vos RTP''s!'
|
Locked: '&cSDésolé! &7Vous avez utilisé tous vos RTP''s!'
|
||||||
|
@ -18,7 +18,6 @@ Messages:
|
|||||||
NoPermission:
|
NoPermission:
|
||||||
Basic: '&cごめんなさい! &7このコマンドを使う権限がありません!'
|
Basic: '&cごめんなさい! &7このコマンドを使う権限がありません!'
|
||||||
World: '&cごめんなさい! &7ワールド%world%ではrtpが許可されていません!'
|
World: '&cごめんなさい! &7ワールド%world%ではrtpが許可されていません!'
|
||||||
##
|
|
||||||
DisabledWorld: '&cワールド%world%は無効です! &7RTPできませんでした!'
|
DisabledWorld: '&cワールド%world%は無効です! &7RTPできませんでした!'
|
||||||
Cooldown: '&cごめんなさい! &7あなたは&c%time%&7秒間RTPできません!'
|
Cooldown: '&cごめんなさい! &7あなたは&c%time%&7秒間RTPできません!'
|
||||||
Locked: '&cSorry! &7You''ve used up all your RTP''s!'
|
Locked: '&cSorry! &7You''ve used up all your RTP''s!'
|
||||||
|
@ -2,31 +2,24 @@
|
|||||||
Messages:
|
Messages:
|
||||||
Prefix: '&7[&6BetterRTP&7] '
|
Prefix: '&7[&6BetterRTP&7] '
|
||||||
Success:
|
Success:
|
||||||
Paid: '&aZostałeś przeniesiony do&7 x=%x% y=%y% z=%z% za &c$%price%&7 w &f%attempts%
|
Paid: '&aZostałeś przeniesiony do&7 x=%x% y=%y% z=%z% za &c$%price%&7 w &f%attempts% &7podejściach!'
|
||||||
&7podejściach!'
|
|
||||||
Bypass: '&aZostałeś przeniesiony do&7 x=%x% y=%y% z=%z% w &f%attempts% &podejściach'
|
Bypass: '&aZostałeś przeniesiony do&7 x=%x% y=%y% z=%z% w &f%attempts% &podejściach'
|
||||||
Loading: '&aZnaleziono bezpieczną strefę! &7Ładowanie chunków...'
|
Loading: '&aZnaleziono bezpieczną strefę! &7Ładowanie chunków...'
|
||||||
Teleport: '&aTeleportuję... &fprosze czekać aż znajdziemy bezpieczną lokację!'
|
Teleport: '&aTeleportuję... &fprosze czekać aż znajdziemy bezpieczną lokację!'
|
||||||
Failed:
|
Failed:
|
||||||
Price: '&cNie udało się wykonać rtp z powodu niewystarczających środków! &7Musisz
|
Price: '&cNie udało się wykonać rtp z powodu niewystarczających środków! &7Musisz mieć przynajmniej $%price% &7by wykonać rtp!'
|
||||||
mieć przynajmniej $%price% &7by wykonać rtp!'
|
NotSafe: '&cNie udało się znaleź bezpiecznego miejsca w %attempts% próbach! &7Nie zostałeś przeniesiony!'
|
||||||
NotSafe: '&cNie udało się znaleź bezpiecznego miejsca w %attempts% próbach! &7Nie
|
|
||||||
zostałeś przeniesiony!'
|
|
||||||
Hunger: '&cNie można wykonać rtp bo jesteś... &7zbyt głodny&c, zjedz coś mordo!'
|
Hunger: '&cNie można wykonać rtp bo jesteś... &7zbyt głodny&c, zjedz coś mordo!'
|
||||||
Other:
|
Other:
|
||||||
Success: '&a%player% został steleportowany do&7 x=%x% y=%y% z=%z% w &f%attempts%
|
Success: '&a%player% został steleportowany do&7 x=%x% y=%y% z=%z% w &f%attempts% &7próbach!'
|
||||||
&7próbach!'
|
NotSafe: '&cNie udało się znaleźć bezpiecznego miejsca w %attempts% próbach! &7%player% nie został losowo steleportowany!'
|
||||||
NotSafe: '&cNie udało się znaleźć bezpiecznego miejsca w %attempts% próbach! &7%player%
|
|
||||||
nie został losowo steleportowany!'
|
|
||||||
Biome: '&cWygląda na to, że biom&7 %biome%&c nie istnieje! &7Spróbuj użyć listy!'
|
Biome: '&cWygląda na to, że biom&7 %biome%&c nie istnieje! &7Spróbuj użyć listy!'
|
||||||
Reload: '&ePrzeładowano konfigurację!'
|
Reload: '&ePrzeładowano konfigurację!'
|
||||||
NoPermission:
|
NoPermission:
|
||||||
Basic: '&cHej! &7Nie masz uprawnień do tej komendy!'
|
Basic: '&cHej! &7Nie masz uprawnień do tej komendy!'
|
||||||
World: '&cHej! &7Nie jesteś uprawniony by wykonać losową teleoprtację w świecie
|
World: '&cHej! &7Nie jesteś uprawniony by wykonać losową teleoprtację w świecie %world%!'
|
||||||
%world%!'
|
|
||||||
DisabledWorld: '&cZablokowany świat %world%! &7Nie można wykonać losowej teleportacji!'
|
DisabledWorld: '&cZablokowany świat %world%! &7Nie można wykonać losowej teleportacji!'
|
||||||
Cooldown: '&cWybacz! &7Nie możesz wykonać losowej teleportacji przez następne &c%time%
|
Cooldown: '&cWybacz! &7Nie możesz wykonać losowej teleportacji przez następne &c%time% &7sekund!'
|
||||||
&7sekund!'
|
|
||||||
Locked: '&cWybacz! &7Wykorzystałeś wszystkie losowe teleportacje!'
|
Locked: '&cWybacz! &7Wykorzystałeś wszystkie losowe teleportacje!'
|
||||||
Invalid: '&cNiewłaściwy argument. Spróbuj ''/%command% help'''
|
Invalid: '&cNiewłaściwy argument. Spróbuj ''/%command% help'''
|
||||||
NotOnline: '&cGraz &7%player% &cnie jest online!'
|
NotOnline: '&cGraz &7%player% &cnie jest online!'
|
||||||
@ -39,25 +32,21 @@ Messages:
|
|||||||
Error: '&cBłąd! &7Wpisano niewłaściwą wartość!'
|
Error: '&cBłąd! &7Wpisano niewłaściwą wartość!'
|
||||||
Set: '&bSukces! &7%type% ustawiony na %value%'
|
Set: '&bSukces! &7%type% ustawiony na %value%'
|
||||||
Remove: '&cUsunięto! &7Usunąłeś customowy świat %world%'
|
Remove: '&cUsunięto! &7Usunąłeś customowy świat %world%'
|
||||||
|
|
||||||
Help:
|
Help:
|
||||||
Prefix: '&e&m-----&6&l BetterRTP &8| Help &e&m-----'
|
Prefix: '&e&m-----&6&l BetterRTP &8| Help &e&m-----'
|
||||||
Main: ' &7- &e/%command% &7- wykonuje losową teleportację!'
|
Main: ' &7- &e/%command% &7- wykonuje losową teleportację!'
|
||||||
Biome: ' &7- &e/%command% biome <biome1, biome2...> &7- Losowo teleportuje do któregoś
|
Biome: ' &7- &e/%command% biome <biome1, biome2...> &7- Losowo teleportuje do któregoś z biomów'
|
||||||
z biomów'
|
Edit: ' &7- &e/%command% edit <default/world> [args...] &7- Edytuj niektóre ustawienia pluginu'
|
||||||
Edit: ' &7- &e/%command% edit <default/world> [args...] &7- Edytuj niektóre ustawienia
|
|
||||||
pluginu'
|
|
||||||
Help: ' &7- &e/%command% help &7- Pokazuję listę z pomocą'
|
Help: ' &7- &e/%command% help &7- Pokazuję listę z pomocą'
|
||||||
Info: ' &7- &e/%command% info [world/particles/shapes/potion_effects] &7- Pokazuje
|
Info: ' &7- &e/%command% info [world/particles/shapes/potion_effects] &7- Pokazuje wybrane informacje o parametrach pluginu'
|
||||||
wybrane informacje o parametrach pluginu'
|
Player: ' &7- &e/%command% player <player> [world] [biome1, biome2...] &7- Losowo teleportuje innego gracza'
|
||||||
Player: ' &7- &e/%command% player <player> [world] [biome1, biome2...] &7- Losowo
|
|
||||||
teleportuje innego gracza'
|
|
||||||
Reload: ' &7- &e/%command% reload &7- Przeładowuje plugin'
|
Reload: ' &7- &e/%command% reload &7- Przeładowuje plugin'
|
||||||
Settings: ' &7- &e/%command% settings &7- Pokazuje GUI z ustawieniami'
|
Settings: ' &7- &e/%command% settings &7- Pokazuje GUI z ustawieniami'
|
||||||
Test: ' &7- &e/%command% test &7- Testuje efekty teleportacji bez ruszania się z
|
Test: ' &7- &e/%command% test &7- Testuje efekty teleportacji bez ruszania się z miejsca'
|
||||||
miejsca'
|
|
||||||
Version: ' &7- &e/%command% version &7- Pokaż wersję pluginu'
|
Version: ' &7- &e/%command% version &7- Pokaż wersję pluginu'
|
||||||
World: ' &7- &e/%command% world <world> [biome1, biome2...] &7- Losowo teleportuj
|
World: ' &7- &e/%command% world <world> [biome1, biome2...] &7- Losowo teleportuj do innego świata'
|
||||||
do innego świata'
|
|
||||||
Usage:
|
Usage:
|
||||||
Player: '&cUsage&7: /%command% player <player> [world] [biome1, biome2]'
|
Player: '&cUsage&7: /%command% player <player> [world] [biome1, biome2]'
|
||||||
World: '&cUsage&7: /%command% world <world> [biome1, biome2...]'
|
World: '&cUsage&7: /%command% world <world> [biome1, biome2...]'
|
||||||
@ -65,5 +54,4 @@ Usage:
|
|||||||
Edit:
|
Edit:
|
||||||
Base: '&cUsage&7: /%command% edit <default/world> [args...]'
|
Base: '&cUsage&7: /%command% edit <default/world> [args...]'
|
||||||
Default: '&cUsage&7: /%command% edit default <max/min/useworldborder/center> <value>'
|
Default: '&cUsage&7: /%command% edit default <max/min/useworldborder/center> <value>'
|
||||||
World: '&cUsage&7: /%command% edit world <world> <max/min/useworldborder/center>
|
World: '&cUsage&7: /%command% edit world <world> <max/min/useworldborder/center> <value>'
|
||||||
<value>'
|
|
@ -1,57 +1,57 @@
|
|||||||
# Translation author: Mats_brony (Forine.net)
|
# Translated to Russian by Logan (https://t.me/icemine_ru)
|
||||||
Messages:
|
Messages:
|
||||||
Prefix: '&7[&6BetterRTP&7] '
|
Prefix: '&7[&6BetterRTP&7] '
|
||||||
Success:
|
Success:
|
||||||
Paid: '&aВы телепортировались на &7x=&a%x% &7y=&a%y% &7z=&a%z% &7за &c$%price%&7, за &f%attempts% &7попытку(ок)!'
|
Paid: '&aВы были телепортированы по координатам &7X: %x%, Y: %y%, Z: %z%&a за &7%attempts%&a попыток и &7$%price%.'
|
||||||
Bypass: '&aВы телепортировались на &7x=&a%x% &7y=&a%y% &7z=&a%z% &7за &f%attempts% &7попытку(ок)!'
|
Bypass: '&aВы были телепортированы по координатам &7X: %x%, Y: %y%, Z: %z%&a за &7%attempts%&a попыток.'
|
||||||
Loading: '&aБезопасное место найдено! &7Загрузка чанков...'
|
Loading: '&aБезопасное место найдено. &7Прогрузка чанков...'
|
||||||
Teleport: '&aТелепортация... &fпожалуйста, подождите, пока мы найдем безопасное место!'
|
Teleport: '&aТелепортация... &7Пожалуйста, подождите, пока будет найдено безопасное место.'
|
||||||
Failed:
|
Failed:
|
||||||
Price: '&cНе удалось выполнить rtp из-за недостатка средств! &7Вы должны иметь как минимум $%price% &7для rtp!'
|
Price: '&cНевозможно использовать RTP в связи с нехваткой средств! &7Вы должны иметь, как минимум, $%price% на счёте.'
|
||||||
NotSafe: '&cНе удалось найти безопасное место за %attempts% попытку(ок)! &7Вы не были телепортированы!'
|
NotSafe: '&cБезопасное место не было найдено в течение &7%attempts%&c попыток! Вы не были телепортированы.'
|
||||||
Hunger: '&cНе удалось rtp, потому что ты... &7слишком голоден&c, съешь что-нибудь, приятель!'
|
Hunger: '&cНевозможно телепортировать – вы слишком &7голодны!&c Поешьте прежде.'
|
||||||
Other:
|
Other:
|
||||||
Success: '&a%player% телепортирован на &7x=&a%x% &7y=&a%y% &7z=&a%z% &7за &f%attempts% &7попытку(ок)!'
|
Success: '&7%player%&c был телепортирован по координатам &7X: %x%, Y: %y%, Z: %z%&a за &7%attempts%&a попыток.'
|
||||||
NotSafe: '&cНе удалось найти безопасное место за %attempts% попытку(ок)! &7%player% не был телепортирован!'
|
NotSafe: '&cБезопасное место не было найдено в течение &7%attempts%&c попыток! &7%player%&c не был телепортированы.'
|
||||||
Biome: '&cПохоже биом&7 %biome%&c не существует! &7Попробуйте использовать TAB!'
|
Biome: '&cПохоже, биом &7%biome%&c не существует. Попробуйте использовать TAB-лист.'
|
||||||
Reload: '&eКонфиг успешно перезагружен!'
|
Reload: '&eКонфиг успешно перезагружен!'
|
||||||
NoPermission:
|
NoPermission:
|
||||||
Basic: '&cИзвините! &7У вас нет разрешения на использование этой команды!'
|
Basic: '&cИзвините! Недостаточно полномочий для выполнения команды.'
|
||||||
World: '&cИзвините! &7Вам не разрешено использовать rtp в %world% мире!'
|
World: '&cК сожалению, Вам не разрешено использовать рандомную телепортацию в мире &7%world%.'
|
||||||
DisabledWorld: '&cМир %world% исключён! &7Не удалось телепортироваться!'
|
DisabledWorld: '&cНевозможно использовать рандомную телепортацию - мир &7%world%&c отключен!'
|
||||||
Cooldown: '&cИзвините! &7Вы не можете использовать rtp еще &c%time% &7секунд(ы/у)!'
|
Cooldown: '&cК сожалению, рандомная телепортация будет недоступна еще &7%time%&c секунд.'
|
||||||
Locked: '&cИзвините! &7Вы израсходовали все свои попытки rtp!'
|
Locked: '&cК сожалению, Вы истратили все свои рандомные телепортации.'
|
||||||
Invalid: '&cНедопустимый аргумент. Попробуйте ''/%command% help'''
|
Invalid: '&cНеверный аргумент. Используйте: ''/%command% help'''
|
||||||
NotOnline: '&cИгрок &7%player% &cне онлайн!'
|
NotOnline: '&cИгрок &7%player% &cне в игре.'
|
||||||
Delay: '&aТелепортация через &f%time% &aсекунд(ы/у)! Не двигайтесь!'
|
Delay: '&aТелепортация через &7%time% &aсекунд! Не двигайтесь!'
|
||||||
Moved: '&cВы двинулись &7rtp отменено!'
|
Moved: '&cВы двинулись! &7Рандомная телепортация отменена!'
|
||||||
NotExist: '&cПохоже мир &7%world% &cне существует!'
|
NotExist: '&cПохоже, мир &7%world%&c не существует.'
|
||||||
Already: '&cОй! &7Похоже, вы уже используете rtp, наберитесь терпения!'
|
Already: '&cВы уже ожидаете рандомную телепортацию. Проявите терпение.'
|
||||||
Sign: '&7Значение команды создано! &7Команда... ''&f/rtp %command%&7'''
|
Sign: '&aКомандная табличка создана. Команда: &7''&7/rtp %command%&7'''
|
||||||
Edit:
|
Edit:
|
||||||
Error: '&cОшибка! &7Неверный ввод!'
|
Error: '&cОшибка! &7Введены неверные значения.'
|
||||||
Set: '&bУспех! &7%type% установлено %value%'
|
Set: '&bУспех! &7%type% установлен на %value%'
|
||||||
Remove: '&cУдалено! &7Вы удалили мир %world%'
|
Remove: '&cУдалено! &7Вы удалили нестандартный мир %world%'
|
||||||
|
|
||||||
Help:
|
Help:
|
||||||
Prefix: '&e&m-----&6&l BetterRTP &8| Help &e&m-----'
|
Prefix: '&e&m-----&6&l BetterRTP &8| Помощь &e&m-----'
|
||||||
Main: ' &7- &e/%command% &7- случайный телепорт!'
|
Main: ' &7- &e/%command% &7- телепортирует Вас в рандомное место!'
|
||||||
Biome: ' &7- &e/%command% biome <biome1, biome2...> &7- рандомный телепорт в эти биомы'
|
Biome: ' &7- &e/%command% biome <биом1, биом2...> &7- телепортирует Вас в рандомное место в указанных биомах'
|
||||||
Edit: ' &7- &e/%command% edit <default/world> [args...] &7- изменение настроек плагина'
|
Edit: ' &7- &e/%command% edit <default/world> [аргументы...] &7- настройка некоторых данных плагина'
|
||||||
Help: ' &7- &e/%command% help &7- посмотреть этот список'
|
Help: ' &7- &e/%command% help &7- отображает список команд'
|
||||||
Info: ' &7- &e/%command% info [world/particles/shapes/potion_effects] &7- просмотр конкретной информации о параметрах плагина'
|
Info: ' &7- &e/%command% info [world/particles/shapes/potion_effects] &7- отображает информацию о конкретных параметрах'
|
||||||
Player: ' &7- &e/%command% player <player> [world] [biome1, biome2...] &7- рандомный телепорт игрока'
|
Player: ' &7- &e/%command% player <player> [мир] [биом, биом...] &7- телепортирует игрока в рандомное место в указанных биомах в указанный мир'
|
||||||
Reload: ' &7- &e/%command% reload &7- перезагрузка плагина'
|
Reload: ' &7- &e/%command% reload &7- перезагрузка плагина'
|
||||||
Settings: ' &7- &e/%command% settings &7- открыть gui и изменить параметры'
|
Settings: ' &7- &e/%command% settings &7- отобразить GUI и некоторые параметры'
|
||||||
Test: ' &7- &e/%command% test &7- просмотр эффектов после телепортирования
|
Test: ' &7- &e/%command% test &7- протестировать эффект плагина после телелепортации'
|
||||||
не двигаясь'
|
Version: ' &7- &e/%command% version &7- отобразить текущую версию плагина'
|
||||||
Version: ' &7- &e/%command% version &7- посмотреть текущую версию плагина'
|
World: ' &7- &e/%command% world <world> [biome1, biome2...] &7- телепортирует Вас в рандомное место в указанных биомах в указанный мир'
|
||||||
World: ' &7- &e/%command% world <world> [biome1, biome2...] &7- рандомный телепорт
|
|
||||||
в другой мир'
|
|
||||||
Usage:
|
Usage:
|
||||||
Player: '&cИспользуйте&7: /%command% player <player> [world] [biome1, biome2]'
|
Player: '&cUsage&7: /%command% player <игрок> [мир] [биом1, биом2]'
|
||||||
World: '&cИспользуйте&7: /%command% world <world> [biome1, biome2...]'
|
World: '&cUsage&7: /%command% world <мир> [биом1, биом2...]'
|
||||||
Biome: '&cИспользуйте&7: /%command% biome <biome1, biome2...>'
|
Biome: '&cUsage&7: /%command% biome <биом1, биом2...>'
|
||||||
Edit:
|
Edit:
|
||||||
Base: '&cИспользуйте&7: /%command% edit <default/world> [args...]'
|
Base: '&cUsage&7: /%command% edit <default/world> [аргументы...]'
|
||||||
Default: '&cИспользуйте&7: /%command% edit default <max/min/useworldborder/center> <value>'
|
Default: '&cUsage&7: /%command% edit default <max/min/useworldborder/center> <value>'
|
||||||
World: '&cИспользуйте&7: /%command% edit world <world> <max/min/useworldborder/center> <value>'
|
World: '&cUsage&7: /%command% edit world <world> <max/min/useworldborder/center> <value>'
|
@ -1,5 +1,5 @@
|
|||||||
main: me.SuperRonanCraft.BetterRTP.BetterRTP
|
main: me.SuperRonanCraft.BetterRTP.BetterRTP
|
||||||
version: '3.0.1'
|
version: '3.0.2'
|
||||||
name: BetterRTP
|
name: BetterRTP
|
||||||
author: SuperRonanCraft
|
author: SuperRonanCraft
|
||||||
softdepend:
|
softdepend:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user