1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-01-19 08:52:34 +01:00

Changed some output formatting

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%4028
This commit is contained in:
David Anderson 2005-04-19 06:17:47 +00:00
parent b06bded3ed
commit d51b47f3fe

View File

@ -53,7 +53,7 @@ CON_COMMAND(meta, "Metamod:Source Menu")
} else if (strcmp(command, "version") == 0) {
Msg("Metamod:Source version %s\n", SOURCEMM_VERSION);
Msg("Compiled on: %s\n", SOURCEMM_DATE);
Msg("Plugin interface version: %d/%d\n", PLAPI_VERSION, PLAPI_MIN_VERSION);
Msg("Plugin interface version: %d:%d\n", PLAPI_VERSION, PLAPI_MIN_VERSION);
Msg("http://www.sourcemm.net/\n\n");
return;
@ -146,12 +146,12 @@ CON_COMMAND(meta, "Metamod:Source Menu")
} else if (pl->m_Status == Pl_Running) {
Msg("Plugin %d is running.\n", id);
}
Msg("Name: \"%s\" by %s\n", pl->m_API->GetName(), pl->m_API->GetAuthor());
Msg("Version: %s\n", pl->m_API->GetVersion());
Msg("Description: %s\n", pl->m_API->GetDescription());
Msg("License: %s\n", pl->m_API->GetLicense());
Msg("URL: %s\n", pl->m_API->GetURL());
Msg("Details: API %03d, Date: %s\n", pl->m_API->GetApiVersion(), pl->m_API->GetDate());
Msg(" Name: \"%s\" by %s\n", pl->m_API->GetName(), pl->m_API->GetAuthor());
Msg(" Version: %s\n", pl->m_API->GetVersion());
Msg(" Description: %s\n", pl->m_API->GetDescription());
Msg(" License: %s\n", pl->m_API->GetLicense());
Msg(" URL: %s\n", pl->m_API->GetURL());
Msg(" Details: API %03d, Date: %s\n", pl->m_API->GetApiVersion(), pl->m_API->GetDate());
}
Msg("File: %s\n\n", pl->m_File.c_str());