View Single Post
  #3  
Old 06-15-2014, 11:41 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,589
Default

The problem is I released this and forgot that I didn't give out the plugin::Message part of it.

Add this to your plugin file and tell me if it works:
Code:
sub Message {
    my $client = plugin::val('client');
    my $Message = $_[0];
    
    if($client) {
        $client->Message(315, "$Message");
    }
}
Reply With Quote