warning 217: loose indentation
#2

pawn Код:
CMD:siren(playerid, params[])
{
       new 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;
               }
               new sendername[MAX_PLAYER_NAME];
               Siren[VID] = 1;
               GetPlayerName(playerid, sendername, sizeof(sendername));
               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);
               return 1;
           }
           case 2:
           {
               if(Siren[VID] == 1) {
                   SendClientMessage(playerid, COLOR_GREY, "This vehicle already has a siren!");
                   return 1;
               }
               Siren[VID] = 1;
               new sendername[MAX_PLAYER_NAME];
               GetPlayerName(playerid, sendername, sizeof(sendername));
               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);
               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;
               new sendername[MAX_PLAYER_NAME];
               GetPlayerName(playerid, sendername, sizeof(sendername));
               DestroyObject(SirenObject[VID]);
               return 1;
           }
           default:
           {
               SendClientMessage(playerid, COLOR_WHITE, "Invalid license type! /siren [type]");
               SendClientMessage(playerid, COLOR_GREY, "Type: 1 = Roof, 2 = Inside, 3 = Off.");
           }
       }
       return 1;
}
Here you go.


If you are not bothered about fixing your codes indention put this on top of your script

pawn Код:
#pragma tabsize 0
Reply


Messages In This Thread
warning 217: loose indentation - by Tomer!.$ - 03.09.2013, 13:18
Re: warning 217: loose indentation - by Cypress - 03.09.2013, 13:21
Re: warning 217: loose indentation - by Tomer!.$ - 03.09.2013, 13:24

Forum Jump:


Users browsing this thread: 1 Guest(s)