50DKP / FF2-Official

Freak Fortress 2 is a one versus all mod for Team Fortress 2. It is the successor to the Vs. Saxton Hale plugin.
https://forums.alliedmods.net/forumdisplay.php?f=154
GNU General Public License v3.0
54 stars 27 forks source link

New changelog should be accessible online #481

Closed naydef closed 4 years ago

naydef commented 5 years ago

Until now, FF2 changelog is part of the plugin itself and this fact affects the size of the plugin every new release. It's planned that every new release will have the respective changelog accessible with a MOTD opening the sourcemod page, containing the changelog.

Batfoxkid commented 5 years ago

Something like this? (Taken from this thread)

public Action:DoUrlVisible(client, String:url[128])
{
    new Handle:setup = CreateKeyValues("data");

    KvSetString(setup, "title", "Musicspam");
    KvSetNum(setup, "type", MOTDPANEL_TYPE_URL);
    KvSetString(setup, "msg", url);

    ShowVGUIPanel(client, "info", setup, true);
    CloseHandle(setup);
    return Plugin_Handled;
}
naydef commented 4 years ago

Online FF2 changelog is mostly done. Closing