03.10.2012, 12:09
Hey guys i got a problem in here
i get this error when i complile
By the way here is the code
i get this error when i complile
Код:
C:\Users\Daniel.Daniel-PC\samp\server\gamemodes\ricaniel.pwn(103) : error 047: array sizes do not match, or destination array is too small Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
pawn Код:
enum sfiles
{
botname[129]
}
new sdata[sfiles];
if(!fexist(SERVER_DATA))
{
file_Create(SERVER_DATA);
if(file_Open(SERVER_DATA))
{
file_SetStr("bot_name","RicaNiel");
file_Save(SERVER_DATA);
file_Close();
}
}
else
{
if(file_Open(SERVER_DATA))
{
sdata[botname] = file_GetStr("bot_name");
file_Save(SERVER_DATA);
file_Close();
}
}