}
CMD:createhouse(playerid, params[])
{
new string[128];
if(!IsPlayerLoggedIn(playerid) || PlayerInfo[playerid][pAsshole] == 1) return SendClientMessage(playerid, COLOR_GREY, "You are not allowed to use command.");
if(PlayerInfo[playerid][pAdmin] < 3) return SendClientMessage(playerid, COLOR_GREY, "You are not an authorized to use this command.");
for(new idx=1; idx<MAX_HOUSES; idx++)
{
if(!HouseInfo[idx][hLevel])
{
// Getting Business Setup
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
// Making Business
HouseInfo[idx][hLevel] = 1;
HouseInfo[idx][hPrice] = 50000;
HouseInfo[idx][hStatus] = 0;
format(HouseInfo[idx][hOwner], 32, "The State");
HouseInfo[idx][hX] = X;
HouseInfo[idx][hY] = Y;
HouseInfo[idx][hZ] = Z;
HouseInfo[idx][hMoney] = 0;
HouseInfo[idx][hMaterials] = 0;
HouseInfo[idx][hWeed] = 0;
HouseInfo[idx][hcocaine] = 0;
HouseInfo[idx][hGun][0] = 0;
HouseInfo[idx][hGunAmmo][0] = 0;
HouseInfo[idx][hGun][1] = 0;
HouseInfo[idx][hGunAmmo][1] = 0;
HouseInfo[idx][hGun][2] = 0;
if(HouseInfo[idx][hLevel] > PlayerInfo[playerid][pLevel] return SendClientMessage(playerid, COLOR_GREY, "Your level isn't high enough");
You need to make something like that.
Код:
if(HouseInfo[idx][hLevel] > PlayerInfo[playerid][pLevel] return SendClientMessage(playerid, COLOR_GREY, "Your level isn't high enough"); |
new string[128];