17.12.2009, 12:04
pawn Код:
enum pInfo
{
// ...
bool:pMuted,
// ...,
};
// OnPlayerLogin
if(!strcmp(key , "Muted" , true))
{
val = ini_GetValue(Data);
PlayerInfo[playerid][pMuted] = strval(val); // warning 213: tag mismatch
}
enum pInfo
{
// ...
bool:pMuted,
// ...,
};
// OnPlayerLogin
if(!strcmp(key , "Muted" , true))
{
val = ini_GetValue(Data);
PlayerInfo[playerid][pMuted] = strval(val); // warning 213: tag mismatch
}
Originally Posted by Angel φ
Lol , i know that ... but i though there's a function ... something like boolval :P
|
PlayerInfo[playerid][pMuted] = bool:strval(val); // warning 213: tag mismatch