Mineuniverse
Log in Register
Plugins

Individual Signs

Displays text on signs individual differently for each player looking at it.
by blablubb
Download Claim this project
31,478 downloads
0 likes
Updated Jun 30, 2026
0 hypes
Informational

Description

This plugin displays the text on signs for each player individual differently.

By default this plugin only replaces [PLAYER] on signs with the name and [DISPLAY] with the nick name of the player looking at it.
The permission nodes to create signs containing those tags are insigns.create.player and insigns.create.display.

However InSigns also includes an API for developers of other plugins to easily add own player-specific sign content.

This plugin could for example be used for individual greeting signs at your spawn. Your players will be amazed to see their own name on a sign!

IMPORTANT

This plugin needs ProtocolLib to work.
Make sure you have installed the right version of ProtocolLib.
This plugin should stay compatible with further versions of minecraft and bukkit as long as ProtocolLib doesn't have to change anything on it's API which InSigns is relying on, and the minecraft protocol isn't changing anything sign-related.

Quick Presentation by VariationVault

 

For plugin developers: easy-to-use API

Here is a small example of how you can use this in your own plugin to display player-specific values on signs.
1.) First of all: add the IndividualSigns jar to your build path (just like you do it with the bukkit.jar)
2.) You can then create a listener which listens for the SignSendEvent (just like you create listeners for bukkit events): This event gets called every time the server is about to update the sign contents for a player.
3.) The event provides easy methods to get the current sign text and to change it:

  • getPlayer() - Gets the player which receives the sign packet.
  • getLocation() - Gets the location of the sign which text is being sent.
  • getLine(int index) - Gets the line of text at the specified index (0-3). The lines are in json format.
  • setLine(int index, String line) - Sets the line of text at the specified index. Has to be in proper json format.
  • isModified() - Whether or not this event was modified by some plugin.
  • setCancelled(boolean cancelled) - If the event is cancelled the sign contents won't get updated for the affected player, leaving it at their current content (blank if all SignSendEvents get cancelled).
  • isCancelled() - Checks whether or not some plugin cancelled this event already.

Example usage of the event to replace "[PLAYER]" with the player's name:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
public class SignSendListener implements Listener {

    public SignSendListener(Plugin plugin) {
        Bukkit.getServer().getPluginManager().registerEvents(this, plugin);
    }

    @EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
    public void onSignSend(SignSendEvent event) {
        for (int i = 0; i < 4; i++) {
            String line = event.getLine(i);
            if (line.contains("[PLAYER]")) {
                event.setLine(i, line.replace("[PLAYER]", event.getPlayer().getName()));
            }
        }
    }
}

That's it. The InSigns-Plugin will handle all the needed packet manipulation for you.

Some other useful utilities provided by InSigns are:

  • The SimpleChanger class which can be used to easily create a listener for simple key->value replacements and permission checks during sign creation. Example for the built-in [PLAYER] -> playerName replacement:
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
@Override
public void onEnable() {
    Plugin insignsPlugin = getServer().getPluginManager().getPlugin("InSigns");
    if ((insignsPlugin != null) && insignsPlugin.isEnabled()) {
        // Replaces "[PLAYER]" with the player's name on signs and checks for the 'insigns.create.player' permission whenever a player tries to create a sign with "[PLAYER]" on it
        new SimpleChanger(this, "[PLAYER]", "insigns.create.player") {
            @Override
            public String getValue(Player player, Location location) {
                return player.getName();
            }
        };
        getLogger().info("Plugin 'InSigns' found. Using it now.");
    } else {
        getLogger().info("Plugin 'InSigns' not found. Additional sign features disabled.");
    }
}

 

Plugins using InSigns

Let me know if your plugin uses InSigns and you want to be mentioned here.

Statistics

This plugin uses bStats to collect anonymous usage statistics to determine the how many servers are using the plugin and with which minecraft versions it is used with the most. All collected information can be publicly viewed here: https://bstats.org/plugin/bukkit/InSigns

You can disable bStats for all plugins on your server by editing the file plugins/bStats/config.yml, or alternatively disable it only for IndividualSigns by setting 'metrics-stats' to 'false' inside InSigns' config.

Donations

If you like this plugin, consider supporting its development by making a donation.
Thanks in advance!

IndividualSigns v2.9.2
MC 1.20.6, 1.20.4, 1.21, 1.20.5, 1.20.2, 1.20.3, 1.20.1
Release 2024-09-07 Get
IndividualSigns v2.9.1
MC 1.18.1
Release 2022-01-07 Get
IndividualSigns v2.9.0
MC 1.18.1
Release 2022-01-04 Get
IndividualSigns v2.8.0
MC 1.17
Release 2021-08-08 Get
IndividualSigns v2.7.0
MC 1.14
Release 2019-06-17 Get
IndividualSigns v2.6.0
MC 1.13
Release 2018-09-27 Get
IndividualSigns v2.5
MC 1.9, 1.11, 1.12, 1.10
Release 2016-12-22 Get
IndividualSigns v2.4
MC 1.9
Release 2016-05-15 Get
IndividualSigns v2.3
MC 1.8.1, 1.8
Release 2015-01-26 Get
IndividualSigns v2.2
MC 1.8.1, 1.8
Release 2015-01-24 Get
IndividualSigns v2.1
MC 1.8.1, 1.8
Release 2015-01-02 Get
IndividualSigns v2.0
MC 1.7.2, CB 1.7.2-R0.2, 1.7.4
Release 2014-01-14 Get
IndividualSigns v1.5
MC 1.7.2, 1.7.4
Release 2013-12-18 Get
InSigns v1.4
MC 1.6.2, 1.5.2, 1.6.4
Release 2013-05-04 Get
InSigns v1.3
MC 1.5.1, 1.4.7, 1.5.0
Release 2013-04-20 Get
InSigns v1.2
MC 1.5.1, 1.4.7, 1.5.0
Release 2013-03-30 Get
InSigns v1.1
MC CB 1.4.7-R1.0, 1.5.0
Release 2013-03-05 Get
InSigns v0.9
MC CB 1.4.7-R1.0
Release 2013-02-15 Get
InSigns v1.0
MC CB 1.4.7-R1.0
Release 2013-02-15 Get
InSigns v0.8
MC CB 1.4.6-R0.1
Release 2012-12-28 Get
InSigns v0.7
MC CB 1.4.5-R1.0
Release 2012-12-19 Get
InSigns v0.6
MC CB 1.4.2-R0.2
Release 2012-11-09 Get
InSigns v0.5
MC CB 1.3.2-R2.0
Release 2012-10-20 Get
InSigns v0.4
MC CB 1.3.2-R1.0
Release 2012-10-13 Get
InSigns v0.2
MC CB 1.3.2-R0.1
Release 2012-09-20 Get
InSigns v0.1
MC CB 1.3.2-R0.1
Release 2012-09-18 Get

More from blablubb

Home Stations
8,783
Dreamworld
7,429
Anti X-Ray
612,819
Paintball War Edition
299,299
Shopkeepers
2,935,637
Billboards
13,280

You Might Also Like

Craftipedia
Craftipedia - View crafting recipes in-game!
97,126
Dynmap-AdminCmd
Show homes/warps from AdminCmd on Dynmap maps
9,912
ClockSign
Create signs that show the time of your world(s), or real-life timezones
9,789
PingNachricht
A easy to use PlayerCounter edit-plugin
9,687
VillageInfo
Displays info about current village
9,596
Askyblock-holostats
Display the top10 players from Askyblock plugin as a hologram
9,538