error on compile
#1

help G:\DRIFT\gamemodes\Drift-BG.pwn(8433) : warning 202: number of arguments does not match definition
G:\DRIFT\gamemodes\Drift-BG.pwn(8433) : warning 202: number of arguments does not match definition
G:\DRIFT\gamemodes\Drift-BG.pwn(8433) : warning 202: number of arguments does not match definition
G:\DRIFT\gamemodes\Drift-BG.pwn(8433) : warning 202: number of arguments does not match definition
G:\DRIFT\gamemodes\Drift-BG.pwn(8433) : warning 202: number of arguments does not match definition
G:\DRIFT\gamemodes\Drift-BG.pwn(1244 : error 017: undefined symbol "ini_createFile"
G:\DRIFT\gamemodes\Drift-BG.pwn(12449) : error 017: undefined symbol "ini_openFile"
G:\DRIFT\gamemodes\Drift-BG.pwn(12451) : error 017: undefined symbol "ini_setString"
G:\DRIFT\gamemodes\Drift-BG.pwn(12452) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12454) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12455) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12456) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12457) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(1245 : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12459) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12460) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12461) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12462) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12463) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12464) : error 017: undefined symbol "ini_setInteger"
G:\DRIFT\gamemodes\Drift-BG.pwn(12465) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12466) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12467) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(1246 : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12469) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12470) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12471) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12472) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12473) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12474) : error 017: undefined symbol "ini_setFloat"
G:\DRIFT\gamemodes\Drift-BG.pwn(12475) : error 017: undefined symbol "ini_setFloat"

Compilation aborted.Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


26 Errors.




public OnPlayerConnect(playerid) // При входе на сервер
{
SnowONOFF[playerid]=0; // Для снега
PlayAudioStreamForPlayer(playerid, "Сайт с музика",0.0, 0.0, 0.0, 0.0,0); // Песня при заходе на сервер
Checkpoint[playerid]= 0; // Для работы дальнобойщика
//=============Функция, която не позволява във ника да има повечер от 3 цифри===
new PlName[MAX_PLAYER_NAME],count;
GetPlayerName(playerid,PlName,sizeof(PlName));
for (new i; i < strlen(PlName); i++)
{
if (PlName[i] >= '0' && PlName[i] <= '9')
{
count++;
if(count == 4)
{
SendClientMessage(playerid,0xE0EA64AA,"Във вашия ник има повече от 3 цифри!");
Kick(playerid);
break;
}
}
}
Reply
#2

Do you have the YSI Package? And the includes?

Also, show me your code includes for YSI if you can..
Reply
#3

You have missed a brace somewhere.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)