06.09.2012, 16:02
aTA Tendi Tem Esses 3 Codigos qual й deles ?
PHP код:
forward IsACCobra(playerid);
forward IsACCobraCar(carid);
PHP код:
if(IsACCobraCar(newcar))
{
if(!IsACCobra(playerid))
{
SendClientMessage(playerid, COLOR_COBRA, "Vocк nгo й um Cobra, por isso nгo tem a chave desse veнculo!");
RemovePlayerFromVehicleEx(playerid);
}
}
PHP код:
public IsACCobraCar(carid)
{
if(carid >= 560 && carid <=560)
{
return 1;
}
return 0;
}
public IsACCobra(playerid)
{
if(IsPlayerConnected(playerid))
{
new Lider = PlayerInfo[playerid][pLider];
new member = PlayerInfo[playerid][pMembro];
if(member==24)
{
return 1;
}
if(Lider==24)
{
return 1;
}
}
return 0;
}

