diff --git a/README.md b/README.md index cead26e2..03568997 100644 --- a/README.md +++ b/README.md @@ -14,18 +14,19 @@ Put this plugin in the ``/config/mods`` folder. ## Client commands | Command | Parameter | Description | |:----------|:-------------------------------------------------------------------------|:---------------------------------------------------------------| +| vote | <kick/map/gg/skip/back/random> [player/amount/world_name] [reason] | Start voting | | changepw | <new_password> <password_repeat> | Change account password. | | chars | <text...> | Make pixel texts | | color | | Enable color nickname | | discord | | Authenticate your Discord account to the server. | -| effect | [effect] [x] [y] [rotate] [color] | effects | -| exp | <set/hide/add/remove> <values> [player] | Edit account EXP values | +| effect | <level> [color] | Set the effect and color for each level. | +| exp | <set/hide/add/remove> [values/player] [player] | Edit account EXP values | | fillitems | <team> | Fill the core with items. | | freeze | <player> | Stop player unit movement | | gg | [team] | Force gameover | | god | [name] | Set max player health | | help | [page] | Show command lists | -| hub | <set/zone/block/count/total/remove> [ip] [parameters...] | Create a server to server point. | +| hub | <set/zone/block/count/total/remove/reset> [ip] [parameters...] | Create a server to server point. | | info | [player] | Show your information | | js | [code...] | Execute JavaScript codes | | kickall | | All users except yourself and the administrator will be kicked | @@ -43,7 +44,7 @@ Put this plugin in the ``/config/mods`` folder. | pause | | Pause server | | players | [page] | Show players list | | pm | <player> [message...] | Send private messgae | -| ranking | <time/place/break/attack/exp> | Show players ranking | +| ranking | <time/exp/attack/place/break/pvp> [page] | Show players ranking | | reg | <id> <password> <password_repeat> | Register account | | report | <player> <reason...> | Report player | | rollback | <player> | Undo all actions taken by the player. | @@ -60,10 +61,8 @@ Put this plugin in the ``/config/mods`` folder. | track | | Displays the mouse positions of players. | | unmute | <player> | Unmute player | | url | <command> | Opens a URL contained in a specific command. | -| vote | <kick/map/gg/skip/back/random> [player/amount/world_name] [reason] | Start voting | | weather | <rain/snow/sandstorm/sporestorm> <seconds> | Adds a weather effect to the map. | - ## Server commands | Command | Parameter | Description | |:--------|:-------------------------------------|:---------------------------------------------| @@ -73,8 +72,7 @@ Put this plugin in the ``/config/mods`` folder. | setperm | <player> <group> | Set the player's permission group. | | tempban | <player> <time> [reason] | Ban the player for a certain period of time. | - -README.md Generated time: 2023-01-10 11:21:42 +README.md Generated time: 2023-01-22 22:51:37 ## Contribute guide ### File description diff --git a/src/test/kotlin/PluginTest.kt b/src/test/kotlin/PluginTest.kt index 7687536e..b658bf29 100644 --- a/src/test/kotlin/PluginTest.kt +++ b/src/test/kotlin/PluginTest.kt @@ -8,7 +8,6 @@ import arc.files.Fi import arc.graphics.Color import arc.util.CommandHandler import arc.util.Log -import com.github.javafaker.Faker import essentials.Config import essentials.Main import essentials.Main.Companion.root @@ -30,6 +29,7 @@ import mindustry.maps.Map import mindustry.net.Net import mindustry.net.NetConnection import mindustry.world.Tile +import net.datafaker.Faker import org.junit.AfterClass import org.junit.Assert import org.junit.BeforeClass