14.06.2015, 21:05
I get:
For these two lines (In order)
Whole code:
Quote:
|
C:\Users\Callum.Acer\Desktop\South Central RP\gamemodes\roleplay.pwn(14493) : warning 217: loose indentation C:\Users\Callum.Acer\Desktop\South Central RP\gamemodes\roleplay.pwn(14507) : error 010: invalid function or declaration Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error. |
Код:
if (PlayerData[i][pHunger] >= 25)
Код:
return 1;
Код:
forward HungerThirstCheck(playerid);
public HungerThirstCheck(playerid)
{
foreach (new i : Player)
{
if (PlayerData[i][pHunger] >= 50)
{
GameTextForPlayer(i, "You are hungry, get something to eat.", 1, 6);
}
if (PlayerData[i][pHunger] >= 25)
{
GameTextForPlayer(i, "You are starving, get something to eat before you die.", 8, 8);
}
if (PlayerData[i][pThirst] >= 50)
{
GameTextForPlayer(i, "You are thirsty, get something to drink.", 8, 8);
}
if (PlayerData[i][pHunger] >= 25)
{
GameTextForPlayer(i, "You are becoming unstable, get something to drink before you dehydrate.", 8, 8);
}
}
}
return 1;
}



check again.