Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
negrifelipe committed Dec 2, 2021
1 parent f9abadd commit 247c250
Showing 1 changed file with 28 additions and 18 deletions.
46 changes: 28 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ Makes teleportation possible on your server
<Configuration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<MessageColor>magenta</MessageColor>
<TeleportDelay>5</TeleportDelay>
<TeleportCooldown>60</TeleportCooldown>
<CancelWhenMove>false</CancelWhenMove>
<TeleportProtection>false</TeleportProtection>
<TeleportProtectionTime>0</TeleportProtectionTime>
<TeleportCombatAllowed>false</TeleportCombatAllowed>
<TeleportCombatTime>0</TeleportCombatTime>
<TeleportCost>
<Enabled>false</Enabled>
<UseXp>true</UseXp>
Expand All @@ -30,23 +35,28 @@ Makes teleportation possible on your server
```xml
<?xml version="1.0" encoding="utf-8"?>
<Translations xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Translation Id="TpaCommand:WrongUsage" Value="Correct command usage: /tpa &lt;accept|send|cancel&gt;" />
<Translation Id="TpaCommand:WrongUsage:Send" Value="Correct command usage: /tpa send &lt;playerName&gt;" />
<Translation Id="TpaCommand:WrongUsage:NotFound" Value="Player with name {0} was not found" />
<Translation Id="TpaCommand:Send:Yourself" Value="There is no point on sending a tpa request to yourself" />
<Translation Id="TpaCommand:Send:Target" Value="{0} has just sent you a tpa request. Use &quot;/tpa accept&quot; to accept it or &#xA;/tpa cancel&#xA; to cancel it" />
<Translation Id="TpaCommand:Send:Sender" Value="Successfully sent a tpa request to {0}. Use &quot;/tpa cancel&quot; to cancel it" />
<Translation Id="TpaCommand:Accept:NoRequests" Value="There are no tpa requests to accept" />
<Translation Id="TpaCommand:Accept:Delay" Value="You will be teleported to {0} in {1} seconds" />
<Translation Id="TpaCommand:Accept:Success" Value="Successfully accepted {0}'s tpa" />
<Translation Id="TpaCommand:Accept:Teleported" Value="Successfully teleported to {0}" />
<Translation Id="TpaCommand:Cancel:NotRequests" Value="There are no tpa requests to cancel" />
<Translation Id="TpaCommand:Cancel:Other" Value="{0} has just cancelled the tpa request" />
<Translation Id="TpaCommand:Cancel:Success" Value="Successfully canceled the tpa with {0}" />
<Translation Id="TpaValidation:Car:Other" Value="The teleport was cancelled because {0} is on a car" />
<Translation Id="TpaValidation:Car:Self" Value="The teleport was cancelled because you are on a car" />
<Translation Id="TpaValidation:Leave" Value="The teleport was cancelled because {0} left the server" />
<Translation Id="TpaValidation:Balance:Sender" Value="You dont have enough balance to teleport. Teleport cost: {0}" />
<Translation Id="TpaValidation:Balance:Target" Value="The teleport was cancelled because {0} does not have enough balance" />
<Translation Id="TpaCommand:WrongUsage" Value="Correct command usage: /tpa &lt;accept|send|cancel&gt;" />
<Translation Id="TpaCommand:WrongUsage:Send" Value="Correct command usage: /tpa send &lt;playerName&gt;" />
<Translation Id="TpaCommand:WrongUsage:NotFound" Value="Player with name {0} was not found" />
<Translation Id="TpaCommand:Send:Yourself" Value="There is no point on sending a tpa request to yourself" />
<Translation Id="TpaCommand:Send:Target" Value="{0} has just sent you a tpa request. Use &quot;/tpa accept&quot; to accept it or &#xA;/tpa cancel&#xA; to cancel it" />
<Translation Id="TpaCommand:Send:Sender" Value="Successfully sent a tpa request to {0}. Use &quot;/tpa cancel&quot; to cancel it" />
<Translation Id="TpaCommand:Send:Cooldown" Value="You cannot send a tpa request. Wait {0} seconds" />
<Translation Id="TpaCommand:Accept:NoRequests" Value="There are no tpa requests to accept" />
<Translation Id="TpaCommand:Accept:Delay" Value="You will be teleported to {0} in {1} seconds" />
<Translation Id="TpaCommand:Accept:Success" Value="Successfully accepted {0}'s tpa" />
<Translation Id="TpaCommand:Accept:Teleported" Value="Successfully teleported to {0}" />
<Translation Id="TpaCommand:Cancel:NotRequests" Value="There are no tpa requests to cancel" />
<Translation Id="TpaCommand:Cancel:Other" Value="{0} has just cancelled the tpa request" />
<Translation Id="TpaCommand:Cancel:Success" Value="Successfully canceled the tpa with {0}" />
<Translation Id="TpaValidation:Car:Other" Value="The teleport was cancelled because {0} is on a car" />
<Translation Id="TpaValidation:Car:Self" Value="The teleport was cancelled because you are on a car" />
<Translation Id="TpaValidation:Leave" Value="The teleport was cancelled because {0} left the server" />
<Translation Id="TpaValidation:Balance:Sender" Value="You dont have enough balance to teleport. Teleport cost: {0}" />
<Translation Id="TpaValidation:Balance:Target" Value="The teleport was cancelled because {0} does not have enough balance" />
<Translation Id="TpaCommand:Send:Combat" Value="Could not send the tpa request because you are in combat. You must wait {0} seconds" />
<Translation Id="TpaProtection" Value="You must wait {0} seconds to damage {1} he is on tpa protection" />
<Translation Id="TpaValidation:Combat:Sender" Value="The teleport was cancelled because you are in combat. The combat mode expires in {0} seconds" />
<Translation Id="TpaValidation:Combat:Target" Value="The teleport was cancelled because {0} is in combat" />
</Translations>
```

0 comments on commit 247c250

Please sign in to comment.