diff --git a/cstrike/addons/amxmodx/scripting/ReDeathmatch.sma b/cstrike/addons/amxmodx/scripting/ReDeathmatch.sma index f6df36f..1e9d59c 100644 --- a/cstrike/addons/amxmodx/scripting/ReDeathmatch.sma +++ b/cstrike/addons/amxmodx/scripting/ReDeathmatch.sma @@ -208,8 +208,27 @@ public ConCmd_redm_status(const player, const level, const commandId) { public ConCmd_redm(const player, const level, const commandId) { SetGlobalTransTarget(player) + console_print(player, " _____ _____ __ __") + console_print(player, "| __ \ | __ \| \/ |") + console_print(player, "| |__) |___| | | | \ / |") + console_print(player, "| _ // _ \ | | | |\/| |") + console_print(player, "| | \ \ __/ |__| | | | |") + console_print(player, "|_| \_\___|_____/|_| |_|") + console_print(player, "[Re:DM] Version `%s`", REDM_VERSION) - console_print(player, "[Re:DM] https://github.com/wopox1337/ReDeathmatch") + console_print(player, "[Re:DM] https://redeathmatch.github.io") + + new bool: isManualBuild = (strfind(REDM_VERSION, "manual") != -1) + if (!isManualBuild) { + new bool: isRelease = (strlen(REDM_VERSION_PATCH) < 4) + + console_print(player, + "[Re:DM] https://github.com/ReDeathmatch/ReDeathmatch_AMXX/%s/%s", + isRelease ? "releases/tag" : "commit", + isRelease ? REDM_VERSION : REDM_VERSION_PATCH + ) + } + console_print(player, "[Re:DM] Copyright (c) 2024 Sergey Shorokhov") if (!cmd_access(player, level, commandId, 1, .accesssilent = true))