06.02.2014, 20:34
Hi!
I tried to make an order, only for leaders, but that faction player when connecting the server I want to show "X Faction News: Tomorrow at 14:00 war", I tried to make onplayerlogin, but it gives me error and do not know how to do.
Command:
Error:
PS: i defined IDX ,but it still gives me errors
Sorry for my bad english. i need help
I tried to make an order, only for leaders, but that faction player when connecting the server I want to show "X Faction News: Tomorrow at 14:00 war", I tried to make onplayerlogin, but it gives me error and do not know how to do.
Command:
Код:
if(strcmp(cmd, "/factionanunt", true) == 0 || strcmp(cmd, "/facan", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pRank] < 5)
{
SendClientMessage(playerid, COLOR_GREY, " Trebuie sa ai rankul in factiune mai mare ca 5 !");
return 1;
}
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USAGE: (/fac)tionanunt [text]");
return 1;
}
if(PlayerInfo[playerid][pMember] == 1||PlayerInfo[playerid][pLeader] == 1)
{
format(string, sizeof(string), "Anunt Factiune: %s", result);
SendClientMessageToAll(COLOR_DBLUE, string);
}
}
return 1;
}
Код:
C:\Documents and Settings\vlad\Desktop\vladgm\vladgm\gamemodes\gf.p wn(1913 : error 017: undefined symbol "idx" C:\Documents and Settings\vlad\Desktop\vladgm\vladgm\gamemodes\gf.p wn(19140) : error 017: undefined symbol "idx" C:\Documents and Settings\vlad\Desktop\vladgm\vladgm\gamemodes\gf.p wn(19142) : error 017: undefined symbol "idx" C:\Documents and Settings\vlad\Desktop\vladgm\vladgm\gamemodes\gf.p wn(19142) : error 017: undefined symbol "idx" C:\Documents and Settings\vlad\Desktop\vladgm\vladgm\gamemodes\gf.p wn(19142) : error 029: invalid expression, assumed zero C:\Documents and Settings\pwaah\Desktop\vladgm\vladgm\gamemodes\gf. pwn(19142) : fatal error 107: too many error messages on one line
Sorry for my bad english. i need help


