iLoco
Пишу плагины за печеньки 🍪🍪🍪
- Сообщения
- 2,265
- Реакции
- 1,323
Помогите перевести под sourcemod 1.8, часть кода. Сам код написан sm 1.6
PHP:new i = 1; new Handle:hFile = OpenConfig(); decl String:sTemp[8]; decl Country[322]; for (IntToString(i, sTemp, sizeof(sTemp)); KvJumpToKey(hFile, sTemp, false); i++ ,IntToString(i, sTemp, sizeof(sTemp))) { KvGetString(hFile, "url", Country, 192, ""); TrimString(Country); if (strlen(Country) > 0 && KvGetNum(hFile, "enabled", 1)) { KvGetString(hFile, "country", Country[192], 128, "all"); Country[320] = KvGetNum(hFile, "reversed", 0) ? 1:0; Country[321] = KvGetNum(hFile, "showtime", 0); PushArrayString(g_trLinks, Country, -1); } KvRewind(hFile); }
C-подобный:
int i = 1;
Handle hFile = OpenConfig();
char sTemp[8], Country[322];
for (IntToString(i, sTemp, sizeof(sTemp)); KvJumpToKey(hFile, sTemp, false); i++ ,IntToString(i, sTemp, sizeof(sTemp)))
{
KvGetString(hFile, "url", Country, 192, "");
TrimString(Country);
if (strlen(Country) > 0 && KvGetNum(hFile, "enabled", 1))
{
KvGetString(hFile, "country", Country[192], 128, "all");
Country[320] = KvGetNum(hFile, "reversed", 0) ? 1:0;
Country[321] = KvGetNum(hFile, "showtime", 0);
PushArrayString(g_trLinks, Country, -1);
}
KvRewind(hFile);
}