From cc33d0efeba47da0bff706d5075406478d03f875 Mon Sep 17 00:00:00 2001 From: Julian Date: Thu, 27 Feb 2020 19:26:15 -0300 Subject: [PATCH] Update plugin meta info. --- src/dlls/h_export.cpp | 6 +++++- src/dlls/monster_api.cpp | 28 ++++++++++++++++------------ 2 files changed, 21 insertions(+), 13 deletions(-) diff --git a/src/dlls/h_export.cpp b/src/dlls/h_export.cpp index 17c3de3..920fb75 100644 --- a/src/dlls/h_export.cpp +++ b/src/dlls/h_export.cpp @@ -1,5 +1,9 @@ // -// botman's monster - MetaMOD plugin +// Monster Mod is a modification based on Botman's original "Monster" plugin. +// The "forgotten" modification was made by Rick90. +// This is an attempt to recreate the plugin so it does not become lost again. +// +// Recreated by Giegue. // // h_export.cpp // diff --git a/src/dlls/monster_api.cpp b/src/dlls/monster_api.cpp index f70dade..ffb83e0 100644 --- a/src/dlls/monster_api.cpp +++ b/src/dlls/monster_api.cpp @@ -1,5 +1,9 @@ // -// botman's monster - MetaMOD plugin +// Monster Mod is a modification based on Botman's original "Monster" plugin. +// The "forgotten" modification was made by Rick90. +// This is an attempt to recreate the plugin so it does not become lost again. +// +// Recreated by Giegue. // // monster_api.cpp // @@ -49,15 +53,15 @@ static META_FUNCTIONS gMetaFunctionTable = { // Description of plugin plugin_info_t Plugin_info = { - META_INTERFACE_VERSION, // interface version - "Monster", // name - "3.00.00", // version - "06/30/2002", // date - "botman ", // author - "http://planethalflife.com/botman/", // url - "MONSTER", // logtag - PT_CHANGELEVEL, // (when) loadable - PT_CHANGELEVEL, // (when) unloadable + META_INTERFACE_VERSION, // interface version + "MonsterMod", // name + "UNVERSIONED", // version | We are not going to give it a version yet. -Giegue + "26/02/2020", // date in DD/MM/YYYY format + "botman, Rick90, Giegue", // original authors + recreation by... + "https://github.com/JulianR0/monstermod-redo", // url + "MONSTER", // logtag + PT_CHANGELEVEL, // (when) loadable + PT_CHANGELEVEL, // (when) unloadable }; char *VNAME=Plugin_info.name; @@ -115,9 +119,9 @@ C_DLLEXPORT int Meta_Attach(PLUG_LOADTIME now, META_FUNCTIONS *pFunctionTable, memcpy(pFunctionTable, &gMetaFunctionTable, sizeof(META_FUNCTIONS)); gpGamedllFuncs=pGamedllFuncs; - LOG_MESSAGE(PLID, "%s v%s, %s", VNAME, VVERSION, VDATE); + LOG_MESSAGE(PLID, "%s %s, %s", VNAME, VVERSION, VDATE); LOG_MESSAGE(PLID, "by %s", VAUTHOR); - LOG_MESSAGE(PLID, " %s", VURL); + LOG_MESSAGE(PLID, "%s", VURL); LOG_MESSAGE(PLID, "compiled: %s CDT", COMPILE_TIME); LOG_CONSOLE(PLID, "[%s] %s v%s, %s", VLOGTAG, VNAME, VVERSION, VDATE);