Cant remove the siren object [+rep for answer]
#10

Use my one( you can either convert it, or use zcmd)
pawn Код:
CMD:siren(playerid, params[]) {
    if(PlayerInfo[playerid][pGroup]][gGroupType] == 1 || PlayerInfo[playerid][pGroup]][gGroupType] == 2 || PlayerInfo[playerid][pGroup]][gGroupType] == 4) {
        new string[128], type;
        new VID = GetPlayerVehicleID(playerid);
        if(sscanf(params, "d", type))
        {
            SendClientMessage(playerid, COLOR_WHITE, "USAGE: /siren [type]");
            SendClientMessage(playerid, COLOR_GREY, "Type: 1 = Inside, 2 = Roof, 3 = Off.");
            return 1;
        }
        switch(type)
        {
        case 1:
            {
                if(Siren[VID] == 1)
                {
                    SendClientMessage(playerid, COLOR_GREY, "This vehicle already has a siren!");
                    return 1;
                }
                 Siren[VID] = 1;
                 GetRPName(playerid, szPlayerName, MAX_PLAYER_NAME);
                 SirenObject[VID] = CreateObject(18646, 10.0, 10.0, 10.0, 0, 0, 0);
                 AttachObjectToVehicle(SirenObject[VID], VID, 0.0, 0.75, 0.275, 0.0, 0.1, 0.0);
                 format(string, sizeof(string), "* %s puts the siren on the dashboard.", szPlayerName);
                 nearByMessage(playerid, COLOR_PURPLE, string);
                return 1;
            }
        case 2:
            {
                if(Siren[VID] == 1)
                {
                    SendClientMessage(playerid, COLOR_GREY, "This vehicle already has a siren!");
                    return 1;
                }
                        Siren[VID] = 1;
                        GetRPName(playerid, szPlayerName, MAX_PLAYER_NAME);
                        SirenObject[VID] = CreateObject(18646, 10.0, 10.0, 10.0, 0, 0, 0);
                        AttachObjectToVehicle(SirenObject[VID], VID, -0.43, 0.0, 0.785, 0.0, 0.1, 0.0);
                        format(string, sizeof(string), "* %s puts the siren on the roof.", szPlayerName);
                        nearByMessage(playerid, COLOR_PURPLE, string);
                        return 1;
            }
        case 3:
            {
                if(Siren[VID] == 0)
                {
                    SendClientMessage(playerid, COLOR_GREY, "This vehicle doesn't have a siren on it!");
                    return 1;
                }
                Siren[VID] = 0;
                GetRPName(playerid, szPlayerName, MAX_PLAYER_NAME);
                DestroyObject(SirenObject[VID]);
                format(string, sizeof(string), "* %s takes down the siren.", szPlayerName);
                nearByMessage(playerid, COLOR_PURPLE, string);
                return 1;
            }
        default:
            {
                SendClientMessage(playerid, COLOR_WHITE, "Invalid license type! /siren [type]");
                SendClientMessage(playerid, COLOR_GREY, "Type: 1 = Roof, 2 = Inside, 3 = Off.");
            }
        }
    }
    else SendClientMessage(playerid, COLOR_GREY, "You're not authorised to use this command.");
    return 1;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)