227
Read more on poggitPlayerSize is a customizable PocketMine-MP plugin that allows players to adjust their own size or become invisible using simple commands. Whether you want to be larger, smaller, or hidden, PlayerSize provides an easy and flexible way to modify your in-game appearance.
config.yml.| Command | Alias | Description |
|---|---|---|
/playersize |
/ps |
Main command to manage player size. |
/playersize help |
/ps help |
Display help information. |
/playersize normal |
/ps normal |
Set your size to normal. |
/playersize small |
/ps small |
Set your size to small. |
/playersize giant |
/ps giant |
Set your size to giant. |
/playersize hide |
/ps hide |
Toggle your invisibility. |
Download the Plugin:
Place in Plugins Directory:
PlayerSize folder into your PocketMine-MP plugins directory.Restart the Server:
config.yml will be generated.Customize the plugin settings by editing the config.yml file located in the plugins/PlayerSize directory.
# PlayerSize Configuration
# Scale settings for different sizes
scales:
normal: 1.0
small: 0.5
giant: 2.0
# Command aliases
aliases:
playersize: [ps]
# Messages sent to players
messages:
enabled: true
prefix: "§e[PlayerSize] §f"
help:
title: "§a--- PlayerSize Help ---"
commands:
- "§6/playersize help §f- Show this help message."
- "§6/playersize normal §f- Set your size to normal."
- "§6/playersize small §f- Set your size to small."
- "§6/playersize giant §f- Set your size to giant."
- "§6/playersize hide §f- Toggle your invisibility."
no_permission: "§cYou do not have permission to use this command."
size_set:
normal: "§aYour size has been set to normal."
small: "§aYour size has been set to small."
giant: "§aYour size has been set to giant."
hidden: "§aYou are now hidden."
unhidden: "§aYou are now visible."
unknown_command: "§cUnknown command. Use /ps help for a list of commands."
# Permissions
permissions:
playersize.use:
description: "Allows using the PlayerSize commands."
default: false
playersize.help:
description: "Allows viewing help information for PlayerSize."
default: true
playersize.normal:
description: "Allows setting player size to normal."
default: true
playersize.small:
description: "Allows setting player size to small."
default: true
playersize.giant:
description: "Allows setting player size to giant."
default: true
playersize.hide:
description: "Allows toggling invisibility."
default: falseScales:
normal: Default player size (1.0).small: Reduced player size (0.5).giant: Increased player size (2.0).Aliases:
/playersize can be accessed via /ps.Messages:
§a for green).Permissions:
Manage who can use the PlayerSize commands using a permissions plugin like LuckPerms. Below are the default permission nodes:
| Permission | Description | Default |
|---|---|---|
playersize.use |
Allows using the PlayerSize commands. | op |
playersize.help |
Allows viewing help information. | op |
playersize.normal |
Allows setting player size to normal. | op |
playersize.small |
Allows setting player size to small. | op |
playersize.giant |
Allows setting player size to giant. | op |
playersize.hide |
Allows toggling invisibility. | op |
Set to Normal:
/playersize normal
# or
/ps normalSet to Small:
/playersize small
# or
/ps smallSet to Giant:
/playersize giant
# or
/ps giant/playersize hide
# or
/ps hide/playersize help
# or
/ps helpContributions are welcome! If you'd like to contribute to PlayerSize, please follow these steps:
Fork the Repository:
Create a Feature Branch:
git checkout -b feature/YourFeatureNameCommit Your Changes:
git commit -m "Add your message here"Push to Your Fork:
git push origin feature/YourFeatureNameCreate a Pull Request: