GTA Közösség - A magyar GTA fórum

San Andreas Multiplayer (SA-MP) => SA-MP: Szerverfejlesztés => Segítségkérés => A témát indította: inf - 2013. október 16. - 21:00:08

Cím: Error
Írta: inf - 2013. október 16. - 21:00:08
Erre miért kapom ezeket a hibákat?
 
error 001: expected token: \";\", but found \"-integer value-\"
warning 215: expression has no effect
error 001: expected token: \";\", but found \"-integer value-\"
warning 215: expression has no effect

 

public OnPlayerDeath(playerid, killerid, reason)
{
   JatekosInfo[killerid][Oles] ++ 1;
   JatekosInfo[playerid][Halal] ++ 1;
return 1;
}
Cím: Error
Írta: Norbivar - 2013. október 16. - 21:10:48
Mert a \'++\' kifejezés alapból az 1-el történõ növelést fejezi ki, mögé számot már nem kell\\szabad írni.
Azaz:
 
public OnPlayerDeath(playerid, killerid, reason)
{
   JatekosInfo[killerid][Oles]++;
   JatekosInfo[playerid][Halal]++;
       return 1;
}
Cím: Error
Írta: ZyZu. - 2013. október 16. - 21:15:45
[mod]Ide írj http://sampforum.hu/index.php?topic=26421.0 ezt zárom.[/mod]