25.12.2015, 09:55
Hello, can someone solve me this please?
PHP код:
stock GivePHealth(playerid, health)
{
new Float:currHealth, Float:nhealth;
GetPlayerHealth(playerid, currHealth);
nhealth = currHealth + health;
SetPHealth(playerid, nhealth); //line 224
}
stock SetPHealth(playerid, health)
{
SetPlayerHealth(playerid, health);
pInfo[playerid][Health] = health;
}
PHP код:
public OnPlayerGiveDamage(playerid, damagedid, Float: amount, weaponid, bodypart)
{
if(pInfo[damagedid][AOD] == 1)
{
GameTextForPlayer(playerid, "~g~DO NOT SHOOT AOD's", 3000, 3);
GivePHealth(playerid, amount); // line 222
}
return 1;
}
Код:
C:\Program Files\MyServer\pawno\include\required/stocks.inc(224) : warning 213: tag mismatch C:\Program Files\MyServer\gamemodes\WGCNR.pwn(222) : warning 213: tag mismatch