if(strcmp("/siren", cmdtext, true, 10) == 0)
{
if(IsACop(playerid))
{
new string[256], type,idx;
new VID = GetPlayerVehicleID(playerid);
new x_siren[256];
new Siren[MAX_VEHICLES];
new SirenObject[MAX_VEHICLES];
x_siren = strtok(cmdtext, idx);
type = strval(x_siren);
if(!strlen(x_siren))
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /siren [type]");
SendClientMessage(playerid, COLOR_GRAD2, "Type: 1 = Inside, 2 = Roof, 3 = Off.");
return 1;
}
if(type < 1 || type > 3)
{
SendClientMessage(playerid, COLOR_WHITE, "Invalid license type! /siren [type]");
SendClientMessage(playerid, COLOR_GRAD2, "Type: 1 = Roof, 2 = Inside, 3 = Off.");
return 1;
}
if(type == 1)
{
if(Siren[VID] == 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle already has a siren!");
return 1;
}
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);
format(string, sizeof(string), "* %s puts the siren on the dashboard.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
if(type == 2)
{
if(Siren[VID] == 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle already has a siren!");
return 1;
}
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.43, 0.0, 0.785, 0.0, 0.1, 0.0);
format(string, sizeof(string), "* %s puts the siren on the roof.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
if(type == 3)
{
if(Siren[VID] == 0)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle doesn't have a siren on it!");
return 1;
}
Siren[VID] = 0;
GetPlayerName(playerid, sendername, sizeof(sendername));
DestroyObject(SirenObject[VID]);
format(string, sizeof(string), "* %s takes down the siren.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
}
else return 0;
}
C:\Users\DAN\Desktop\CSRP\gamemodes\csrp.pwn(36340) : warning 219: local variable "string" shadows a variable at a preceding level C:\Users\DAN\Desktop\CSRP\gamemodes\csrp.pwn(36340) : warning 219: local variable "idx" shadows a variable at a preceding level Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Warnings.
new string[128], type,idx;
if(strcmp("/siren", cmdtext, true, 10) == 0)
{
if(IsACop(playerid))
{
new type;
new VID = GetPlayerVehicleID(playerid);
new x_siren[256];
new Siren[MAX_VEHICLES];
new SirenObject[MAX_VEHICLES];
x_siren = strtok(cmdtext, idx);
type = strval(x_siren);
if(!strlen(x_siren))
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /siren [type]");
SendClientMessage(playerid, COLOR_GRAD2, "Type: 1 = Inside, 2 = Roof, 3 = Off.");
return 1;
}
if(type < 1 || type > 3)
{
SendClientMessage(playerid, COLOR_WHITE, "Invalid license type! /siren [type]");
SendClientMessage(playerid, COLOR_GRAD2, "Type: 1 = Roof, 2 = Inside, 3 = Off.");
return 1;
}
if(type == 1)
{
if(Siren[VID] == 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle already has a siren!");
return 1;
}
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);
format(string, sizeof(string), "* %s puts the siren on the dashboard.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
if(type == 2)
{
if(Siren[VID] == 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle already has a siren!");
return 1;
}
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.43, 0.0, 0.785, 0.0, 0.1, 0.0);
format(string, sizeof(string), "* %s puts the siren on the roof.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
if(type == 3)
{
if(Siren[VID] == 0)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle doesn't have a siren on it!");
return 1;
}
Siren[VID] = 0;
GetPlayerName(playerid, sendername, sizeof(sendername));
DestroyObject(SirenObject[VID]);
format(string, sizeof(string), "* %s takes down the siren.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
}
Those are not errors, and you can make the script work without fixing them, but heres the fix.
pawn Код:
|
switch(type)
{
if(type == 1)
Hi
Can you tell me the includes needed, because I need them to compile. |
#include <a_samp>
#include <a_http>
#include <time>
#include <dini>
#include <utils>
#include "../include/djson.inc"
#include <yom_buttons>
#include <streamer>
#include <Load>
#include <SII>
#include <fire>
if(strcmp("/siren", cmdtext, true, 10) == 0)
{
if(IsACop(playerid))
{
new type;
new VID = GetPlayerVehicleID(playerid);
new x_siren[256];
new Siren[MAX_VEHICLES];
new SirenObject[MAX_VEHICLES];
x_siren = strtok(cmdtext, idx);
type = strval(x_siren);
if(!strlen(x_siren))
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /siren [type]");
SendClientMessage(playerid, COLOR_GRAD2, "Type: 1 = Inside, 2 = Roof, 3 = Off.");
return 1;
}
if(type < 1 || type > 3)
{
SendClientMessage(playerid, COLOR_WHITE, "Invalid license type! /siren [type]");
SendClientMessage(playerid, COLOR_GRAD2, "Type: 1 = Roof, 2 = Inside, 3 = Off.");
return 1;
}
switch(type)
{
if(type == 1)
{
if(Siren[VID] == 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle already has a siren!");
return 1;
}
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);
format(string, sizeof(string), "* %s puts the siren on the dashboard.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
if(type == 2)
{
if(Siren[VID] == 1)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle already has a siren!");
return 1;
}
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.43, 0.0, 0.785, 0.0, 0.1, 0.0);
format(string, sizeof(string), "* %s puts the siren on the roof.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
if(type == 3)
{
if(Siren[VID] == 0)
{
SendClientMessage(playerid, COLOR_GRAD2, "This vehicle doesn't have a siren on it!");
return 1;
}
Siren[VID] = 0;
GetPlayerName(playerid, sendername, sizeof(sendername));
DestroyObject(SirenObject[VID]);
format(string, sizeof(string), "* %s takes down the siren.", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
return 1;
}
}
}
pawn Код:
|
C:\Users\DAN\Desktop\CSRP\gamemodes\csrp.pwn(26775) : error 002: only a single statement (or expression) can follow each "case" C:\Users\DAN\Desktop\CSRP\gamemodes\csrp.pwn(26775 -- 26776) : error 029: invalid expression, assumed zero C:\Users\DAN\Desktop\CSRP\gamemodes\csrp.pwn(26790) : warning 225: unreachable code
if(type == 1)
{
if(type == 2)