Compatibility
Minecraft: Java Edition
26.1.x
1.21.x
Platforms
Tags
Creators
Details
Licensed GPL-3.0-only
Published 2 months ago
skkaemok
A Skript addon that lets you change player nametags, tablist names, chat names, and skins with a few simple syntaxes.
Features
- Change player nametags
- Change tablist and chat display names
- Supports non‑English languages
- Simple, lightweight syntax
Requirements
- Minecraft: 1.20+, 1.21+, 26.1+
- Skript: 2.10+
- ProtocolLib (required)
Installation
- Install Skript and ProtocolLib on your server.
- Drop the
skkaemokJAR into yourplugins/folder. - Restart the server.
Usage
Basic Syntax
set nametag of %player% to %string%
set nametag of %string% to %string%
reset nametag of %player%
reset nametag of %string%
set skin of %player% to %player%
set skin of %string% to %player%
set skin of %player% to %string%
set skin of %string% to %string%
set skin of %player% to url %string%
set skin of %string% to url %string%
reset skin of %player%
reset skin of %string%
Example: /nick Command
command /nick <text> <text>:
trigger:
if arg-1 is "reset":
reset nametag of player
stop
if arg-1 is "set":
if arg-2 is not set:
send "Usage: /nick set <nick>" to player
stop
set nametag of player to arg-2
stop
send "Usage: /nick <set|reset> <nick>" to player
Example: /skin Command
command /skin <text> [<text>]:
trigger:
if arg-1 is "reset":
reset skin of player
stop
if arg-1 is "set":
if arg-2 is not set:
send "Usage: /skin set <url|name>" to player
stop
if arg-2 starts with "http":
set skin of player to url arg-2
stop
set skin of player to arg-2
stop
send "Usage: /skin <set|reset> <url|name>" to player



