Skip to content

Commit 0fc5c5d

Browse files
committed
Repository reorganization
1 parent 13f0967 commit 0fc5c5d

12 files changed

+152
-18
lines changed

.gitignore

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# Build #
2+
#########
3+
MANIFEST.MF
4+
dependency-reduced-pom.xml
5+
6+
# Compiled #
7+
############
8+
bin
9+
build
10+
dist
11+
lib
12+
out
13+
target
14+
*.com
15+
*.class
16+
*.dll
17+
*.exe
18+
*.o
19+
*.so
20+
21+
# Databases #
22+
#############
23+
*.db
24+
*.sql
25+
*.sqlite
26+
27+
# Packages #
28+
############
29+
*.7z
30+
*.dmg
31+
*.gz
32+
*.iso
33+
*.jar
34+
*.rar
35+
*.tar
36+
*.zip
37+
38+
# Repository #
39+
##############
40+
.git
41+
42+
# Logging #
43+
###########
44+
/logs
45+
*.log
46+
47+
# Misc #
48+
########
49+
*.bak
50+
51+
# System #
52+
##########
53+
.DS_Store
54+
ehthumbs.db
55+
Thumbs.db
56+
57+
# Project #
58+
###########
59+
.classpath
60+
.externalToolBuilders
61+
.idea
62+
.project
63+
.settings
64+
nbproject
65+
atlassian-ide-plugin.xml
66+
build.xml
67+
nb-configuration.xml
68+
*.iml
69+
*.ipr
70+
*.iws

README.md

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
![Banner](https://user-images.githubusercontent.com/20110319/96116220-684cd780-0ee8-11eb-8e8e-7371d6c72e3a.png)
2+
<h2><img src="https://user-images.githubusercontent.com/20110319/96116246-73076c80-0ee8-11eb-9ba6-5a0dcea9dc5a.png" width=60>(EN) English</h2>
3+
4+
This is my first Bukkit/Spigot plugin, just a simple toolkit.
5+
You can always contribute by adding new functionality, fixing issues or typos.
6+
7+
Also you can always download it on the [BasicCommands Bukkit page](https://dev.bukkit.org/bukkit-plugins/thromax-basiccommands "BasicCommands on Bukkit") or by using the [releases menu](.../releases "Releases").
8+
9+
Thanks for your time!! :D
10+
11+
| Command | Description |
12+
| ------------ | ------------ |
13+
| `heal [target]` | Heals player |
14+
| `feed [target]` | Fills player's hunger bar |
15+
| `back` | Teleports to your last death location |
16+
| `gm <survival\|creative\|adventure\|spectator>`<br>`gm <0\|1\|2\|3>`| Sets player's gamemode |
17+
| `dawn`<br>`day`<br>`dusk`<br>`night` | Changes time on current world |
18+
| `version` | Displays version info |
19+
| `exit` | Saves and stops the server |
20+
21+
| Permission | Description |
22+
| ------------ | ------------ |
23+
| `bc.all.*` | Gives players full access to every functionality |
24+
| `bc.move.*` | Allows players to move |
25+
| `bc.exit.*` | Allows players to use `exit` command |
26+
| `b.version.*`| Allows players to use `version` command |
27+
| `bc.heal.*` | Allows players to use `heal` command on themselves |
28+
| `bc.heal.op` | Allows player to use `heal` command on anyone |
29+
| `bc.feed.*` | Allows players to use `feed` command on themselves |
30+
| `bc.feed.op` | Allows players to use `feed` command on anyone |
31+
| `bc.gm.*` | Allows players to change their own gamemode |
32+
| `bc.gm.op` | Allows players to change anyone's gamemode |
33+
| `bc.gm.survival` | Allows players to set their own gamemode to survival |
34+
| `bc.gm.creative` | Allows players to set their own gamemode to creative |
35+
| `bc.gm.adventure` | Allows players to set their own gamemode to adventure |
36+
| `bc.gm.spectator` | Allows players to set their own gamemode to spectator |
37+
| `bc.time.*` | Allows players to change time using any of the plugin commands |
38+
| `bc.gm.dawn` | Allows players to change time to dawn |
39+
| `bc.gm.day` | Allows players to change time to day |
40+
| `bc.gm.dusk` | Allows players to change time to dusk |
41+
| `bc.gm.night` | Allows players to change time to night |
42+
43+
44+
<h2><img src="https://user-images.githubusercontent.com/20110319/96116246-73076c80-0ee8-11eb-9ba6-5a0dcea9dc5a.png" width=60>(ES) Español </h2>
45+
Este es mi primer plugin para Bukkit/Spigot, un simple kit de herramientas.
46+
Puedes colaborar al proyecto añadiendo nuevas funciones, arreglando bugs o errores tipográficos.
47+
48+
Siempre puedes descargar la última versión compilada desde la [página de Bukkit de BasicCommands](https://dev.bukkit.org/bukkit-plugins/thromax-basiccommands "BasicCommands en Bukkit") o mediante el [menú de versiones](.../releases "Releases").
49+
50+
Gracias por vuestro tiempo!! :D
51+
52+
| Commando | Descripción |
53+
| ------------ | ------------ |
54+
| `heal [target]` | Cura al jugador |
55+
| `feed [target]` | Rellena la barra de hambre del jugador |
56+
| `back` | Teletransporta al último punto de muerte |
57+
| `gm <survival\|creative\|adventure\|spectator>`<br>`gm <0\|1\|2\|3>`| Establece el modo de juego del jugador |
58+
| `dawn`<br>`day`<br>`dusk`<br>`night` | Cambia el tiempo del mundo actual |
59+
| `version` | Muestra información sobre la versión |
60+
| `exit` | Guarda y detiene el servidor |
61+
62+
| Permiso | Descripción |
63+
| ------------ | ------------ |
64+
| `bc.all.*` | Da acceso a los jugadores a todas las funciones |
65+
| `bc.move.*` | Permite a los jugadores moverse |
66+
| `bc.exit.*` | Permite a los jugadores usar el comando `exit` |
67+
| `b.version.*`| Permite a los jugadores usar el comando `version` |
68+
| `bc.heal.*` | Permite a los jugadores usar el comando `heal` sobre sí mismos |
69+
| `bc.heal.op` | Permite a los jugadores usar el comando `heal` sobre cualquiera |
70+
| `bc.feed.*` | Permite a los jugadores usar el comando `feed` sobre sí mismos |
71+
| `bc.feed.op` | Permite a los jugadores usar el comando `feed` sobre cualquiera |
72+
| `bc.gm.*` | Permite a los jugadores cambiar su propio modo de juego |
73+
| `bc.gm.op` | Permite a los jugadores cambiar el modo de juego de cualquiera |
74+
| `bc.gm.survival` | Permite a los jugadores cambiar su modo de juego a supervivencia |
75+
| `bc.gm.creative` | Permite a los jugadores cambiar su modo de juego a creativo |
76+
| `bc.gm.adventure` | Permite a los jugadores cambiar su modo de juego a aventura |
77+
| `bc.gm.spectator` | Permite a los jugadores cambiar su modo de juego a espectador |
78+
| `bc.time.*` | Permite a los jugadores cambiar el tiempo del mundo usando cualquiera de los comandos del plugin |
79+
| `bc.gm.dawn` | Permite a los jugadores cambiar el tiempo del mundo a amanecer |
80+
| `bc.gm.day` | Permite a los jugadores cambiar el tiempo del mundo a mediodía |
81+
| `bc.gm.dusk` | Permite a los jugadores cambiar el tiempo del mundo a atardecer |
82+
| `bc.gm.night` | Permite a los jugadores cambiar el tiempo del mundo a noche |

README.txt

-18
This file was deleted.

Resources/BasicCommands Banner.png

-470 KB
Binary file not shown.

Resources/BasicCommands Logo.png

-144 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)