1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-09 08:52:51 +00:00

Teleporter implementation

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-22 02:04:35 -03:00
parent b3ff0795ec
commit 87ce7bb987
31 changed files with 900 additions and 31 deletions

View File

@@ -91,6 +91,17 @@ public class MarkupTag {
return this;
}
/**
* Adds an internal text from an code
*
* @param text
* the text
* @return this {@link MarkupTag}
*/
public MarkupTag textcode(int code) {
return text("&$" + Integer.toString(code) + ";");
}
/**
* Adds a plain text to the tag, use the color formatting.
*