-
Notifications
You must be signed in to change notification settings - Fork 5
Placeholders
jojoe77777 edited this page Sep 26, 2015
·
22 revisions
This is just an API/Placeholder list for other plugins to use.
`
$manager = $this->getServer()->getPluginManager();
/* Input: "Your ip is {ip}" */
$msg = "Your ip is {ip}";
if(($placeholders = $manager->getPlugin("Placeholders")) !== null){
/* Output: "Your ip is 192.168.0.18" (Player's IP) */
$msg = $placeholders->Placeholders($msg, $player);
}
`