при компиляции выдает ошибку помогите исправить
Код
#include < amxmodx >
new ctime[64], cdate[64]
public plugin_init ( )
{
register_plugin ( "Timeleft Hud" , "1.0" , "holy" );
set_task ( 1.0 , "Show_TimeLeft" , _ , _ , _ , "b" );
}
public Show_TimeLeft ( )
{
get_time("%H:%M:%S", ctime, 63)
get_time("%d.%m.%Y", cdate, 63)
set_hudmessage (0, 255, 127, 0.83, 0.01, 0, 1.0, 1.0, 0.1, 0.2, -1);
show_hudmessage ( 0 , "• МЕНЮ СЕРВЕРА НА F3 •^n• ИГРАТЬ НА КАРТЕ - %d МИНУТ%s •^n• ВРЕМЯ - %s | ДАТА - %s •" , get_timeleft ( ) / 60 , ( get_timeleft ( ) / 60 ) == 0 ? "" : ( get_timeleft ( ) / 60 ) == 1 ? "у" : ( get_timeleft ( ) / 60 ) <= 4 ? "ы" : "", ctime, cdate );
}
вот ошибка компиляции
//AMXXPC compile.exe
// by the AMX Mod X Dev Team
//// only_data.sma
// F:\¦¦++¦L¦¦-\¦T\3782_Compiler_amxmod\Compiler amxmodx 1.8.3\only_data.sma(14) : warning 217: loose indentation
// F:\¦¦++¦L¦¦-\¦T\3782_Compiler_amxmod\Compiler amxmodx 1.8.3\only_data.sma(15) : warning 217: loose indentation
// Header size: 240 bytes
// Code size: 748 bytes
// Data size: 1316 bytes
// Stack/heap size: 16384 bytes; estimated max. usage=39 cells (156 bytes)
// Total requirements: 18688 bytes
//
// 2 Warnings.
// Done.
//
// Compilation Time: 0,17 sec
// ----------------------------------------
Press enter to exit ...