[help] buyable interior system
#8

pawn Код:
CMD:join(playerid,params[])
{
    for(new i = 0; i < MAX_CASE; i++)
    {
        new nome[24];
        GetPlayerName(playerid,nome,24);
        if(IsPlayerInRangeOfPoint(playerid,4.0,cinfo[i][posx],cinfo[i][posy],cinfo[i][posz]))
        {
            if(cinfo[i][acquisita] == 1 && strcmp(cinfo[i][proprietario],nome) == 0)
            {
                SetPlayerInterior(playerid,cinfo[i][interior]);
                SetPlayerPos(playerid,cinfo[i][posxu]+3,cinfo[i][posyu],cinfo[i][poszu]);
                SetPlayerVirtualWorld(playerid,cinfo[i][virtualworld]);
                playerincasaid[playerid] = 1;
            }
            else if(cinfo[i][acquisita] == 1 && strcmp(cinfo[i][proprietario],nome) != 0)
            {
                if(cinfo[i][chiusa] == 1) return SendClientMessage(playerid,-1,"[SERVER] You can't join in this house because it is closed.");
                if(cinfo[i][chiusa] == 0)
                {
                    SetPlayerInterior(playerid,cinfo[i][interior]);
                    SetPlayerPos(playerid,cinfo[i][posxu]+3,cinfo[i][posyu],cinfo[i][poszu]);
                    SetPlayerVirtualWorld(playerid,cinfo[i][virtualworld]);
                    playerincasaid[playerid] = 1;
                }
            }
        }
        else
        {
            SendClientMessage(playerid,-1,"[SERVER] You aren't near a house");
        }
        return 1;
    }
    return 1;
}
Reply


Messages In This Thread
[help] buyable interior system - by Galletziz - 18.04.2014, 17:48
Re: [help] buyable interior system - by Galletziz - 18.04.2014, 18:31
Re: [help] buyable interior system - by Konstantinos - 18.04.2014, 19:22
Re: [help] buyable interior system - by Galletziz - 18.04.2014, 19:36
Re: [help] buyable interior system - by Konstantinos - 18.04.2014, 19:40
Re: [help] buyable interior system - by Galletziz - 18.04.2014, 19:46
Re: [help] buyable interior system - by Konstantinos - 18.04.2014, 20:02
Re: [help] buyable interior system - by Galletziz - 18.04.2014, 20:06
Re: [help] buyable interior system - by Galletziz - 18.04.2014, 20:16
Re: [help] buyable interior system - by Konstantinos - 18.04.2014, 20:31

Forum Jump:


Users browsing this thread: 1 Guest(s)