You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried my absolute best to reduce the problem-space and have provided the absolute smallest test-case possible.
I can always reproduce the issue with the provided description below.
Environment
Current AMX Mod X version: amxmodx-1.10.0-git5467-base-windows + amxmodx-1.10.0-git5467-cstrike-windows
Current Metamod version: metamod-bin-1.3.0.149
I have updated AMX Mod X to the latest version and it still happens.
I have updated AMX Mod X to the latest snapshot and it still happens.
I have updated Metamod to the latest version and it still happens.
Description
There is a missing localization string in the telemenu.txt file. Specifically, the string "To location:" is hardcoded in the code (telemenu.sma), but it is not present in the localization files. This issue makes it difficult to fully localize the menu for non-English languages.
Problematic Code (telemenu.sma)
if (g_menuOption[id] >0)// 1
{
keys |= MENU_KEY_7
len +=formatex(menuBody[len], charsmax(menuBody)-len, "^n7. To location: %.0f%.0f%.0f^n", g_menuOrigin[id][0], g_menuOrigin[id][1], g_menuOrigin[id][2])
}
The text was updated successfully, but these errors were encountered:
Help us help you
Environment
Description
There is a missing localization string in the telemenu.txt file. Specifically, the string "To location:" is hardcoded in the code (telemenu.sma), but it is not present in the localization files. This issue makes it difficult to fully localize the menu for non-English languages.
Problematic Code (telemenu.sma)
The text was updated successfully, but these errors were encountered: