Hello. Wondering if you would consider including an API endpoint to allow devs to pull your data and put it in their own styled notifications. Cheers.
API Read DataSolved
that is a possibility i can take like a reversed feed containing just the data if valid etc etc.
Added in 2.4.0
Interface.Call("OnKillFeedMessageReceived" , text);
declare the plugin
then you can use a void like
void OnKillFeedMessageReceived(string text)
{
Puts(text);
}
Locked automatically