This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.youtube.com/watch?v=tniTpUCwCYc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blocked-cmds: | |
- /pl | |
- /plugins |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Allows you to use basic Methods in the Player class in your message | |
* without having to concatenate in Java. | |
* | |
* */ | |
static public void informPlayer(String msg, Player val) { | |
msg = msg.replaceAll("[playername]",val.getName()); |
NewerOlder