k
This commit is contained in:
parent
e482755330
commit
a8ef12d2d2
19
tpr/.github/pull_request_template.md
vendored
Normal file
19
tpr/.github/pull_request_template.md
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
<!-- If it fixes an reported issue, specify the issue number below -->
|
||||
|
||||
Closes #
|
||||
Things added/changed:
|
||||
<!-- Specify what the PR adds, fixes or does -->
|
||||
-
|
||||
-
|
||||
-
|
||||
|
||||
## To do
|
||||
Draft PR / Ready for review.
|
||||
<!-- Choose one of the options above -->
|
||||
|
||||
- [ ] Fixes
|
||||
- [ ] Add stuff
|
||||
- [ ] Vulnerability
|
||||
|
||||
## How to test
|
||||
<!-- Please add testing instructions here -->
|
11
tpr/.github/workflows/build.yml
vendored
Normal file
11
tpr/.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
on: [push, pull_request]
|
||||
name: build
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: lint
|
||||
uses: Roang-zero1/factorio-mod-luacheck@master
|
||||
with:
|
||||
luacheckrc_url: ""
|
18
tpr/.luacheckrc
Normal file
18
tpr/.luacheckrc
Normal file
@ -0,0 +1,18 @@
|
||||
unused_args = false
|
||||
allow_defined_top = true
|
||||
max_line_length = 999
|
||||
|
||||
globals = {
|
||||
"tp"
|
||||
}
|
||||
|
||||
read_globals = {
|
||||
string = {fields = {"split", "trim"}},
|
||||
table = {fields = {"copy", "getn"}},
|
||||
|
||||
"minetest", "vector",
|
||||
|
||||
"chat2", "gamehub",
|
||||
"intllib", "areas",
|
||||
|
||||
}
|
506
tpr/LICENSE.md
Normal file
506
tpr/LICENSE.md
Normal file
@ -0,0 +1,506 @@
|
||||
Copyright (C) ChaosWormz 2014-2021 and contributors
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 2.1, February 1999
|
||||
|
||||
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
[This is the first released version of the Lesser GPL. It also counts
|
||||
as the successor of the GNU Library Public License, version 2, hence
|
||||
the version number 2.1.]
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
Licenses are intended to guarantee your freedom to share and change
|
||||
free software--to make sure the software is free for all its users.
|
||||
|
||||
This license, the Lesser General Public License, applies to some
|
||||
specially designated software packages--typically libraries--of the
|
||||
Free Software Foundation and other authors who decide to use it. You
|
||||
can use it too, but we suggest you first think carefully about whether
|
||||
this license or the ordinary General Public License is the better
|
||||
strategy to use in any particular case, based on the explanations below.
|
||||
|
||||
When we speak of free software, we are referring to freedom of use,
|
||||
not price. Our General Public Licenses are designed to make sure that
|
||||
you have the freedom to distribute copies of free software (and charge
|
||||
for this service if you wish); that you receive source code or can get
|
||||
it if you want it; that you can change the software and use pieces of
|
||||
it in new free programs; and that you are informed that you can do
|
||||
these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
distributors to deny you these rights or to ask you to surrender these
|
||||
rights. These restrictions translate to certain responsibilities for
|
||||
you if you distribute copies of the library or if you modify it.
|
||||
|
||||
For example, if you distribute copies of the library, whether gratis
|
||||
or for a fee, you must give the recipients all the rights that we gave
|
||||
you. You must make sure that they, too, receive or can get the source
|
||||
code. If you link other code with the library, you must provide
|
||||
complete object files to the recipients, so that they can relink them
|
||||
with the library after making changes to the library and recompiling
|
||||
it. And you must show them these terms so they know their rights.
|
||||
|
||||
We protect your rights with a two-step method: (1) we copyright the
|
||||
library, and (2) we offer you this license, which gives you legal
|
||||
permission to copy, distribute and/or modify the library.
|
||||
|
||||
To protect each distributor, we want to make it very clear that
|
||||
there is no warranty for the free library. Also, if the library is
|
||||
modified by someone else and passed on, the recipients should know
|
||||
that what they have is not the original version, so that the original
|
||||
author's reputation will not be affected by problems that might be
|
||||
introduced by others.
|
||||
|
||||
Finally, software patents pose a constant threat to the existence of
|
||||
any free program. We wish to make sure that a company cannot
|
||||
effectively restrict the users of a free program by obtaining a
|
||||
restrictive license from a patent holder. Therefore, we insist that
|
||||
any patent license obtained for a version of the library must be
|
||||
consistent with the full freedom of use specified in this license.
|
||||
|
||||
Most GNU software, including some libraries, is covered by the
|
||||
ordinary GNU General Public License. This license, the GNU Lesser
|
||||
General Public License, applies to certain designated libraries, and
|
||||
is quite different from the ordinary General Public License. We use
|
||||
this license for certain libraries in order to permit linking those
|
||||
libraries into non-free programs.
|
||||
|
||||
When a program is linked with a library, whether statically or using
|
||||
a shared library, the combination of the two is legally speaking a
|
||||
combined work, a derivative of the original library. The ordinary
|
||||
General Public License therefore permits such linking only if the
|
||||
entire combination fits its criteria of freedom. The Lesser General
|
||||
Public License permits more lax criteria for linking other code with
|
||||
the library.
|
||||
|
||||
We call this license the "Lesser" General Public License because it
|
||||
does Less to protect the user's freedom than the ordinary General
|
||||
Public License. It also provides other free software developers Less
|
||||
of an advantage over competing non-free programs. These disadvantages
|
||||
are the reason we use the ordinary General Public License for many
|
||||
libraries. However, the Lesser license provides advantages in certain
|
||||
special circumstances.
|
||||
|
||||
For example, on rare occasions, there may be a special need to
|
||||
encourage the widest possible use of a certain library, so that it becomes
|
||||
a de-facto standard. To achieve this, non-free programs must be
|
||||
allowed to use the library. A more frequent case is that a free
|
||||
library does the same job as widely used non-free libraries. In this
|
||||
case, there is little to gain by limiting the free library to free
|
||||
software only, so we use the Lesser General Public License.
|
||||
|
||||
In other cases, permission to use a particular library in non-free
|
||||
programs enables a greater number of people to use a large body of
|
||||
free software. For example, permission to use the GNU C Library in
|
||||
non-free programs enables many more people to use the whole GNU
|
||||
operating system, as well as its variant, the GNU/Linux operating
|
||||
system.
|
||||
|
||||
Although the Lesser General Public License is Less protective of the
|
||||
users' freedom, it does ensure that the user of a program that is
|
||||
linked with the Library has the freedom and the wherewithal to run
|
||||
that program using a modified version of the Library.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow. Pay close attention to the difference between a
|
||||
"work based on the library" and a "work that uses the library". The
|
||||
former contains code derived from the library, whereas the latter must
|
||||
be combined with the library in order to run.
|
||||
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License Agreement applies to any software library or other
|
||||
program which contains a notice placed by the copyright holder or
|
||||
other authorized party saying it may be distributed under the terms of
|
||||
this Lesser General Public License (also called "this License").
|
||||
Each licensee is addressed as "you".
|
||||
|
||||
A "library" means a collection of software functions and/or data
|
||||
prepared so as to be conveniently linked with application programs
|
||||
(which use some of those functions and data) to form executables.
|
||||
|
||||
The "Library", below, refers to any such software library or work
|
||||
which has been distributed under these terms. A "work based on the
|
||||
Library" means either the Library or any derivative work under
|
||||
copyright law: that is to say, a work containing the Library or a
|
||||
portion of it, either verbatim or with modifications and/or translated
|
||||
straightforwardly into another language. (Hereinafter, translation is
|
||||
included without limitation in the term "modification".)
|
||||
|
||||
"Source code" for a work means the preferred form of the work for
|
||||
making modifications to it. For a library, complete source code means
|
||||
all the source code for all modules it contains, plus any associated
|
||||
interface definition files, plus the scripts used to control compilation
|
||||
and installation of the library.
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running a program using the Library is not restricted, and output from
|
||||
such a program is covered only if its contents constitute a work based
|
||||
on the Library (independent of the use of the Library in a tool for
|
||||
writing it). Whether that is true depends on what the Library does
|
||||
and what the program that uses the Library does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Library's
|
||||
complete source code as you receive it, in any medium, provided that
|
||||
you conspicuously and appropriately publish on each copy an
|
||||
appropriate copyright notice and disclaimer of warranty; keep intact
|
||||
all the notices that refer to this License and to the absence of any
|
||||
warranty; and distribute a copy of this License along with the
|
||||
Library.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy,
|
||||
and you may at your option offer warranty protection in exchange for a
|
||||
fee.
|
||||
|
||||
2. You may modify your copy or copies of the Library or any portion
|
||||
of it, thus forming a work based on the Library, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) The modified work must itself be a software library.
|
||||
|
||||
b) You must cause the files modified to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
c) You must cause the whole of the work to be licensed at no
|
||||
charge to all third parties under the terms of this License.
|
||||
|
||||
d) If a facility in the modified Library refers to a function or a
|
||||
table of data to be supplied by an application program that uses
|
||||
the facility, other than as an argument passed when the facility
|
||||
is invoked, then you must make a good faith effort to ensure that,
|
||||
in the event an application does not supply such function or
|
||||
table, the facility still operates, and performs whatever part of
|
||||
its purpose remains meaningful.
|
||||
|
||||
(For example, a function in a library to compute square roots has
|
||||
a purpose that is entirely well-defined independent of the
|
||||
application. Therefore, Subsection 2d requires that any
|
||||
application-supplied function or table used by this function must
|
||||
be optional: if the application does not supply it, the square
|
||||
root function must still compute square roots.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Library,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Library, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote
|
||||
it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Library.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Library
|
||||
with the Library (or with a work based on the Library) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may opt to apply the terms of the ordinary GNU General Public
|
||||
License instead of this License to a given copy of the Library. To do
|
||||
this, you must alter all the notices that refer to this License, so
|
||||
that they refer to the ordinary GNU General Public License, version 2,
|
||||
instead of to this License. (If a newer version than version 2 of the
|
||||
ordinary GNU General Public License has appeared, then you can specify
|
||||
that version instead if you wish.) Do not make any other change in
|
||||
these notices.
|
||||
|
||||
Once this change is made in a given copy, it is irreversible for
|
||||
that copy, so the ordinary GNU General Public License applies to all
|
||||
subsequent copies and derivative works made from that copy.
|
||||
|
||||
This option is useful when you wish to copy part of the code of
|
||||
the Library into a program that is not a library.
|
||||
|
||||
4. You may copy and distribute the Library (or a portion or
|
||||
derivative of it, under Section 2) in object code or executable form
|
||||
under the terms of Sections 1 and 2 above provided that you accompany
|
||||
it with the complete corresponding machine-readable source code, which
|
||||
must be distributed under the terms of Sections 1 and 2 above on a
|
||||
medium customarily used for software interchange.
|
||||
|
||||
If distribution of object code is made by offering access to copy
|
||||
from a designated place, then offering equivalent access to copy the
|
||||
source code from the same place satisfies the requirement to
|
||||
distribute the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
5. A program that contains no derivative of any portion of the
|
||||
Library, but is designed to work with the Library by being compiled or
|
||||
linked with it, is called a "work that uses the Library". Such a
|
||||
work, in isolation, is not a derivative work of the Library, and
|
||||
therefore falls outside the scope of this License.
|
||||
|
||||
However, linking a "work that uses the Library" with the Library
|
||||
creates an executable that is a derivative of the Library (because it
|
||||
contains portions of the Library), rather than a "work that uses the
|
||||
library". The executable is therefore covered by this License.
|
||||
Section 6 states terms for distribution of such executables.
|
||||
|
||||
When a "work that uses the Library" uses material from a header file
|
||||
that is part of the Library, the object code for the work may be a
|
||||
derivative work of the Library even though the source code is not.
|
||||
Whether this is true is especially significant if the work can be
|
||||
linked without the Library, or if the work is itself a library. The
|
||||
threshold for this to be true is not precisely defined by law.
|
||||
|
||||
If such an object file uses only numerical parameters, data
|
||||
structure layouts and accessors, and small macros and small inline
|
||||
functions (ten lines or less in length), then the use of the object
|
||||
file is unrestricted, regardless of whether it is legally a derivative
|
||||
work. (Executables containing this object code plus portions of the
|
||||
Library will still fall under Section 6.)
|
||||
|
||||
Otherwise, if the work is a derivative of the Library, you may
|
||||
distribute the object code for the work under the terms of Section 6.
|
||||
Any executables containing that work also fall under Section 6,
|
||||
whether or not they are linked directly with the Library itself.
|
||||
|
||||
6. As an exception to the Sections above, you may also combine or
|
||||
link a "work that uses the Library" with the Library to produce a
|
||||
work containing portions of the Library, and distribute that work
|
||||
under terms of your choice, provided that the terms permit
|
||||
modification of the work for the customer's own use and reverse
|
||||
engineering for debugging such modifications.
|
||||
|
||||
You must give prominent notice with each copy of the work that the
|
||||
Library is used in it and that the Library and its use are covered by
|
||||
this License. You must supply a copy of this License. If the work
|
||||
during execution displays copyright notices, you must include the
|
||||
copyright notice for the Library among them, as well as a reference
|
||||
directing the user to the copy of this License. Also, you must do one
|
||||
of these things:
|
||||
|
||||
a) Accompany the work with the complete corresponding
|
||||
machine-readable source code for the Library including whatever
|
||||
changes were used in the work (which must be distributed under
|
||||
Sections 1 and 2 above); and, if the work is an executable linked
|
||||
with the Library, with the complete machine-readable "work that
|
||||
uses the Library", as object code and/or source code, so that the
|
||||
user can modify the Library and then relink to produce a modified
|
||||
executable containing the modified Library. (It is understood
|
||||
that the user who changes the contents of definitions files in the
|
||||
Library will not necessarily be able to recompile the application
|
||||
to use the modified definitions.)
|
||||
|
||||
b) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (1) uses at run time a
|
||||
copy of the library already present on the user's computer system,
|
||||
rather than copying library functions into the executable, and (2)
|
||||
will operate properly with a modified version of the library, if
|
||||
the user installs one, as long as the modified version is
|
||||
interface-compatible with the version that the work was made with.
|
||||
|
||||
c) Accompany the work with a written offer, valid for at
|
||||
least three years, to give the same user the materials
|
||||
specified in Subsection 6a, above, for a charge no more
|
||||
than the cost of performing this distribution.
|
||||
|
||||
d) If distribution of the work is made by offering access to copy
|
||||
from a designated place, offer equivalent access to copy the above
|
||||
specified materials from the same place.
|
||||
|
||||
e) Verify that the user has already received a copy of these
|
||||
materials or that you have already sent this user a copy.
|
||||
|
||||
For an executable, the required form of the "work that uses the
|
||||
Library" must include any data and utility programs needed for
|
||||
reproducing the executable from it. However, as a special exception,
|
||||
the materials to be distributed need not include anything that is
|
||||
normally distributed (in either source or binary form) with the major
|
||||
components (compiler, kernel, and so on) of the operating system on
|
||||
which the executable runs, unless that component itself accompanies
|
||||
the executable.
|
||||
|
||||
It may happen that this requirement contradicts the license
|
||||
restrictions of other proprietary libraries that do not normally
|
||||
accompany the operating system. Such a contradiction means you cannot
|
||||
use both them and the Library together in an executable that you
|
||||
distribute.
|
||||
|
||||
7. You may place library facilities that are a work based on the
|
||||
Library side-by-side in a single library together with other library
|
||||
facilities not covered by this License, and distribute such a combined
|
||||
library, provided that the separate distribution of the work based on
|
||||
the Library and of the other library facilities is otherwise
|
||||
permitted, and provided that you do these two things:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work
|
||||
based on the Library, uncombined with any other library
|
||||
facilities. This must be distributed under the terms of the
|
||||
Sections above.
|
||||
|
||||
b) Give prominent notice with the combined library of the fact
|
||||
that part of it is a work based on the Library, and explaining
|
||||
where to find the accompanying uncombined form of the same work.
|
||||
|
||||
8. You may not copy, modify, sublicense, link with, or distribute
|
||||
the Library except as expressly provided under this License. Any
|
||||
attempt otherwise to copy, modify, sublicense, link with, or
|
||||
distribute the Library is void, and will automatically terminate your
|
||||
rights under this License. However, parties who have received copies,
|
||||
or rights, from you under this License will not have their licenses
|
||||
terminated so long as such parties remain in full compliance.
|
||||
|
||||
9. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Library or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Library (or any work based on the
|
||||
Library), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Library or works based on it.
|
||||
|
||||
10. Each time you redistribute the Library (or any work based on the
|
||||
Library), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute, link with or modify the Library
|
||||
subject to these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties with
|
||||
this License.
|
||||
|
||||
11. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Library at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Library by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Library.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under any
|
||||
particular circumstance, the balance of the section is intended to apply,
|
||||
and the section as a whole is intended to apply in other circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
12. If the distribution and/or use of the Library is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Library under this License may add
|
||||
an explicit geographical distribution limitation excluding those countries,
|
||||
so that distribution is permitted only in or among countries not thus
|
||||
excluded. In such case, this License incorporates the limitation as if
|
||||
written in the body of this License.
|
||||
|
||||
13. The Free Software Foundation may publish revised and/or new
|
||||
versions of the Lesser General Public License from time to time.
|
||||
Such new versions will be similar in spirit to the present version,
|
||||
but may differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Library
|
||||
specifies a version number of this License which applies to it and
|
||||
"any later version", you have the option of following the terms and
|
||||
conditions either of that version or of any later version published by
|
||||
the Free Software Foundation. If the Library does not specify a
|
||||
license version number, you may choose any version ever published by
|
||||
the Free Software Foundation.
|
||||
|
||||
14. If you wish to incorporate parts of the Library into other free
|
||||
programs whose distribution conditions are incompatible with these,
|
||||
write to the author to ask for permission. For software which is
|
||||
copyrighted by the Free Software Foundation, write to the Free
|
||||
Software Foundation; we sometimes make exceptions for this. Our
|
||||
decision will be guided by the two goals of preserving the free status
|
||||
of all derivatives of our free software and of promoting the sharing
|
||||
and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
|
||||
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
|
||||
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
|
||||
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
|
||||
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
|
||||
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
|
||||
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
|
||||
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
|
||||
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
||||
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
|
||||
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
|
||||
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
|
||||
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
|
||||
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
||||
DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Libraries
|
||||
|
||||
If you develop a new library, and you want it to be of the greatest
|
||||
possible use to the public, we recommend making it free software that
|
||||
everyone can redistribute and change. You can do so by permitting
|
||||
redistribution under these terms (or, alternatively, under the terms of the
|
||||
ordinary General Public License).
|
||||
|
||||
To apply these terms, attach the following notices to the library. It is
|
||||
safest to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least the
|
||||
"copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the library's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||
USA
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the library, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the
|
||||
library `Frob' (a library for tweaking knobs) written by James Random
|
||||
Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1990
|
||||
Ty Coon, President of Vice
|
||||
|
||||
That's all there is to it!
|
164
tpr/README.md
Normal file
164
tpr/README.md
Normal file
@ -0,0 +1,164 @@
|
||||
# Teleport Request
|
||||
|
||||
[![Build status](https://github.com/ChaosWormz/teleport-request/workflows/build/badge.svg)](https://github.com/ChaosWormz/teleport-request/actions)
|
||||
[![License](https://img.shields.io/badge/license-LGPLv2.1%2B-blue.svg)](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html)
|
||||
[![ContentDB](https://content.minetest.net/packages/Traxie21/tpr/shields/downloads/)](https://content.minetest.net/packages/Traxie21/tpr/)
|
||||
|
||||
Allows players to request from another player to be teleported to them.
|
||||
|
||||
## Privileges
|
||||
|
||||
Each command needs a privilege. These are the following privileges:
|
||||
|
||||
- `tp` is required in order to use all commands.
|
||||
- `tp_tpc` is required in order to use `/tpc`.
|
||||
- `tp_tpc` is required in order to use `/tpe`.
|
||||
- `tp_tpc` is required in order to use `/tpj`.
|
||||
- `interact` is required to use all commands.
|
||||
- `tp_admin` gives more control to admins:
|
||||
|
||||
- Admins can teleport to players even when they haven't decided to accept, or not.
|
||||
- Admins can teleport players to him/her, if the `enable_immediate_teleport` setting is enabled.
|
||||
- Admins can teleport to protected coordinates.
|
||||
|
||||
Players can also teleport to coordinates, however, if the area is protected, the teleport will be denied.
|
||||
|
||||
## How to use
|
||||
|
||||
Each command does a function. "**Example usage**" is an example of how to use the command.\
|
||||
Note there must be 2 players in order to make the commands to work: a player must send a request to another player.
|
||||
|
||||
There are two ways of sending a request:
|
||||
|
||||
1. A request which teleports you to the specified player (command `/tpr <player>`).\
|
||||
2. A request which teleports the specified player to you (command `/tphr <player>`).
|
||||
|
||||
To accept a request some sent you, you must use `/tpy`.\
|
||||
These are the following commands available in-game:
|
||||
|
||||
``` /tpr [playername] ```
|
||||
|
||||
- **Name:** Teleport Request
|
||||
- **Description:** Requests permission to teleport to another player, where [playername] is their exact name.
|
||||
- **Required privileges:** `interact, tp`
|
||||
- **Example usage:** `/tpr RobbieF` requests permission from RobbieF to teleport to them.
|
||||
- **Notes:** Usernames are case-sensitive. If you have the `tp_admin` privilege, you will immediately teleport to the specificed player (does not apply if `enable_immediate_teleport` setting is disabled, enabled by default).
|
||||
|
||||
``` /tphr [playername] ```
|
||||
|
||||
- **Name:** Teleport Here Request
|
||||
- **Description:** Request permission to teleport another player to you.
|
||||
- **Required privileges:** `interact, tp`
|
||||
- **Example usage:** `/tphr RobbieF` requests RobbieF to teleport to you.
|
||||
- **Notes:** Usernames are case-sensitive. If you have the `tp_admin` privilege, RobbieF will teleport to you immediately (does not apply if `enable_immediate_teleport` setting is disabled, enabled by default).
|
||||
|
||||
``` /tpc [x,y,z] ```
|
||||
|
||||
- **Name:** Teleport to Coordinates
|
||||
- **Description:** Teleport to coordinates.
|
||||
- **Required privileges:** `interact, tp_tpc, tp`
|
||||
- **Notes:** Honors area protection. If the area is protected, it must be owned by you in order to teleport to it, or you must have the `areas` privilege in order to teleport to those coordinates.
|
||||
|
||||
``` /tpj [axis] [distance] ```
|
||||
|
||||
- **Name:** Teleport Jump
|
||||
- **Description:** Teleport a specified distance along a single specified axis.
|
||||
- **Required privilege:** `interact", tp, tp_tpc`
|
||||
- **Available options for *axis*:** x, y, z
|
||||
- **Example usage:** `/tpj y 10` teleport 10 nodes into the air.
|
||||
|
||||
``` /tpe ```
|
||||
|
||||
- **Name:** Teleport Evade
|
||||
- **Description:** In a sticky situation? Evade your enemy by teleporting to several nearby coordinates in random pattern. There's no knowing where you'll end up.
|
||||
- **Required privileges:** `interact, tp_tpc, tp`
|
||||
- **Example usage:** `/tpe` teleports you to a random number of random coordinates in an evasive pattern.
|
||||
|
||||
``` /tpy ```
|
||||
|
||||
- **Description:** Accept a user's request to teleport to you or teleport you to them.
|
||||
- **Required privileges:** `interact, tp`
|
||||
|
||||
``` /tpn ```
|
||||
|
||||
- **Description:** Deny a user's request to teleport to you or teleport you to them.
|
||||
- **Required privileges:** `interact, tp`
|
||||
|
||||
## Optional dependencies
|
||||
|
||||
- [areas](https://github.com/minetest-mods/areas)
|
||||
- [beerchat](https://github.com/minetest-beerchat/beerchat)
|
||||
- [chat2](https://github.com/minetest-mods/chat2)
|
||||
- [gamehub](https://github.com/shivajiva101/minetest-gamehub)
|
||||
|
||||
## Requirements
|
||||
|
||||
This mod requires MT 5.0.0+ to run.\
|
||||
Older versions not supported.
|
||||
|
||||
## Issues, suggestions, features & bugfixes
|
||||
|
||||
Report bugs or suggest ideas by [creating an issue](https://github.com/ChaosWormz/teleport-request/issues/new).\
|
||||
If you know how to fix an issue, or want something to be added, consider opening a [pull request](https://github.com/ChaosWormz/teleport-request/compare).
|
||||
|
||||
## License
|
||||
|
||||
Copyright (C) 2014-2021 ChaosWormz and contributors.
|
||||
|
||||
Teleport Request code is licensed under LGPLv2.1+, see [`LICENSE.md`](LICENSE.md).\
|
||||
[`tpr_warp.ogg`](sounds/tpr_warp.ogg) is licensed under [CC BY-SA 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/).
|
||||
|
||||
## Contributors
|
||||
|
||||
List of contributors (in no particular order):
|
||||
|
||||
- [RobbieF](https://minetest.tv) | [GitHub](https://github.com/Cat5TV)
|
||||
- [DonBatman](https://github.com/donbatman)
|
||||
- [NathanS21](http://nathansalapat.com/) | [GitHub](https://github.com/NathanSalapat)
|
||||
- [ChaosWormz](https://github.com/ChaosWormz)
|
||||
- [Panquesito7](https://github.com/Panquesito7)
|
||||
- [coil0](https://github.com/coil0)
|
||||
- [Zeno-](https://github.com/Zeno-)
|
||||
- [indriApollo](https://github.com/indriApollo)
|
||||
- [Billy-S](https://github.com/Billy-S)
|
||||
- Traxie21, the original creator of this mod (however, he/she does not have a GitHub account anymore).
|
||||
|
||||
## Configuring the mod
|
||||
|
||||
Open your `minetest.conf` located in your Minetest directory.\
|
||||
Set the values of the settings you'd like to.
|
||||
|
||||
Available options are:
|
||||
|
||||
```conf
|
||||
tp.timeout_delay = 60
|
||||
tp.enable_immediate_teleport = true
|
||||
tp_enable_tpp_command = false
|
||||
```
|
||||
|
||||
Those values are the default values of the mod.\
|
||||
You can also go to your Minetest, Settings tab, All settings, Mods, and you'll find `tpr` there.\
|
||||
Or another way to do it, is changing the values in `settingtypes.txt`.
|
||||
|
||||
## Installation
|
||||
|
||||
- Unzip the archive, rename the folder to `tpr` and
|
||||
place it in .. minetest/mods/
|
||||
|
||||
- GNU/Linux: If you use a system-wide installation place
|
||||
it in ~/.minetest/mods/.
|
||||
|
||||
- If you only want this to be used in a single world, place
|
||||
the folder in .. worldmods/ in your world directory.
|
||||
|
||||
For further information or help, see:\
|
||||
<https://wiki.minetest.net/Installing_Mods>
|
||||
|
||||
## TODO
|
||||
|
||||
- Add limitations to /tpc which only allow a user to teleport X number of blocks. Prevents users from teleporting to the edge of the world.
|
||||
- Assess value in changing all tpr-based chat commands to one global command such as /tp to reduce the chance of confusion between tps_admin and the original mod (and also make it so people don't have to remember so many commands).
|
||||
- Rewrite to place all chat commands into one single command much like how /teleport works.
|
||||
- Make evade respect land: no teleporting inside land, but instead make sure player is standing on surface or in water.
|
||||
|
||||
If you think something else should be added to this list, [submit an issue](https://github.com/ChaosWormz/teleport-request/issues/new).
|
82
tpr/commands.lua
Normal file
82
tpr/commands.lua
Normal file
@ -0,0 +1,82 @@
|
||||
--[[
|
||||
Commands
|
||||
Copyright (C) 2014-2021 ChaosWormz and contributors
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||
USA
|
||||
--]]
|
||||
|
||||
-- Support for intllib
|
||||
local S = tp.intllib
|
||||
|
||||
minetest.register_chatcommand("tpr", {
|
||||
description = S("Request teleport to another player"),
|
||||
params = S("<playername> | leave playername empty to see help message"),
|
||||
privs = {interact = true, tp = true},
|
||||
func = tp.tpr_send
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("tphr", {
|
||||
description = S("Request player to teleport to you"),
|
||||
params = S("<playername> | leave playername empty to see help message"),
|
||||
privs = {interact = true, tp = true},
|
||||
func = tp.tphr_send
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("tpc", {
|
||||
description = S("Teleport to coordinates"),
|
||||
params = S("<coordinates> | leave coordinates empty to see help message"),
|
||||
privs = {interact = true, tp_tpc = true, tp = true},
|
||||
func = tp.tpc_send
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("tpj", {
|
||||
description = S("Teleport to relative position"),
|
||||
params = S("<axis> <distance> | leave empty to see help message"),
|
||||
privs = {interact = true, tp_tpc = true, tp = true},
|
||||
func = tp.tpj
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("tpe", {
|
||||
description = S("Evade Enemy"),
|
||||
privs = {interact = true, tp_tpc = true, tp = true},
|
||||
func = tp.tpe
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("tpy", {
|
||||
description = S("Accept teleport requests from another player"),
|
||||
privs = {interact = true, tp = true},
|
||||
func = tp.tpr_accept
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("tpn", {
|
||||
description = S("Deny teleport requests from another player"),
|
||||
privs = {interact = true, tp = true},
|
||||
func = tp.tpr_deny
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("tpr_mute", {
|
||||
description = S("Mutes a player: denies them from sending you teleport requests"),
|
||||
params = S("<playername> | leave playername empty to see help message"),
|
||||
privs = {interact = true, tp = true},
|
||||
func = tp.tpr_mute
|
||||
})
|
||||
|
||||
minetest.register_chatcommand("tpr_unmute", {
|
||||
description = S("Unmutes a player: allow them to send you teleport requests again"),
|
||||
params = S("<playername> | leave playername empty to see help message"),
|
||||
privs = {interact = true, tp = true},
|
||||
func = tp.tpr_unmute
|
||||
})
|
39
tpr/config.lua
Normal file
39
tpr/config.lua
Normal file
@ -0,0 +1,39 @@
|
||||
--[[
|
||||
Configuration
|
||||
Copyright (C) 2014-2021 ChaosWormz and contributors
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||
USA
|
||||
--]]
|
||||
|
||||
-- Timeout delay and mod version.
|
||||
tp.timeout_delay = tonumber(minetest.settings:get("tp.timeout_delay")) or 60
|
||||
tp.version = "1.5"
|
||||
|
||||
-- Enable teleporting immediately to the specified player for those with "tp_admin" privilege.
|
||||
tp.enable_immediate_teleport = minetest.settings:get_bool("tp.enable_immediate_teleport")
|
||||
|
||||
-- Set the values of the positions of your places, players will be able to teleport to them (no matter if it is protected, or not).
|
||||
-- You must activate "enable_tpp_command" in order to make this to work.
|
||||
tp.available_places = {
|
||||
spawn = {x = 0, y = 0, z = 0}, -- Set coordinates of spawn here.
|
||||
shop = {x = 0, y = 0, z = 0}, -- Set coordinates of the shop here.
|
||||
}
|
||||
|
||||
-- Enable tpp command
|
||||
tp.enable_tpp_command = minetest.settings:get_bool("tp.enable_tpp_command")
|
||||
|
||||
-- Spam prevention
|
||||
tp.spam_prevention = minetest.settings:get_bool("tp.enable_spam_prevention")
|
920
tpr/functions.lua
Normal file
920
tpr/functions.lua
Normal file
@ -0,0 +1,920 @@
|
||||
--[[
|
||||
Functions
|
||||
Copyright (C) 2014-2021 ChaosWormz and contributors
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||
USA
|
||||
--]]
|
||||
|
||||
-- Support for intllib
|
||||
local S = tp.intllib
|
||||
|
||||
-- Placeholders
|
||||
local chatmsg, source, target, name2,
|
||||
target_coords, tpc_target_coords, old_tpc_target_coords
|
||||
|
||||
local spam_prevention = {}
|
||||
local band = false
|
||||
|
||||
local muted_players = {}
|
||||
|
||||
local map_size = 30912
|
||||
function tp.can_teleport(to)
|
||||
return to.x < map_size and to.x > -map_size and to.y < map_size and to.y > -map_size and to.z < map_size and to.z > -map_size
|
||||
end
|
||||
|
||||
-- Teleport player to a player (used in "/tpr" and in "/tphr" command).
|
||||
function tp.tpr_teleport_player()
|
||||
target_coords = source:get_pos()
|
||||
local target_sound = target:get_pos()
|
||||
target:set_pos(tp.find_free_position_near(target_coords))
|
||||
minetest.sound_play("tpr_warp", {pos = target_coords, gain = 0.5, max_hear_distance = 10})
|
||||
minetest.sound_play("tpr_warp", {pos = target_sound, gain = 0.5, max_hear_distance = 10})
|
||||
--tp.parti2(target_coords)
|
||||
end
|
||||
|
||||
-- TPC & TPJ
|
||||
function tp.tpc_teleport_player(player)
|
||||
local pname = minetest.get_player_by_name(player)
|
||||
minetest.sound_play("tpr_warp", {pos = pname:get_pos(), gain = 0.5, max_hear_distance = 10})
|
||||
pname:set_pos(tp.find_free_position_near(target_coords))
|
||||
minetest.sound_play("tpr_warp", {pos = target_coords, gain = 0.5, max_hear_distance = 10})
|
||||
--tp.parti2(target_coords)
|
||||
end
|
||||
|
||||
-- TPP
|
||||
function tp.tpp_teleport_player(player, pos)
|
||||
local pname = minetest.get_player_by_name(player)
|
||||
minetest.sound_play("tpr_warp", {pos = pname:get_pos(), gain = 0.5, max_hear_distance = 10})
|
||||
pname:set_pos(tp.find_free_position_near(pos))
|
||||
minetest.sound_play("tpr_warp", {pos = pos, gain = 0.5, max_hear_distance = 10})
|
||||
--tp.parti2(target_coords)
|
||||
end
|
||||
|
||||
function tp.find_free_position_near(pos)
|
||||
local tries = {
|
||||
{x=1,y=0,z=0},
|
||||
{x=-1,y=0,z=0},
|
||||
{x=0,y=0,z=1},
|
||||
{x=0,y=0,z=-1},
|
||||
}
|
||||
for _,d in pairs(tries) do
|
||||
local p = vector.add(pos, d)
|
||||
local def = minetest.registered_nodes[minetest.get_node(p).name]
|
||||
if def and not def.walkable then
|
||||
return p, true
|
||||
end
|
||||
end
|
||||
return pos, false
|
||||
end
|
||||
|
||||
function tp.parti(pos)
|
||||
minetest.add_particlespawner(50, 0.4,
|
||||
{x=pos.x + 0.5, y=pos.y, z=pos.z + 0.5}, {x=pos.x - 0.5, y=pos.y, z=pos.z - 0.5},
|
||||
{x=0, y=5, z=0}, {x=0, y=0, z=0},
|
||||
{x=0, y=5, z=0}, {x=0, y=0, z=0},
|
||||
3, 5,
|
||||
3, 5,
|
||||
false,
|
||||
"tps_portal_parti.png")
|
||||
end
|
||||
|
||||
function tp.parti2(pos)
|
||||
minetest.add_particlespawner(50, 0.4,
|
||||
{x=pos.x + 0.5, y=pos.y + 10, z=pos.z + 0.5}, {x=pos.x - 0.5, y=pos.y, z=pos.z - 0.5},
|
||||
{x=0, y=-5, z=0}, {x=0, y=0, z=0},
|
||||
{x=0, y=-5, z=0}, {x=0, y=0, z=0},
|
||||
3, 5,
|
||||
3, 5,
|
||||
false,
|
||||
"tps_portal_parti.png")
|
||||
end
|
||||
|
||||
-- Mutes a player from sending you teleport requests
|
||||
function tp.tpr_mute(player, muted_player)
|
||||
if muted_player == "" then
|
||||
minetest.chat_send_player(player, S("Usage: /tpr_mute <player>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("Usage: /tpr_mute <player>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(muted_player) then
|
||||
minetest.chat_send_player(player, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if minetest.check_player_privs(muted_player, {tp_admin = true}) and not minetest.check_player_privs(player, {server = true}) then
|
||||
minetest.chat_send_player(player, S("tpr_mute: Failed to mute player @1: they have the tp_admin privilege.", muted_player))
|
||||
return
|
||||
end
|
||||
|
||||
if muted_players[player] == muted_player then
|
||||
minetest.chat_send_player(player, S("tpr_mute: Player @1 is already muted.", muted_player))
|
||||
return
|
||||
end
|
||||
|
||||
muted_players[player] = muted_player
|
||||
minetest.chat_send_player(player, S("tpr_mute: Player @1 successfully muted.", muted_player))
|
||||
end
|
||||
|
||||
-- Unmutes a player from sending you teleport requests
|
||||
function tp.tpr_unmute(player, muted_player)
|
||||
if muted_player == "" then
|
||||
minetest.chat_send_player(player, S("Usage: /tpr_unmute <player>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("Usage: /tpr_unmute <player>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(muted_player) then
|
||||
minetest.chat_send_player(player, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if muted_players[player] ~= muted_player then
|
||||
minetest.chat_send_player(player, S("tpr_mute: Player @1 is not muted yet.", muted_player))
|
||||
return
|
||||
end
|
||||
|
||||
muted_players[player] = nil
|
||||
minetest.chat_send_player(player, S("tpr_mute: Player @1 successfully unmuted.", muted_player))
|
||||
end
|
||||
|
||||
-- Teleport Request System
|
||||
function tp.tpr_send(sender, receiver)
|
||||
-- Check if the sender is muted
|
||||
if muted_players[receiver] == sender and not minetest.check_player_privs(sender, {server = true}) then
|
||||
minetest.chat_send_player(sender, S("Cannot send request to @1 (you have been muted).", receiver))
|
||||
return
|
||||
end
|
||||
|
||||
if receiver == "" then
|
||||
minetest.chat_send_player(sender, S("Usage: /tpr <Player name>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage: /tpr <Player name>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(receiver) then
|
||||
minetest.chat_send_player(sender, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
-- Spam prevention
|
||||
if spam_prevention[receiver] == sender and not minetest.check_player_privs(sender, {tp_admin = true}) then
|
||||
minetest.chat_send_player(sender, S("Wait @1 seconds before you can send teleport requests to @2 again.", tp.timeout_delay, receiver))
|
||||
|
||||
minetest.after(tp.timeout_delay, function(name)
|
||||
spam_prevention[name] = nil
|
||||
if band == true then return end
|
||||
|
||||
if spam_prevention[receiver] == nil then
|
||||
minetest.chat_send_player(sender, S("You can now send teleport requests to @1.", receiver))
|
||||
band = true
|
||||
end
|
||||
end, receiver)
|
||||
|
||||
else
|
||||
|
||||
-- Compatibility with beerchat
|
||||
if minetest.get_modpath("beerchat") and not minetest.check_player_privs(sender, {tp_admin = true}) then
|
||||
if receiver == "" then
|
||||
minetest.chat_send_player(sender, S("Usage: /tpr <Player name>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage: /tpr <Player name>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(receiver) then
|
||||
minetest.chat_send_player(sender, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
local player_receiver = minetest.get_player_by_name(receiver)
|
||||
if player_receiver:get_meta():get_string("beerchat:muted:" .. sender) == "true" then
|
||||
minetest.chat_send_player(sender, S("You are not allowed to send requests because you're muted."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("You are not allowed to send requests because you're muted."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
if minetest.check_player_privs(sender, {tp_admin = true}) and tp.enable_immediate_teleport then
|
||||
if receiver == "" then
|
||||
minetest.chat_send_player(sender, S("Usage: /tpr <Player name>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage: /tpr <Player name>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(receiver) then
|
||||
minetest.chat_send_player(sender, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
tp.tpr_list[receiver] = sender
|
||||
tp.tpr_accept(receiver)
|
||||
minetest.chat_send_player(sender, S("You are teleporting to @1.", receiver))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("You are teleporting to @1.", receiver), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if receiver == "" then
|
||||
minetest.chat_send_player(sender, S("Usage: /tpr <Player name>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage: /tpr <Player name>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(receiver) then
|
||||
minetest.chat_send_player(sender, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if minetest.get_modpath("gamehub") then -- Compatibility with gamehub (UNTESTED)
|
||||
if gamehub.players[receiver] then
|
||||
minetest.chat_send_player(sender, S("Teleport request denied, player is in the gamehub!"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Teleport request denied, player is in the gamehub!"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(receiver), S("@1 is requesting to teleport to you. /tpy to accept.", sender), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Teleport request sent! It will timeout in @1 seconds.", tp.timeout_delay), 0xFFFFFF)
|
||||
end
|
||||
|
||||
minetest.chat_send_player(receiver, S("@1 is requesting to teleport to you. /tpy to accept.", sender))
|
||||
minetest.chat_send_player(sender, S("Teleport request sent! It will timeout in @1 seconds.", tp.timeout_delay))
|
||||
|
||||
-- Write name values to list and clear old values.
|
||||
tp.tpr_list[receiver] = sender
|
||||
tp.tpn_list[sender] = receiver
|
||||
|
||||
-- Teleport timeout delay
|
||||
minetest.after(tp.timeout_delay, function(name)
|
||||
if tp.tpr_list[name] and tp.tpn_list[sender] then
|
||||
tp.tpr_list[name] = nil
|
||||
tp.tpn_list[sender] = nil
|
||||
|
||||
minetest.chat_send_player(sender, S("Request timed-out."))
|
||||
minetest.chat_send_player(receiver, S("Request timed-out."))
|
||||
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Request timed-out."), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(receiver), S("Request timed-out."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end, receiver)
|
||||
end
|
||||
end
|
||||
|
||||
function tp.tphr_send(sender, receiver)
|
||||
-- Check if the sender is muted
|
||||
if muted_players[receiver] == sender and not minetest.check_player_privs(sender, {server = true}) then
|
||||
minetest.chat_send_player(sender, S("Cannot send request to @1 (you have been muted).", receiver))
|
||||
return
|
||||
end
|
||||
|
||||
if receiver == "" then
|
||||
minetest.chat_send_player(sender, S("Usage: /tphr <Player name>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage. /tphr <Player name>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(receiver) then
|
||||
minetest.chat_send_player(sender, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
-- Spam prevention
|
||||
if spam_prevention[receiver] == sender and not minetest.check_player_privs(sender, {tp_admin = true}) then
|
||||
minetest.chat_send_player(sender, S("Wait @1 seconds before you can send teleport requests to @2 again.", tp.timeout_delay, receiver))
|
||||
|
||||
minetest.after(tp.timeout_delay, function(name)
|
||||
spam_prevention[name] = nil
|
||||
if band == true then return end
|
||||
|
||||
if spam_prevention[receiver] == nil then
|
||||
minetest.chat_send_player(sender, S("You can now send teleport requests to @1.", receiver))
|
||||
band = true
|
||||
end
|
||||
end, receiver)
|
||||
|
||||
else
|
||||
|
||||
-- Compatibility with beerchat
|
||||
if minetest.get_modpath("beerchat") and not minetest.check_player_privs(sender, {tp_admin = true}) then
|
||||
if receiver == "" then
|
||||
minetest.chat_send_player(sender, S("Usage: /tphr <Player name>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage. /tphr <Player name>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(receiver) then
|
||||
minetest.chat_send_player(sender, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
local player_receiver = minetest.get_player_by_name(receiver)
|
||||
if player_receiver:get_meta():get_string("beerchat:muted:" .. sender) == "true" then
|
||||
minetest.chat_send_player(sender, S("You are not allowed to send requests because you're muted."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("You are not allowed to send requests because you're muted."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
if minetest.check_player_privs(sender, {tp_admin = true}) and tp.enable_immediate_teleport then
|
||||
if receiver == "" then
|
||||
minetest.chat_send_player(sender, S("Usage: /tphr <Player name>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage. /tphr <Player name>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(receiver) then
|
||||
minetest.chat_send_player(sender, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
tp.tphr_list[receiver] = sender
|
||||
tp.tpr_accept(receiver)
|
||||
minetest.chat_send_player(sender, S("@1 is teleporting to you.", receiver))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("@1 is teleporting to you.", receiver), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if receiver == "" then
|
||||
minetest.chat_send_player(sender, S("Usage: /tphr <Player name>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage. /tphr <Player name>"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not minetest.get_player_by_name(receiver) then
|
||||
minetest.chat_send_player(sender, S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if minetest.get_modpath("gamehub") then -- Compatibility with gamehub (UNTESTED)
|
||||
if gamehub.players[receiver] then
|
||||
minetest.chat_send_player(sender, S("Teleport request denied, player is in the gamehub!"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Teleport request denied, player is in the gamehub!"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(receiver), S("@1 is requesting that you teleport to them. /tpy to accept; /tpn to deny.", sender), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Teleport request sent! It will timeout in @1 seconds.", tp.timeout_delay), 0xFFFFFF)
|
||||
end
|
||||
|
||||
minetest.chat_send_player(receiver, S("@1 is requesting that you teleport to them. /tpy to accept; /tpn to deny.", sender))
|
||||
minetest.chat_send_player(sender, S("Teleport request sent! It will timeout in @1 seconds.", tp.timeout_delay))
|
||||
|
||||
-- Write name values to list and clear old values.
|
||||
tp.tphr_list[receiver] = sender
|
||||
tp.tpn_list[sender] = receiver
|
||||
|
||||
-- Teleport timeout delay
|
||||
minetest.after(tp.timeout_delay, function(name)
|
||||
if tp.tphr_list[name] and tp.tpn_list[sender] then
|
||||
tp.tphr_list[name] = nil
|
||||
tp.tpn_list[sender] = nil
|
||||
|
||||
minetest.chat_send_player(sender, S("Request timed-out."))
|
||||
minetest.chat_send_player(receiver, S("Request timed-out."))
|
||||
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Request timed-out"), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(receiver), S("Request timed-out"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end, receiver)
|
||||
end
|
||||
end
|
||||
|
||||
function tp.tpc_send(sender, coordinates)
|
||||
local posx,posy,posz = string.match(coordinates, "^(-?%d+), (-?%d+), (-?%d+)$")
|
||||
local pname = minetest.get_player_by_name(sender)
|
||||
|
||||
if posx ~= nil or posy ~= nil or posz ~= nil then
|
||||
posx = tonumber(posx) + 0.0
|
||||
posy = tonumber(posy) + 0.0
|
||||
posz = tonumber(posz) + 0.0
|
||||
end
|
||||
|
||||
if posx==nil or posy==nil or posz==nil or string.len(posx) > 6 or string.len(posy) > 6 or string.len(posz) > 6 then
|
||||
minetest.chat_send_player(sender, S("Usage: /tpc <x, y, z>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Usage: /tpc <x, y, z>"), 0xFFFFFF)
|
||||
end
|
||||
return nil
|
||||
end
|
||||
|
||||
target_coords = {x=posx, y=posy, z=posz}
|
||||
|
||||
if tp.can_teleport(target_coords) == false then
|
||||
minetest.chat_send_player(sender, S("You cannot teleport to a location outside the map!"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("You cannot teleport to a location outside the map!"), 0xFFFFFF)
|
||||
end
|
||||
return nil
|
||||
end
|
||||
|
||||
-- If the area is protected, reject the user's request to teleport to these coordinates
|
||||
-- Admin user (priv "tp_admin") overrides all protection
|
||||
if minetest.check_player_privs(pname, {tp_admin = true}) then
|
||||
tp.tpc_teleport_player(sender)
|
||||
target_coords = nil
|
||||
minetest.chat_send_player(sender, S("Teleporting to: @1, @2, @3", posx, posy, posz))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Teleporting to: @1, @2, @3", posx, posy, posz), 0xFFFFFF)
|
||||
end
|
||||
else
|
||||
if minetest.check_player_privs(pname, {tp_tpc = true}) then
|
||||
local protected = minetest.is_protected(target_coords, sender)
|
||||
if protected then
|
||||
if minetest.get_modpath("areas") then
|
||||
for _, area in pairs(areas:getAreasAtPos(target_coords)) do
|
||||
if minetest.get_player_by_name(area.owner) then -- Check if area owners are online
|
||||
|
||||
if tpc_target_coords then
|
||||
old_tpc_target_coords = tpc_target_coords
|
||||
old_tpc_target_coords[area.owner] = tpc_target_coords[area.owner]
|
||||
|
||||
tpc_target_coords[area.owner] = {x=posx, y=posy, z=posz}
|
||||
else
|
||||
tpc_target_coords = {x=posx, y=posy, z=posz}
|
||||
tpc_target_coords[area.owner] = {x=posx, y=posy, z=posz}
|
||||
end
|
||||
|
||||
minetest.chat_send_player(sender, S("Area request sent! Waiting for @1 to accept your request." ..
|
||||
" It will timeout in @2 seconds.", table.concat(areas:getNodeOwners(tpc_target_coords[area.owner]), S(", or ")), tp.timeout_delay))
|
||||
minetest.chat_send_player(area.owner, S("@1 is requesting to teleport to a protected area" ..
|
||||
" of yours @2.", sender, minetest.pos_to_string(tpc_target_coords[area.owner])))
|
||||
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Area request sent! Waiting for @1 to accept your request." ..
|
||||
" It will timeout in @2 seconds.", table.concat(areas:getNodeOwners(tpc_target_coords[area.owner]), S(", or ")), tp.timeout_delay), 0xFFFFFF)
|
||||
|
||||
chat2.send_message(minetest.get_player_by_name(area.owner), S("@1 is requesting to teleport to a protected area" ..
|
||||
" of yours @2.", sender, minetest.pos_to_string(tpc_target_coords[area.owner])), 0xFFFFFF)
|
||||
end
|
||||
|
||||
tp.tpc_list[area.owner] = sender
|
||||
tp.tpn_list[sender] = area.owner
|
||||
|
||||
minetest.after(tp.timeout_delay, function(name)
|
||||
if tp.tpc_list[name] and tp.tpn_list[sender] then
|
||||
tp.tpc_list[name] = nil
|
||||
tp.tpn_list[sender] = nil
|
||||
|
||||
minetest.chat_send_player(sender, S("Request timed-out."))
|
||||
minetest.chat_send_player(area.owner, S("Request timed-out."))
|
||||
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Request timed-out."), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(area.owner), S("Request timed-out."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end, area.owner)
|
||||
else
|
||||
minetest.record_protection_violation(target_coords, sender)
|
||||
end
|
||||
end
|
||||
else
|
||||
minetest.record_protection_violation(target_coords, sender)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
tp.tpc_teleport_player(sender)
|
||||
target_coords = nil
|
||||
minetest.chat_send_player(sender, S("Teleporting to: @1, @2, @3", posx, posy, posz))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Teleporting to: @1, @2, @3", posx, posy, posz), 0xFFFFFF)
|
||||
end
|
||||
else
|
||||
minetest.chat_send_player(sender, S("Error: You do not have permission to teleport to those coordinates."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(sender), S("Error: You do not have permission to teleport to those coordinates."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function tp.tpr_deny(name)
|
||||
if not tp.tpr_list[name] and not tp.tphr_list[name]
|
||||
and not tp.tpc_list[name] and not tp.tpn_list[name] then
|
||||
minetest.chat_send_player(name, S("Usage: /tpn allows you to deny teleport/area requests sent to you by other players."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name), S("Usage: /tpn allows you to deny teleport/area requests sent to you by other players."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
-- Area requests
|
||||
if tp.tpc_list[name] then
|
||||
name2 = tp.tpc_list[name]
|
||||
minetest.chat_send_player(name2, S("Area request denied."))
|
||||
minetest.chat_send_player(name, S("You denied the request @1 sent you.", name2))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name2), S("Area request denied."), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(name), S("You denied the request @1 sent you.", name2), 0xFFFFFF)
|
||||
end
|
||||
tp.tpc_list[name] = nil
|
||||
|
||||
-- Don't allow re-denying requests.
|
||||
tp.tpn_list[name2] = nil
|
||||
return
|
||||
end
|
||||
|
||||
-- Teleport requests
|
||||
if tp.tpr_list[name] then
|
||||
name2 = tp.tpr_list[name]
|
||||
minetest.chat_send_player(name2, S("Teleport request denied."))
|
||||
minetest.chat_send_player(name, S("You denied the request @1 sent you.", name2))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name2), S("Teleport request denied."), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(name), S("You denied the request @1 sent you.", name2), 0xFFFFFF)
|
||||
end
|
||||
|
||||
tp.tpr_list[name] = nil
|
||||
spam_prevention[name] = name2
|
||||
|
||||
-- Don't allow re-denying requests.
|
||||
tp.tpn_list[name2] = nil
|
||||
|
||||
elseif tp.tphr_list[name] then
|
||||
name2 = tp.tphr_list[name]
|
||||
minetest.chat_send_player(name2, S("Teleport request denied."))
|
||||
minetest.chat_send_player(name, S("You denied the request @1 sent you.", name2))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name2), S("Teleport request denied."), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(name), S("You denied the request @1 sent you.", name2), 0xFFFFFF)
|
||||
end
|
||||
|
||||
tp.tphr_list[name] = nil
|
||||
spam_prevention[name] = name2
|
||||
|
||||
-- Don't allow re-denying requests.
|
||||
tp.tpn_list[name2] = nil
|
||||
|
||||
elseif tp.tpn_list[name] then
|
||||
name2 = tp.tpn_list[name]
|
||||
minetest.chat_send_player(name, S("You denied your request sent to @1.", name2))
|
||||
minetest.chat_send_player(name2, S("@1 denied their request sent to you.", name))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name), S("You denied your request sent to @1.", name2), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(name2), S("@1 denied their request sent to you.", name), 0xFFFFFF)
|
||||
end
|
||||
|
||||
if tp.tpr_list[name2] then
|
||||
tp.tpr_list[name2] = nil
|
||||
|
||||
elseif tp.tphr_list[name2] then
|
||||
tp.tphr_list[name2] = nil
|
||||
|
||||
elseif tp.tpc_list[name2] then
|
||||
tp.tpc_list[name2] = nil
|
||||
end
|
||||
|
||||
tp.tpn_list[name] = nil
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
-- Teleport Accept Systems
|
||||
function tp.tpr_accept(name)
|
||||
-- Check to prevent constant teleporting
|
||||
if not tp.tpr_list[name] and not tp.tphr_list[name]
|
||||
and not tp.tpc_list[name] then
|
||||
minetest.chat_send_player(name, S("Usage: /tpy allows you to accept teleport/area requests sent to you by other players."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name), S("Usage: /tpy allows you to accept teleport/area requests sent to you by other players."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
-- Area requests
|
||||
if tp.tpc_list[name] then
|
||||
|
||||
if tp.tpc_list[name] then
|
||||
name2 = tp.tpc_list[name]
|
||||
source = minetest.get_player_by_name(name)
|
||||
target = minetest.get_player_by_name(name2)
|
||||
chatmsg = S("@1 is teleporting to your protected area @2.", name2, minetest.pos_to_string(tpc_target_coords[name]))
|
||||
tp.tpc_list[name] = nil
|
||||
else
|
||||
return
|
||||
end
|
||||
|
||||
-- If source or target are not present, abort request.
|
||||
if not source or not target then
|
||||
minetest.chat_send_player(name, S("@1 is not online right now.", name2))
|
||||
tp.tpc_list[name] = nil
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name), S("@1 is not online right now.", name2), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if not tpc_target_coords[name] then
|
||||
tpc_target_coords[name2] = old_tpc_target_coords[name]
|
||||
tp.tpp_teleport_player(name2, tpc_target_coords[name2])
|
||||
|
||||
chatmsg = S("@1 is teleporting to your protected area @2.", name2, minetest.pos_to_string(tpc_target_coords[name2]))
|
||||
else
|
||||
tp.tpp_teleport_player(name2, tpc_target_coords[name])
|
||||
chatmsg = S("@1 is teleporting to your protected area @2.", name2, minetest.pos_to_string(tpc_target_coords[name]))
|
||||
end
|
||||
|
||||
-- Don't allow re-denying requests.
|
||||
if tp.tpn_list[name] or tp.tpn_list[name2] then
|
||||
tp.tpn_list[name] = nil
|
||||
tp.tpn_list[name2] = nil
|
||||
end
|
||||
|
||||
minetest.chat_send_player(name, chatmsg)
|
||||
minetest.chat_send_player(name2, S("Request Accepted!"))
|
||||
|
||||
-- Avoid abusing with area requests
|
||||
target_coords = nil
|
||||
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name2), S("Request Accepted!"), 0xFFFFFF)
|
||||
chat2.send_message(minetest.get_player_by_name(name), chatmsg, 0xFFFFFF)
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
-- Teleport requests.
|
||||
if tp.tpr_list[name] then
|
||||
name2 = tp.tpr_list[name]
|
||||
source = minetest.get_player_by_name(name)
|
||||
target = minetest.get_player_by_name(name2)
|
||||
chatmsg = S("@1 is teleporting to you.", name2)
|
||||
tp.tpr_list[name] = nil
|
||||
|
||||
elseif tp.tphr_list[name] then
|
||||
name2 = tp.tphr_list[name]
|
||||
source = minetest.get_player_by_name(name2)
|
||||
target = minetest.get_player_by_name(name)
|
||||
chatmsg = S("You are teleporting to @1.", name2)
|
||||
tp.tphr_list[name] = nil
|
||||
else
|
||||
return
|
||||
end
|
||||
|
||||
-- Could happen if either player disconnects (or timeout); if so just abort
|
||||
if not source
|
||||
or not target then
|
||||
minetest.chat_send_player(name, S("@1 is not online right now.", name2))
|
||||
tp.tpr_list[name] = nil
|
||||
tp.tphr_list[name] = nil
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name), S("@1 is not online right now.", name2), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
tp.tpr_teleport_player()
|
||||
|
||||
-- Avoid abusing with area requests
|
||||
target_coords = nil
|
||||
|
||||
-- Don't allow re-denying requests.
|
||||
if tp.tpn_list[name] or tp.tpn_list[name2] then
|
||||
tp.tpn_list[name] = nil
|
||||
tp.tpn_list[name2] = nil
|
||||
end
|
||||
|
||||
minetest.chat_send_player(name, chatmsg)
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name), chatmsg, 0xFFFFFF)
|
||||
end
|
||||
|
||||
if minetest.check_player_privs(name2, {tp_admin = true}) == false then
|
||||
minetest.chat_send_player(name2, S("Request Accepted!"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name2), S("Request Accepted!"), 0xFFFFFF)
|
||||
end
|
||||
|
||||
else
|
||||
if tp.enable_immediate_teleport then return end
|
||||
|
||||
minetest.chat_send_player(name2, S("Request Accepted!"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(name2), S("Request Accepted!"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
-- Teleport Jump - Relative Position Teleportation by number of nodes
|
||||
function tp.tpj(player, param)
|
||||
if param == "" then
|
||||
minetest.chat_send_player(player, S("Usage: <x|y|z> <number>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("Usage: <x|y|z> <number>"), 0xFFFFFF)
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
local args = param:split(" ") -- look into this. Can it crash if the player does not have two parameters?
|
||||
if #args < 2 then
|
||||
minetest.chat_send_player(player, S("Usage: <x|y|z> <number>"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("Usage: <x|y|z> <number>"), 0xFFFFFF)
|
||||
end
|
||||
return false
|
||||
end
|
||||
|
||||
if not tonumber(args[2]) then
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("Not a number!"), 0xFFFFFF)
|
||||
end
|
||||
return false, S("Not a number!")
|
||||
end
|
||||
|
||||
-- Initially generate the target coords from the player's current position (since it's relative) and then perform the math.
|
||||
target_coords = minetest.get_player_by_name(player):get_pos()
|
||||
if args[1] == "x" then
|
||||
target_coords["x"] = target_coords["x"] + tonumber(args[2])
|
||||
elseif args[1] == "y" then
|
||||
target_coords["y"] = target_coords["y"] + tonumber(args[2])
|
||||
elseif args[1] == "z" then
|
||||
target_coords["z"] = target_coords["z"] + tonumber(args[2])
|
||||
else
|
||||
minetest.chat_send_player(player, S("Not a valid axis. Valid options are X, Y or Z"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("Not a valid axis. Valid options are X, Y or Z"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
|
||||
if tp.can_teleport(target_coords) == false then
|
||||
minetest.chat_send_player(player, S("You cannot teleport to a location outside the map!"))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("You cannot teleport to a location outside the map!"), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
tp.tpc_teleport_player(player)
|
||||
|
||||
-- Avoid abusing with area requests
|
||||
target_coords = nil
|
||||
end
|
||||
|
||||
-- Evade
|
||||
function tp.tpe(player)
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("EVADE!"), 0xFFFFFF)
|
||||
end
|
||||
minetest.chat_send_player(player, S("EVADE!"))
|
||||
local mindistance = 15
|
||||
local maxdistance = 50
|
||||
local times = math.random(6,20) -- how many times to jump - minimum,maximum
|
||||
local negatives = { '-','' } -- either it's this way or that way: the difference between -10 and 10
|
||||
local options = { 'x', 'y', 'z' }
|
||||
local isnegative = ''
|
||||
local distance = 0
|
||||
local axis = ''
|
||||
local iteration = 0
|
||||
for i = 1,times do
|
||||
-- do this every 1 second
|
||||
minetest.after(iteration,
|
||||
function()
|
||||
isnegative = negatives[math.random(2)] -- choose randomly whether this is this way or that
|
||||
distance = isnegative .. math.random(mindistance,maxdistance) -- the distance to jump
|
||||
axis = options[math.random(3)]
|
||||
local command = axis .. " " .. distance
|
||||
tp.tpj(player, command)
|
||||
end
|
||||
)
|
||||
iteration = iteration + 0.5
|
||||
end
|
||||
end
|
||||
|
||||
-- Teleport To Place (TPP) system.
|
||||
if tp.enable_tpp_command then
|
||||
function tp.tpp(player, param)
|
||||
-- Show the available places to the player (taken from shivajiva101's POI mod, thanks!).
|
||||
if param == "" then
|
||||
local places = {}
|
||||
if not tp.available_places then tp.available_places = {} end
|
||||
for key, value in pairs(tp.available_places) do
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), key, 0xFFFFFF)
|
||||
end
|
||||
table.insert(places, key)
|
||||
end
|
||||
if #places == 0 then
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("There are no places yet."), 0xFFFFFF)
|
||||
end
|
||||
return true, S("There are no places yet.")
|
||||
end
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("Usage: /tpp <place>"), 0xFFFFFF)
|
||||
end
|
||||
table.insert(places, S("Usage: /tpp <place>"))
|
||||
return true, table.concat(places, "\n")
|
||||
|
||||
-- Teleport player to the specified place (taken from shivajiva101's POI mod, thanks!).
|
||||
elseif tp.available_places[param] then
|
||||
local pos = {x = tp.available_places[param].x, y = tp.available_places[param].y, z = tp.available_places[param].z}
|
||||
tp.tpp_teleport_player(player, pos)
|
||||
minetest.chat_send_player(player, S("Teleporting to @1.", param))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("Teleporting to @1.", param), 0xFFFFFF)
|
||||
end
|
||||
|
||||
-- Check if the place exists.
|
||||
elseif not tp.available_places[param] then
|
||||
minetest.chat_send_player(player, S("There is no place by that name. Keep in mind this is case-sensitive."))
|
||||
if minetest.get_modpath("chat2") then
|
||||
chat2.send_message(minetest.get_player_by_name(player), S("There is no place by that name. Keep in mind this is case-sensitive."), 0xFFFFFF)
|
||||
end
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
minetest.register_chatcommand("tpp", {
|
||||
description = S("Teleport to a place (i.e., spawn, shop)."),
|
||||
params = S("<place> | leave empty to see available places"),
|
||||
privs = {},
|
||||
func = tp.tpp
|
||||
})
|
||||
end
|
73
tpr/init.lua
Normal file
73
tpr/init.lua
Normal file
@ -0,0 +1,73 @@
|
||||
--[[
|
||||
Allows players to request from another player to be teleported to them, and do much more.
|
||||
Copyright (C) 2014-2021 ChaosWormz and contributors
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||
USA
|
||||
|
||||
----------------------------------------------------------------------------
|
||||
|
||||
Originally made by Traxie21 and released with the WTFPL license.
|
||||
Forum link: https://forum.minetest.net/viewtopic.php?id=4457
|
||||
|
||||
Updates by Zeno, Panquesito7 and ChaosWormz.
|
||||
License: LGPLv2.1+ for code, CC BY-SA 4.0 for sounds.
|
||||
--]]
|
||||
|
||||
-- Load support for intllib.
|
||||
local MP = minetest.get_modpath(minetest.get_current_modname())
|
||||
local S = dofile(MP.."/intllib.lua")
|
||||
|
||||
tp = {
|
||||
intllib = S,
|
||||
tpr_list = {},
|
||||
tphr_list = {},
|
||||
tpc_list = {},
|
||||
tpn_list = {}
|
||||
}
|
||||
|
||||
-- Clear requests when the player leaves
|
||||
minetest.register_on_leaveplayer(function(name)
|
||||
if tp.tpr_list[name] then
|
||||
tp.tpr_list[name] = nil
|
||||
return
|
||||
end
|
||||
|
||||
if tp.tphr_list[name] then
|
||||
tp.tphr_list[name] = nil
|
||||
return
|
||||
end
|
||||
|
||||
-- Area requests
|
||||
if tp.tpc_list[name] then
|
||||
tp.tpc_list[name] = nil
|
||||
return
|
||||
end
|
||||
|
||||
if tp.tpn_list[name] then
|
||||
tp.tpn_list[name] = nil
|
||||
return
|
||||
end
|
||||
end)
|
||||
|
||||
dofile(MP.."/privileges.lua")
|
||||
dofile(MP.."/config.lua")
|
||||
dofile(MP.."/functions.lua")
|
||||
dofile(MP.."/commands.lua")
|
||||
|
||||
-- Log
|
||||
if minetest.settings:get_bool("log_mods") then
|
||||
minetest.log("action", S("[Teleport Request] TPS Teleport v@1 Loaded!", tp.version))
|
||||
end
|
45
tpr/intllib.lua
Normal file
45
tpr/intllib.lua
Normal file
@ -0,0 +1,45 @@
|
||||
|
||||
-- Fallback functions for when `intllib` is not installed.
|
||||
-- Code released under Unlicense <http://unlicense.org>.
|
||||
|
||||
-- Get the latest version of this file at:
|
||||
-- https://raw.githubusercontent.com/minetest-mods/intllib/master/lib/intllib.lua
|
||||
|
||||
local function format(str, ...)
|
||||
local args = { ... }
|
||||
local function repl(escape, open, num, close)
|
||||
if escape == "" then
|
||||
local replacement = tostring(args[tonumber(num)])
|
||||
if open == "" then
|
||||
replacement = replacement..close
|
||||
end
|
||||
return replacement
|
||||
else
|
||||
return "@"..open..num..close
|
||||
end
|
||||
end
|
||||
return (str:gsub("(@?)@(%(?)(%d+)(%)?)", repl))
|
||||
end
|
||||
|
||||
local gettext, ngettext
|
||||
if minetest.get_modpath("intllib") then
|
||||
if intllib.make_gettext_pair then
|
||||
-- New method using gettext.
|
||||
gettext, ngettext = intllib.make_gettext_pair()
|
||||
else
|
||||
-- Old method using text files.
|
||||
gettext = intllib.Getter()
|
||||
end
|
||||
end
|
||||
|
||||
-- Fill in missing functions.
|
||||
|
||||
gettext = gettext or function(msgid, ...)
|
||||
return format(msgid, ...)
|
||||
end
|
||||
|
||||
ngettext = ngettext or function(msgid, msgid_plural, n, ...)
|
||||
return format(n==1 and msgid or msgid_plural, ...)
|
||||
end
|
||||
|
||||
return gettext, ngettext
|
272
tpr/locale/es.po
Normal file
272
tpr/locale/es.po
Normal file
@ -0,0 +1,272 @@
|
||||
# Spanish translation for Teleport Request.
|
||||
# Copyright (C) 2014-2021 ChaosWormz and contributors.
|
||||
# This file is distributed under under the same license as the Teleport Request package.
|
||||
# David Leal <halfpacho@gmail.com>, 2019-2020.
|
||||
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Teleport Request\n"
|
||||
"Report-Msgid-Bugs-To: David Leal\n"
|
||||
"POT-Creation-Date: 2019-07-12 5:07+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: David Leal <halfpacho@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: config.lua
|
||||
msgid "Let players teleport to other players (request will be sent)"
|
||||
msgstr "Permite que los jugadores se teletransporten a otros jugadores (se enviará una solicitud)"
|
||||
|
||||
#: config.lua
|
||||
msgid "Gives full admin-access to a player."
|
||||
msgstr "Da acceso total de administrador a un jugador."
|
||||
|
||||
#: config.lua
|
||||
msgid "Allow player to teleport to coordinates (if allowed by area protection)"
|
||||
msgstr "Permite a los jugadores teletransportarse a las coordenadas especificadas (si esta permitido por la protección de la área)"
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpr_mute <player>"
|
||||
msgstr "Uso: /tpr_mute <jugador>"
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Failed to mute player @1: they have the tp_admin privilege."
|
||||
msgstr "tpr_mute: No se pudo silenciar al jugador @1: tiene el privilegio tp_admin."
|
||||
|
||||
#: init.lua
|
||||
msgid "Wait @1 seconds before you can send teleport requests to @2 again."
|
||||
msgstr "Espere @1 segundos antes de que pueda mandar solicitudes de teletransporte a @2."
|
||||
|
||||
#: init.lua
|
||||
msgid "You can now send teleport requests to @1."
|
||||
msgstr "Ya puede mandar solicitudes de teletransporte a @1."
|
||||
|
||||
#: init.lua
|
||||
msgid "You are not allowed to send requests because you're muted."
|
||||
msgstr "No tienes permiso para mandar solicitudes de teletransporte porque estás silenciado."
|
||||
|
||||
#: init.lua
|
||||
msgid "Cannot send request to @1 (you have been muted)."
|
||||
msgstr "No se puede enviar la solicitud a @1 (has sido silenciado)."
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 is already muted."
|
||||
msgstr "tpr_mute: El jugador @1 ya esta silenciado."
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 successfully muted."
|
||||
msgstr "tpr_mute: El jugador @1 ha sido silenciado con éxito."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpr_unmute <player>"
|
||||
msgstr "Uso: /tpr_unmute <player>"
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 is not muted yet."
|
||||
msgstr "tpr_mute: El jugador @1 aún no ha sido slienciado."
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 successfully unmuted."
|
||||
msgstr "tpr_mute: El sonido del jugador @1 ha sido activado con éxito."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpr <Player name>"
|
||||
msgstr "Uso: /tpr <jugador>"
|
||||
|
||||
#: init.lua
|
||||
msgid "There is no player by that name. Keep in mind this is case-sensitive, and the player must be online."
|
||||
msgstr "No hay jugador con ese nombre. Tenga en cuenta que esto es caso-sensitivo, y el jugador debe de estar én línea."
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request denied, player is in the gamehub!"
|
||||
msgstr "Solicitud denegada, ¡el jugador esta en el centro de juegos!"
|
||||
|
||||
#: init.lua
|
||||
msgid "You are teleporting to @1."
|
||||
msgstr "Te estas teletransportando a @1."
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is requesting to teleport to you. /tpy to accept."
|
||||
msgstr "@1 esta pidiendo teletransportarse a ti. /tpy para aceptar."
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request sent! It will timeout in @1 seconds."
|
||||
msgstr "¡Solicitud enviada! Se agotara en @1 segundos."
|
||||
|
||||
#: init.lua
|
||||
msgid "Request timed-out."
|
||||
msgstr "La solicitud enviada expiró."
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is teleporting to you."
|
||||
msgstr "@1 se esta teletransportando a ti."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tphr <Player name>"
|
||||
msgstr "Uso: /tphr <jugador>"
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is requesting that you teleport to them. /tpy to accept; /tpn to deny."
|
||||
msgstr "@1 esta pidiendo que tu te teletransportes a el/ella. /tpy para aceptar, /tpn para denegar."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpc <x, y, z>"
|
||||
msgstr "Uso: /tpc <x, y, z>"
|
||||
|
||||
#: init.lua
|
||||
msgid "You cannot teleport to a location outside the map!"
|
||||
msgstr "¡No puedes teletransportarte afuera del mundo!"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleporting to: @1, @2, @3"
|
||||
msgstr "Teletransportandose a: @1, @2, @3"
|
||||
|
||||
#: init.lua
|
||||
msgid "Area request sent! Waiting for @1 to accept your request. It will timeout in @2 seconds."
|
||||
msgstr "¡Solicitud de área enviada! Esperando a @1 que acepte tu solicitud. Se agotara en @2 segundos."
|
||||
|
||||
#: init.lua
|
||||
msgid ", or "
|
||||
msgstr ", o a "
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is requesting to teleport to a protected area of yours @2."
|
||||
msgstr "@1 solicita teletransportarse a una área protegida tuya @2."
|
||||
|
||||
#: init.lua
|
||||
msgid "Error: You do not have permission to teleport to those coordinates."
|
||||
msgstr "Error: No tienes permiso para teletransportarte a esas coordenadas."
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request denied."
|
||||
msgstr "Solicitud denegada."
|
||||
|
||||
#: init.lua
|
||||
msgid "You denied the request @1 sent you."
|
||||
msgstr "Tú denegaste la solicitud de teletransporte que @1 te mando."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpn allows you to deny teleport/area requests sent to you by other players."
|
||||
msgstr "Uso: /tpn te permite denegar solicitudes enviadas para ti de otros jugadores."
|
||||
|
||||
msgid "You denied your request sent to @1."
|
||||
msgstr "Tú denegaste la solicitud de teletransporte enviada a @1."
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 denied their request sent to you."
|
||||
msgstr "@1 denego su solicitud de teletransporte enviada a usted."
|
||||
|
||||
#: init.lua
|
||||
msgid "Area request denied."
|
||||
msgstr "Solicitud de área denegada."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpy allows you to accept teleport/area requests sent to you by other players."
|
||||
msgstr "Uso: /tpy te permite aceptar solicitudes enviadas para ti de otros jugadores."
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is teleporting to your protected area @2."
|
||||
msgstr "@1 se esta teletransportando a tu área protegida @2."
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is not online right now."
|
||||
msgstr "@1 no esta en línea ahora mismo."
|
||||
|
||||
#: init.lua
|
||||
msgid "Request Accepted!"
|
||||
msgstr "¡Solicitud aceptada!"
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: <x|y|z> <number>"
|
||||
msgstr "Uso: <x|y|z> <numero>"
|
||||
|
||||
#: init.lua
|
||||
msgid "Not a number!"
|
||||
msgstr "¡No un número!"
|
||||
|
||||
#: init.lua
|
||||
msgid "Not a valid axis. Valid options are X, Y or Z"
|
||||
msgstr "Eje invalido. Opciones validas son x, y, o z"
|
||||
|
||||
#: init.lua
|
||||
msgid "EVADE!"
|
||||
msgstr "¡EVADIR!"
|
||||
|
||||
#: init.lua
|
||||
msgid "Request teleport to another player."
|
||||
msgstr "Enviar solicitud para teletransportarte a otro jugador."
|
||||
|
||||
#: init.lua
|
||||
msgid "<playername> | leave playername empty to see help message"
|
||||
msgstr "<jugador> | Deje el nombre del jugador vacío para ver el mensaje de ayuda"
|
||||
|
||||
#: init.lua
|
||||
msgid "Request player to teleport to you"
|
||||
msgstr "Solicita al jugador que se teletransporte a ti."
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to coordinates"
|
||||
msgstr "Teletransportarse a las coordenadas especificadas."
|
||||
|
||||
#: init.lua
|
||||
msgid "<coordinates> | leave coordinates empty to see help message"
|
||||
msgstr "<coordenadas> | Deje las coordenadas vacías para ver el mensaje de ayuda"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to relative position"
|
||||
msgstr "Teletransportarse a la posición relativa."
|
||||
|
||||
#: init.lua
|
||||
msgid "<axis> <distance> | leave empty to see help message"
|
||||
msgstr "<eje> <distancia> | Deje vacío para ver el mensaje de ayuda"
|
||||
|
||||
#: init.lua
|
||||
msgid "Evade Enemy"
|
||||
msgstr "Evadir enemigo."
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to a place (i.e., spawn, shop)."
|
||||
msgstr "Teletransportarse a un lugar (p.ej., la tienda, la ciudad)."
|
||||
|
||||
#: init.lua
|
||||
msgid "<place> | leave empty to see available places"
|
||||
msgstr "<lugar> | Deje vacío para ver los lugares disponibles"
|
||||
|
||||
#: init.lua
|
||||
msgid "There are no places yet."
|
||||
msgstr "Todavia no hay lugares."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpp <place>"
|
||||
msgstr "Uso: /tpp <lugar>"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleporting to @1."
|
||||
msgstr "Teletransportandose a @1."
|
||||
|
||||
#: init.lua
|
||||
msgid "There is no place by that name. Keep in mind this is case-sensitive."
|
||||
msgstr "No hay lugar con ese nombre. Tenga en cuenta que esto es caso-sensitivo."
|
||||
|
||||
#: init.lua
|
||||
msgid "Accept teleport requests from another player"
|
||||
msgstr "Aceptar solicitudes de otro jugador."
|
||||
|
||||
#: init.lua
|
||||
msgid "Deny teleport requests from another player"
|
||||
msgstr "Denegar solicitudos de otro jugador."
|
||||
|
||||
#: init.lua
|
||||
msgid "Mutes a player: denies them from sending you teleport requests"
|
||||
msgstr "Silencia a un jugador: le niega el envío de solicitudes de teletransporte"
|
||||
|
||||
#: init.lua
|
||||
msgid "Unmutes a player: allow them to send you teleport requests again"
|
||||
msgstr "Activar el sonido de un jugador: permite que te envíe solicitudes de teletransporte nuevamente"
|
||||
|
||||
#: init.lua
|
||||
msgid "[Teleport Request] TPS Teleport v@1 Loaded!"
|
||||
msgstr "[TPS] Solicitud de teletransporte v@1 Cargado!"
|
245
tpr/locale/pt_BR.po
Normal file
245
tpr/locale/pt_BR.po
Normal file
@ -0,0 +1,245 @@
|
||||
# Brazilian Portuguese translation for Teleport Request.
|
||||
# Copyright (C) 2014-2021 ChaosWormz and contributors.
|
||||
# This file is distributed under under the same license as the Teleport Request package.
|
||||
# Animetrom <contatoanimetrom@gmail.com>, 2020.
|
||||
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Teleport Request\n"
|
||||
"Report-Msgid-Bugs-To: Animetrom\n"
|
||||
"POT-Creation-Date: 2020-03-19 5:07+0200\n"
|
||||
"PO-Revision-Date: 2020-03-19\n"
|
||||
"Last-Translator: Animetrom <contatoanimetrom@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: config.lua
|
||||
msgid "Let players teleport to other players (request will be sent)"
|
||||
msgstr "Permita que os jogadores se teletransportem para outros jogadores (a solicitacao sera' enviada)"
|
||||
|
||||
#: config.lua
|
||||
msgid "Gives full admin-access to a player."
|
||||
msgstr "Da acesso de administrador completo a um jogador."
|
||||
|
||||
#: config.lua
|
||||
msgid "Allow player to teleport to coordinates (if allowed by area protection)"
|
||||
msgstr "Permitir que o jogador se teletransporte para coordenadas (se permitido pela protecao da area)"
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Failed to mute player @1: they have the tp_admin privilege."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "You are not allowed to send requests because you're muted."
|
||||
msgstr "Voce nao tem permissao para enviar solicitacoes porque esta' sem som."
|
||||
|
||||
#: init.lua
|
||||
msgid "Cannot send request to @1 (you have been muted)."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 is already muted."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 successfully muted."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpr_unmute <player>"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 is not muted yet."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 successfully unmuted."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpr <Player name>"
|
||||
msgstr "Use: /tpr <Nome do jogador>"
|
||||
|
||||
#: init.lua
|
||||
msgid "There is no player by that name. Keep in mind this is case-sensitive, and the player must be online"
|
||||
msgstr "Nao existe nenhum jogador com esse nome. Lembre-se de que isso diferencia maiusculas de minusculas e o player deve estar online"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request denied, player is in the gamehub!"
|
||||
msgstr "Pedido de teleporte negado, o jogador esta' no gamehub!"
|
||||
|
||||
#: init.lua
|
||||
msgid "You are teleporting to @1."
|
||||
msgstr "Voce esta' se teletransportando para @1."
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is requesting to teleport to you. /tpy to accept"
|
||||
msgstr "@1 esta' solicitando o teletransporte para voce. /tpy para aceitar"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request sent! It will timeout in @1 seconds"
|
||||
msgstr "Pedido de teleporte enviado! Tempo limite em @1 segundos"
|
||||
|
||||
#: init.lua
|
||||
msgid "Request timed-out."
|
||||
msgstr "O pedido expirou."
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is teleporting to you."
|
||||
msgstr "@1 esta' se teletransportando para voce."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tphr <Player name>"
|
||||
msgstr "Use: /tphr <Nome do jogador>"
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is requesting that you teleport to them. /tpy to accept; /tpn to deny"
|
||||
msgstr "@1 esta' solicitando que voce se teletransporte para ele. /tpy para aceitar; /tpn para negar"
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpc <x, y, z>"
|
||||
msgstr "Use: /tpc <x, y, z>"
|
||||
|
||||
#: init.lua
|
||||
msgid "You cannot teleport to a location outside the map!"
|
||||
msgstr "Voce nao pode se teletransportar para um local fora do mapa!"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleporting to: @1, @2, @3"
|
||||
msgstr "Teleportar para: @1, @2, @3"
|
||||
|
||||
#: init.lua
|
||||
msgid "Error: @1 is protected by @2."
|
||||
msgstr "Erro: @1 e' protegido por @2."
|
||||
|
||||
#: init.lua
|
||||
msgid "Error: You do not have permission to teleport to those coordinates."
|
||||
msgstr "Erro: voce nao tem permissao para se teletransportar para essas coordenadas."
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request denied."
|
||||
msgstr "Pedido de teleporte negado."
|
||||
|
||||
#: init.lua
|
||||
msgid "You denied the request @1 sent you."
|
||||
msgstr "Voce negou a solicitacao @1 enviei a voce."
|
||||
|
||||
#: init.lua
|
||||
msgid "You denied your request sent to @1."
|
||||
msgstr "Voce negou sua solicitacao enviada para @1."
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 denied their request sent to you."
|
||||
msgstr "@1 negou o pedido enviado a voce."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpn allows you to deny teleport requests sent to you by other players."
|
||||
msgstr "Use: /tpn permite negar solicitacoes de teleporte enviadas a voce por outros jogadores."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpy allows you to accept teleport requests sent to you by other players"
|
||||
msgstr "Use: /tpy permite que voce aceite solicitacoes de teleporte enviadas a voce por outros jogadores"
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 doesn't exist, or just disconnected/left (by timeout)."
|
||||
msgstr "@1 nao existe ou apenas desconectado / deixado (por tempo limite)."
|
||||
|
||||
#: init.lua
|
||||
msgid "Request Accepted!"
|
||||
msgstr "Pedido aceito!"
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: <x|y|z> <number>"
|
||||
msgstr "Use: <x|y|z> <numero>"
|
||||
|
||||
#: init.lua
|
||||
msgid "Not a number!"
|
||||
msgstr "Nao e' um numero!"
|
||||
|
||||
#: init.lua
|
||||
msgid "Not a valid axis. Valid options are X, Y or Z"
|
||||
msgstr "Nao e' um eixo valido. Opcoes validas sao X, Y ou Z"
|
||||
|
||||
#: init.lua
|
||||
msgid "EVADE!"
|
||||
msgstr "EVADE!"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to a place (i.e., spawn, shop)."
|
||||
msgstr "Teleporte para um lugar (i.e., spawn, shop)."
|
||||
|
||||
#: init.lua
|
||||
msgid "<place> | leave empty to see available places"
|
||||
msgstr "<Lugar> | deixe em branco para ver os lugares disponiveis"
|
||||
|
||||
#: init.lua
|
||||
msgid "There are no places yet."
|
||||
msgstr "Ainda nao ha lugares."
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpp <place>"
|
||||
msgstr "Use: /tpp <Lugar>"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleporting to @1."
|
||||
msgstr "Teleportar para @1."
|
||||
|
||||
#: init.lua
|
||||
msgid "There is no place by that name. Keep in mind this is case-sensitive."
|
||||
msgstr "Nao ha' lugar com esse nome. Lembre-se de que isso diferencia maiusculas de minusculas."
|
||||
|
||||
#: init.lua
|
||||
msgid "Request teleport to another player."
|
||||
msgstr "Solicitar teleporte para outro jogador."
|
||||
|
||||
#: init.lua
|
||||
msgid "<playername> | leave playername empty to see help message"
|
||||
msgstr "<nome do jogador> | deixe o nome do jogador em branco para ver a mensagem de ajuda"
|
||||
|
||||
#: init.lua
|
||||
msgid "Request player to teleport to you"
|
||||
msgstr "Solicitar que o jogador se teleporte para voce"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to coordinates"
|
||||
msgstr "Teleporte para coordenadas"
|
||||
|
||||
#: init.lua
|
||||
msgid "<coordinates> | leave coordinates empty to see help message"
|
||||
msgstr "<coordenadas> | deixe as coordenadas vazias para ver a mensagem de ajuda"
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to relative position"
|
||||
msgstr "Teleporte para a posicao relativa"
|
||||
|
||||
#: init.lua
|
||||
msgid "<axis> <distance> | leave empty to see help message"
|
||||
msgstr "<eixo> <distancia> | deixe em branco para ver a mensagem de ajuda"
|
||||
|
||||
#: init.lua
|
||||
msgid "Evade Enemy"
|
||||
msgstr "Iludir o Inimigo"
|
||||
|
||||
#: init.lua
|
||||
msgid "Accept teleport requests from another player"
|
||||
msgstr "Aceitar pedidos de teleporte de outro jogador"
|
||||
|
||||
#: init.lua
|
||||
msgid "Deny teleport requests from another player"
|
||||
msgstr "Negar pedidos de teleporte de outro jogador"
|
||||
|
||||
#: init.lua
|
||||
msgid "Mutes a player: denies them from sending you teleport requests"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Unmutes a player: allow them to send you teleport requests again"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "[Teleport Request] TPS Teleport v@1 Loaded!"
|
||||
msgstr "[Solicitacao de Teleporte] Teletransporte TPS v@1 Carregado!"
|
268
tpr/locale/template.pot
Normal file
268
tpr/locale/template.pot
Normal file
@ -0,0 +1,268 @@
|
||||
# Template translation for Teleport Request.
|
||||
# Copyright (C) 2014-2021 ChaosWormz and contributors.
|
||||
# This file is distributed under under the same license as the Teleport Request package.
|
||||
# David Leal <halfpacho@gmail.com>, 2019-2020.
|
||||
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Teleport Request\n"
|
||||
"Report-Msgid-Bugs-To: David Leal\n"
|
||||
"POT-Creation-Date: 2019-07-12 5:07+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: David Leal <halfpacho@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: config.lua
|
||||
msgid "Let players teleport to other players (request will be sent)"
|
||||
msgstr ""
|
||||
|
||||
#: config.lua
|
||||
msgid "Gives full admin-access to a player."
|
||||
msgstr ""
|
||||
|
||||
#: config.lua
|
||||
msgid "Allow player to teleport to coordinates (if allowed by area protection)"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Failed to mute player @1: they have the tp_admin privilege."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Wait @1 seconds before you can send teleport requests to @2 again."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "You can now send teleport requests to @1."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "You are not allowed to send requests because you're muted."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Cannot send request to @1 (you have been muted)."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 is already muted."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 successfully muted."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpr_unmute <player>"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 is not muted yet."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "tpr_mute: Player @1 successfully unmuted."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpr <Player name>"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "There is no player by that name. Keep in mind this is case sensitive, and the player must be online."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request denied, player is in the gamehub!"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "You are teleporting to @1."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is requesting to teleport to you. /tpy to accept."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request sent! It will timeout in @1 seconds."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Request timed-out."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is teleporting to you."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tphr <Player name>"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is requesting that you teleport to them. /tpy to accept; /tpn to deny."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpc <x, y, z>"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "You cannot teleport to a location outside the map!"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleporting to: @1, @2, @3"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Area request sent! Waiting for @1 to accept your request. It will timeout in @2 seconds."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid ", or "
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is requesting to teleport to a protected area of yours @2."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Error: You do not have permission to teleport to those coordinates."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpn allows you to deny teleport/area requests sent to you by other players."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Area request denied."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport request denied."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "You denied the request @1 sent you."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpy allows you to accept teleport/area requests sent to you by other players."
|
||||
msgstr ""
|
||||
|
||||
msgid "You denied your request sent to @1."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 denied their request sent to you."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is teleporting to your protected area @2."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "@1 is not online right now."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Request Accepted!"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: <x|y|z> <number>"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Not a number!"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Not a valid axis. Valid options are X, Y or Z"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "EVADE!"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to a place (i.e., spawn, shop)."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "<place> | leave empty to see available places"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "There are no places yet."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Usage: /tpp <place>"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleporting to @1."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "There is no place by that name. Keep in mind this is case-sensitive."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Request teleport to another player."
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "<playername> | leave playername empty to see help message"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Request player to teleport to you"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to coordinates"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "<coordinates> | leave coordinates empty to see help message"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Teleport to relative position"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "<axis> <distance> | leave empty to see help message"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Evade Enemy"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Accept teleport requests from another player"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Deny teleport requests from another player"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Mutes a player: denies them from sending you teleport requests"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "Unmutes a player: allow them to send you teleport requests again"
|
||||
msgstr ""
|
||||
|
||||
#: init.lua
|
||||
msgid "[Teleport Request] TPS Teleport v@1 Loaded!"
|
||||
msgstr ""
|
56
tpr/locale/template.txt
Normal file
56
tpr/locale/template.txt
Normal file
@ -0,0 +1,56 @@
|
||||
# textdomain: tpr
|
||||
|
||||
Let players teleport to other players (request will be sent)=
|
||||
Gives full admin-access to a player.=
|
||||
Allow player to teleport to coordinates (if allowed by area protection)=
|
||||
Wait @1 seconds before you can send teleport requests to @2 again.=
|
||||
You can now send teleport requests to @1.=
|
||||
You are not allowed to send requests because you're muted.=
|
||||
Usage: /tpr <Player name>=
|
||||
There is no player by that name. Keep in mind this is case-sensitive, and the player must be online.=
|
||||
Teleport request denied, player is in the gamehub!=
|
||||
You are teleporting to @1.=
|
||||
@1 is requesting to teleport to you. /tpy to accept.=
|
||||
Teleport request sent! It will timeout in @1 seconds.=
|
||||
Request timed-out.=
|
||||
@1 is teleporting to you.=
|
||||
Usage: /tphr <Player name>=
|
||||
@1 is requesting that you teleport to them. /tpy to accept; /tpn to deny.=
|
||||
Usage: /tpc <x, y, z>=
|
||||
You cannot teleport to a location outside the map!=
|
||||
Teleporting to: @1, @2, @3=
|
||||
Area request sent! Waiting for @1 to accept your request. It will timeout in @2 seconds.=
|
||||
, or=
|
||||
@1 is requesting to teleport to a protected area of yours @2.=
|
||||
Error: You do not have permission to teleport to those coordinates.=
|
||||
Teleport request denied.=
|
||||
You denied the request @1 sent you.=
|
||||
Usage: /tpn allows you to deny teleport/area requests sent to you by other players.=
|
||||
You denied your request sent to @1.=
|
||||
@1 denied their request sent to you.=
|
||||
Area request denied.=
|
||||
Usage: /tpy allows you to accept teleport/area requests sent to you by other players.=
|
||||
@1 is teleporting to your protected area @2.=
|
||||
@1 is not online right now.=
|
||||
Request Accepted!=
|
||||
Usage: <x|y|z> <number>=
|
||||
Not a number!=
|
||||
Not a valid axis. Valid options are X, Y or Z=
|
||||
EVADE!=
|
||||
Request teleport to another player=
|
||||
<playername> | leave playername empty to see help message=
|
||||
Request player to teleport to you=
|
||||
Teleport to coordinates=
|
||||
<coordinates> | leave coordinates empty to see help message=
|
||||
Teleport to relative position=
|
||||
<axis> <distance> | leave empty to see help message=
|
||||
Evade Enemy=
|
||||
Teleport to a place (i.e., spawn, shop).=
|
||||
<place> | leave empty to see available places=
|
||||
There are no places yet.=
|
||||
Usage: /tpp <place>=
|
||||
Teleporting to @1.=
|
||||
There is no place by that name. Keep in mind this is case-sensitive.=
|
||||
Accept teleport/area requests from another player=
|
||||
Deny teleport/area requests from another player=
|
||||
[Teleport Request] TPS Teleport v@1 Loaded!=
|
56
tpr/locale/tpr.es.tr
Normal file
56
tpr/locale/tpr.es.tr
Normal file
@ -0,0 +1,56 @@
|
||||
# textdomain: tpr
|
||||
|
||||
Let players teleport to other players (request will be sent)=Permite que los jugadores se teletransporten a otros jugadores (se enviará una solicitud)
|
||||
Gives full admin-access to a player.=Da acceso total de administrador a un jugador.
|
||||
Allow player to teleport to coordinates (if allowed by area protection)=Permite a los jugadores teletransportarse a las coordenadas especificadas (si esta permitido por la protección de la área)
|
||||
Wait @1 seconds before you can send teleport requests to @2 again.=Espere @1 segundos antes de que pueda mandar solicitudes de teletransporte a @2.
|
||||
You can now send teleport requests to @1.=Ya puede mandar solicitudes de teletransporte a @1.
|
||||
You are not allowed to send requests because you're muted.=No tienes permiso para mandar solicitudes de teletransporte porque estás silenciado.
|
||||
Usage: /tpr <Player name>=Uso: /tpr <jugador>
|
||||
There is no player by that name. Keep in mind this is case-sensitive, and the player must be online.=No hay jugador con ese nombre. Tenga en cuenta que esto es caso-sensitivo, y el jugador debe de estar én línea.
|
||||
Teleport request denied, player is in the gamehub!=Solicitud denegada, ¡el jugador esta en el centro de juegos!
|
||||
You are teleporting to @1.=Te estas teletransportando a @1.
|
||||
@1 is requesting to teleport to you. /tpy to accept.=@1 esta pidiendo teletransportarse a ti. /tpy para aceptar.
|
||||
Teleport request sent! It will timeout in @1 seconds.=¡Solicitud enviada! Se agotara en @1 segundos.
|
||||
Request timed-out.=La solicitud enviada expiró.
|
||||
@1 is teleporting to you.=@1 se esta teletransportando a ti.
|
||||
Usage: /tphr <Player name>=Uso: /tphr <jugador>
|
||||
@1 is requesting that you teleport to them. /tpy to accept; /tpn to deny.=@1 esta pidiendo que tu te teletransportes a el/ella. /tpy para aceptar, /tpn para denegar.
|
||||
Usage: /tpc <x, y, z>=Uso: /tpc <x, y, z>
|
||||
You cannot teleport to a location outside the map!=¡No puedes teletransportarte afuera del mundo!
|
||||
Teleporting to: @1, @2, @3=Teletransportandose a: @1, @2, @3
|
||||
Area request sent! Waiting for @1 to accept your request. It will timeout in @2 seconds.=¡Solicitud de área enviada! Esperando a @1 que acepte tu solicitud. Se agotara en @2 segundos.
|
||||
, or=, o a
|
||||
@1 is requesting to teleport to a protected area of yours @2.=@1 solicita teletransportarse a una área protegida tuya @2.
|
||||
Error: You do not have permission to teleport to those coordinates.=Error: No tienes permiso para teletransportarte a esas coordenadas.
|
||||
Teleport request denied.=Solicitud denegada.
|
||||
You denied the request @1 sent you.=Tú denegaste la solicitud de teletransporte que @1 te mando.
|
||||
Usage: /tpn allows you to deny teleport/area requests sent to you by other players.=Uso: /tpn te permite denegar solicitudes enviadas para ti de otros jugadores.
|
||||
You denied your request sent to @1.=Tú denegaste la solicitud de teletransporte enviada a @1.
|
||||
@1 denied their request sent to you.=@1 denego su solicitud de teletransporte enviada a usted.
|
||||
Area request denied.=Solicitud de área denegada.
|
||||
Usage: /tpy allows you to accept teleport/area requests sent to you by other players.=Uso: /tpy te permite aceptar solicitudes enviadas para ti de otros jugadores.
|
||||
@1 is teleporting to your protected area @2.=@1 se esta teletransportando a tu área protegida @2.
|
||||
@1 is not online right now.=@1 no esta en línea ahora mismo.
|
||||
Request Accepted!=¡Solicitud aceptada!
|
||||
Usage: <x|y|z> <number>=Uso: <x|y|z> <numero>
|
||||
Not a number!=¡No un número!
|
||||
Not a valid axis. Valid options are X, Y or Z=Eje invalido. Opciones validas son x, y, o z
|
||||
EVADE!=¡EVADIR!
|
||||
Request teleport to another player=Enviar solicitud para teletransportarte a otro jugador
|
||||
<playername> | leave playername empty to see help message=<jugador> | Deje el nombre del jugador vacío para ver el mensaje de ayuda
|
||||
Request player to teleport to you=Solicitar a un jugador que se teletransporte a ti
|
||||
Teleport to coordinates=Teletransportarse a las coordenadas especificadas.
|
||||
<coordinates> | leave coordinates empty to see help message=<coordenadas> | Deje las coordenadas vacías para ver el mensaje de ayuda
|
||||
Teleport to relative position=Teletransportarse a la posición relativa.
|
||||
<axis> <distance> | leave empty to see help message=<eje> <distancia> | Deje vacío para ver el mensaje de ayuda
|
||||
Evade Enemy=Evadir enemigo.
|
||||
Teleport to a place (i.e., spawn, shop).=Teletransportarse a un lugar (p.ej., la tienda, la ciudad).
|
||||
<place> | leave empty to see available places=<lugar> | Deje vacío para ver los lugares disponibles
|
||||
There are no places yet.=Todavia no hay lugares.
|
||||
Usage: /tpp <place>=Uso: /tpp <lugar>
|
||||
Teleporting to @1.=Teletransportandose a @1.
|
||||
There is no place by that name. Keep in mind this is case-sensitive.=No hay lugar con ese nombre. Tenga en cuenta que esto es caso-sensitivo.
|
||||
Accept teleport/area requests from another player=Aceptar solicitudes de otro jugador
|
||||
Deny teleport/area requests from another player=Denegar solicitudos de otro jugador
|
||||
[Teleport Request] TPS Teleport v@1 Loaded!=[TPS] Solicitud de teletransporte v@1 Cargado!
|
50
tpr/locale/tpr.pt_BR.tr
Normal file
50
tpr/locale/tpr.pt_BR.tr
Normal file
@ -0,0 +1,50 @@
|
||||
# textdomain: tpr
|
||||
|
||||
Let players teleport to other players (request will be sent)=Permita que os jogadores se teletransportem para outros jogadores (a solicitacao sera' enviada)
|
||||
Gives full admin-access to a player.=Da acesso de administrador completo a um jogador.
|
||||
Allow player to teleport to coordinates (if allowed by area protection)=Permitir que o jogador se teletransporte para coordenadas (se permitido pela protecao da area)
|
||||
You are not allowed to send requests because you're muted.=Voce nao tem permissao para enviar solicitacoes porque esta' sem som.
|
||||
Usage: /tpr <Player name>=Use: /tpr <Nome do jogador>
|
||||
There is no player by that name. Keep in mind this is case-sensitive, and the player must be online=Nao existe nenhum jogador com esse nome. Lembre-se de que isso diferencia maiusculas de minusculas e o player deve estar online
|
||||
Teleport request denied, player is in the gamehub!=Pedido de teleporte negado, o jogador esta' no gamehub!
|
||||
You are teleporting to @1.=Voce esta' se teletransportando para @1.
|
||||
@1 is requesting to teleport to you. /tpy to accept=@1 esta' solicitando o teletransporte para voce. /tpy para aceitar
|
||||
Teleport request sent! It will timeout in @1 seconds=Pedido de teleporte enviado! Tempo limite em @1 segundos
|
||||
Request timed-out.=O pedido expirou.
|
||||
@1 is teleporting to you.=@1 esta' se teletransportando para voce.
|
||||
Usage: /tphr <Player name>=Use: /tphr <Nome do jogador>
|
||||
@1 is requesting that you teleport to them. /tpy to accept; /tpn to deny=@1 esta' solicitando que voce se teletransporte para ele. /tpy para aceitar; /tpn para negar
|
||||
Usage: /tpc <x, y, z>=Use: /tpc <x, y, z>
|
||||
You cannot teleport to a location outside the map!=Voce nao pode se teletransportar para um local fora do mapa!
|
||||
Teleporting to: @1, @2, @3=Teleportar para: @1, @2, @3
|
||||
Error: @1 is protected by @2.=Erro: @1 e' protegido por @2.
|
||||
Error: You do not have permission to teleport to those coordinates.=Erro: voce nao tem permissao para se teletransportar para essas coordenadas.
|
||||
Teleport request denied.=Pedido de teleporte negado.
|
||||
You denied the request @1 sent you.=Voce negou a solicitacao @1 enviei a voce.
|
||||
You denied your request sent to @1.=Voce negou sua solicitacao enviada para @1.
|
||||
@1 denied their request sent to you.=@1 negou o pedido enviado a voce.
|
||||
Usage: /tpn allows you to deny teleport requests sent to you by other players.=Use: /tpn permite negar solicitacoes de teleporte enviadas a voce por outros jogadores.
|
||||
Usage: /tpy allows you to accept teleport requests sent to you by other players.=Use: /tpy permite que voce aceite solicitacoes de teleporte enviadas a voce por outros jogadores.
|
||||
@1 doesn't exist, or just disconnected/left (by timeout).=@1 nao existe ou apenas desconectado / deixado (por tempo limite).
|
||||
Request Accepted!=Pedido aceito!
|
||||
Usage: <x|y|z> <number>=Use: <x|y|z> <numero>
|
||||
Not a number!=Nao e' um numero!
|
||||
Not a valid axis. Valid options are X, Y or Z=Nao e' um eixo valido. Opcoes validas sao X, Y ou Z
|
||||
EVADE!=EVADE!
|
||||
Teleport to a place (i.e., spawn, shop).=Teleporte para um lugar (i.e., spawn, shop).
|
||||
<place> | leave empty to see available places=<Lugar> | deixe em branco para ver os lugares disponiveis
|
||||
There are no places yet.=Ainda nao ha lugares.
|
||||
Usage: /tpp <place>=Use: /tpp <Lugar>
|
||||
Teleporting to @1.=Teleportar para @1.
|
||||
There is no place by that name. Keep in mind this is case-sensitive.=Nao ha' lugar com esse nome. Lembre-se de que isso diferencia maiusculas de minusculas.
|
||||
Request teleport to another player.=Solicitar teleporte para outro jogador.
|
||||
<playername> | leave playername empty to see help message=<nome do jogador> | deixe o nome do jogador em branco para ver a mensagem de ajuda
|
||||
Request player to teleport to you=Solicitar que o jogador se teleporte para voce
|
||||
Teleport to coordinates=Teleporte para coordenadas
|
||||
<coordinates> | leave coordinates empty to see help message=<coordenadas> | deixe as coordenadas vazias para ver a mensagem de ajuda
|
||||
Teleport to relative position=Teleporte para a posicao relativa
|
||||
<axis> <distance> | leave empty to see help message=<eixo> <distancia> | deixe em branco para ver a mensagem de ajuda
|
||||
Evade Enemy=Iludir o Inimigo
|
||||
Accept teleport requests from another player=Aceitar pedidos de teleporte de outro jogador
|
||||
Deny teleport requests from another player=Negar pedidos de teleporte de outro jogador
|
||||
[Teleport Request] TPS Teleport v@1 Loaded!=[Solicitacao de Teleporte] Teletransporte TPS v@1 Carregado!
|
9
tpr/mod.conf
Normal file
9
tpr/mod.conf
Normal file
@ -0,0 +1,9 @@
|
||||
name = tpr
|
||||
optional_depends = areas, intllib, beerchat, chat2, gamehub
|
||||
description = Allows players to send a request to other players to teleport to them, and do much more.
|
||||
min_minetest_version = 5.0.0
|
||||
license = LGPLv2.1
|
||||
forum = https://forum.minetest.net/viewtopic.php?t=4457
|
||||
release = 7160
|
||||
author = Traxie21
|
||||
title = Teleport Request
|
40
tpr/privileges.lua
Normal file
40
tpr/privileges.lua
Normal file
@ -0,0 +1,40 @@
|
||||
--[[
|
||||
Configuration
|
||||
Copyright (C) 2014-2021 ChaosWormz and contributors
|
||||
|
||||
This library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
This library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with this library; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
||||
USA
|
||||
--]]
|
||||
|
||||
-- Support for intllib
|
||||
local S = tp.intllib
|
||||
|
||||
minetest.register_privilege("tp", {
|
||||
description = S("Let players teleport to other players (request will be sent)"),
|
||||
give_to_singleplayer = false,
|
||||
give_to_admin = true,
|
||||
})
|
||||
|
||||
minetest.register_privilege("tp_admin", {
|
||||
description = S("Gives full admin-access to a player."),
|
||||
give_to_singleplayer = false,
|
||||
give_to_admin = true,
|
||||
})
|
||||
|
||||
minetest.register_privilege("tp_tpc", {
|
||||
description = S("Allow player to teleport to coordinates (if allowed by area protection)"),
|
||||
give_to_singleplayer = false,
|
||||
give_to_admin = true,
|
||||
})
|
11
tpr/settingtypes.txt
Normal file
11
tpr/settingtypes.txt
Normal file
@ -0,0 +1,11 @@
|
||||
# Timeout delay (default is 60)
|
||||
tp.timeout_delay (Timeout delay after a request is sent) int 60
|
||||
|
||||
# Enables immediate teleport to players for those who have tp_admin privilege (enabled by default)
|
||||
tp.enable_immediate_teleport (Immediate teleport for those with tp_admin privilege) bool true
|
||||
|
||||
# Enables Teleport To Place command (disabled by default)
|
||||
tp.enable_tpp_command (Enable Teleport To Place command) bool false
|
||||
|
||||
# Spam prevention (enabled by default)
|
||||
tp.enable_spam_prevention (Enable spam prevention) bool true
|
20
tpr/sounds/LICENSE.txt
Normal file
20
tpr/sounds/LICENSE.txt
Normal file
@ -0,0 +1,20 @@
|
||||
Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
|
||||
Copyright (C) 2020 David Leal (halfpacho@gmail.com) & ChaosWormz
|
||||
|
||||
You are free to:
|
||||
Share — copy and redistribute the material in any medium or format
|
||||
Adapt — remix, transform, and build upon the material for any purpose, even commercially.
|
||||
|
||||
Under the following terms:
|
||||
|
||||
Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
|
||||
|
||||
ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
|
||||
|
||||
Notices:
|
||||
|
||||
You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation.
|
||||
No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.
|
||||
|
||||
For more details:
|
||||
https://creativecommons.org/licenses/by-sa/4.0/
|
BIN
tpr/sounds/tpr_warp.ogg
Normal file
BIN
tpr/sounds/tpr_warp.ogg
Normal file
Binary file not shown.
BIN
tpr/textures/tps_portal_parti.png
Normal file
BIN
tpr/textures/tps_portal_parti.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 745 B |
Loading…
x
Reference in New Issue
Block a user