06.04.2018, 15:31
Hello people from samp community.
I have a few of warnings, which i really dont want there in my list.
Anyone can help me?
Warnings:
OPSP.inc lines >
217 >
227>
My gamemodes line:
16519 >
I have a few of warnings, which i really dont want there in my list.
Anyone can help me?
Warnings:
Код HTML:
C:\Users\Lietotājs\Desktop\TACTIC.ITP\pawno\include\OPSP.inc(217) : warning 201: redefinition of constant/macro (symbol "SetPlayerHealth") C:\Users\Lietotājs\Desktop\TACTIC.ITP\pawno\include\OPSP.inc(227) : warning 201: redefinition of constant/macro (symbol "SetPlayerArmour") C:\Users\Lietotājs\Desktop\TACTIC.ITP\gamemodes\tactic.pwn(16519) : warning 201: redefinition of constant/macro (symbol "ShowPlayerDialog")
217 >
PHP код:
// SetPlayerHealth
stock SetPlayerHealthEx(playerid, Float:health)
{
// RL_phealth[playerid]=health;
RL_UpdatedHealth[playerid]=true;
return SetPlayerHealth(playerid, health);
}
#define SetPlayerHealth SetPlayerHealthEx
PHP код:
// SetPlayerArmour
stock SetPlayerArmourEx(playerid, Float:armour)
{
// RL_parmour[playerid]=armour;
RL_UpdatedHealth[playerid]=true;
return SetPlayerArmour(playerid, armour);
}
#define SetPlayerArmour SetPlayerArmourEx
16519 >
PHP код:
#define ShowPlayerDialog SPD