Skip to content

Instantly share code, notes, and snippets.

@KageDesu
Created October 30, 2025 13:53
Show Gist options
  • Select an option

  • Save KageDesu/192e2359147c9979d344cddbec364e1f to your computer and use it in GitHub Desktop.

Select an option

Save KageDesu/192e2359147c9979d344cddbec364e1f to your computer and use it in GitHub Desktop.
Nameplates (ANETZ Extension)

Nameplates (ANETZ Extension)

This extension plugin requires Alpha NET Z to work.

⚠️ Information valid for version 0.9 and above

Overview

AlphaNETZ_PlayersNameplates

Plugin Parameters

If you want to see a nameplate above your own character, set My nameplate? to true as well.

ANETZ_PP_Nameplates

Styles

You can create and customize different nameplate styles to personalize the appearance of player nameplates.

Creating a Custom Style

  1. Open the plugin parameters and navigate to the Styles parameter

  2. Add a new style entry

  3. Configure the following properties:

    • Style ID: A unique identifier for your style (e.g., "warrior", "mage", "default")
    • Margins: Offset position of the nameplate relative to the character sprite
    • Background Image: Optional image to use as the nameplate background
      • Background Image Margins: Offset of the background image relative to the nameplate
    • Fill: Background fill color and frame settings
      • Fill Margins: Offset of the background fill relative to the nameplate
    • Text: Text formatting settings (font, size, color, etc.)

Assigning Styles to Actors

To assign a style to a specific Actor, use the script call:

nAPI.setNameplateStyle(ACTOR_ID, STYLE_ID)

Example:

nAPI.setNameplateStyle(1, "warrior")  // Assigns "warrior" style to Actor 1
nAPI.setNameplateStyle(2, "mage")     // Assigns "mage" style to Actor 2

You can find an example event in the Demo project on the nAPI (script calls) map.

ANETZ_NameplatesExample

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment