Проверенный
Участник
- Сообщения
- 2,288
- Реакции
- 1,739
- Помог
- 31 раз(а)
if(file_exists("addons/amxmodx/configs/maps.ini")) // проверяем есть ли файл
{
new map_names[][] // массив для карт
new num // счетчик строк
new file = fopen("addons/amxmodx/configs/maps.ini", "a+") //открываем файл
while(file && !feof(file)) //записываем все строки файла в массив
{
fgets(file, map_names[num][], charsmax(map_names[num][]))
num++
}
if(file) fclose(file) //закрываем файл
new X = 5; //количество строк в меню
new i_Menu = menu_create("Меню карт", "menu_handler") //объявляем меню
for(new i = 0; i < X; i++){
new R = random_num (0,num) // рандомный выбор карт
menu_additem(i_Menu, map_names[R][], i, 0) //создаем пункт меню
}
menu_display(id, i_Menu, 0)
}
else log_amx("файл не был открыт или его нет")
Host_Error: PF_precache_model_I: Model 'models/de_alps/mad_tree1.mdl' failed to precache because the item count is over the 512 limit.
Reduce the number of brush models and/or regular models in the map to correct this.
L 12/17/2017 - 03:32:24: FATAL ERROR (shutting down): Host_Error: PF_precache_model_I: Model 'models/de_alps/mad_tree1.mdl' failed to precache because the item count is over the 512 limit.
Reduce the number of brush models and/or regular models in the map to correct this.
FATAL ERROR (shutting down): Host_Error: PF_precache_model_I: Model 'models/de_alps/mad_tree1.mdl' failed to precache because the item count is over the 512 limit.
Reduce the number of brush models and/or regular models in the map to correct this.