29.09.2010, 22:47
bom pessoal sei que parece uma duvida boba mas vamos la seguinte estou querendo colocar no meu servidor para que os Policiais so podem dar /su(speito) se estiver de cartao batio porem ja tentei varias veses fiquei testando quase 1 hora e nгo consigo bom vim pedi ajuda =D vou coloca o meu /batercartao e /su(speito)
batercartao
colocar suspeito
batercartao
pawn Код:
if(strcmp(cmd, "/batercartao", true) == 0)
{
if(IsPlayerConnected(playerid))
{
GetPlayerName(playerid, sendername, sizeof(sendername));
if(PlayerInfo[playerid][pMembro] == 1 || PlayerInfo[playerid][pLider] == 1 || PlayerInfo[playerid][pMembro] == 17 || PlayerInfo[playerid][pLider] == 17 || PlayerInfo[playerid][pMembro] == 2 || PlayerInfo[playerid][pLider] == 2 || PlayerInfo[playerid][pMembro] == 3 || PlayerInfo[playerid][pLider] == 3 || PlayerInfo[playerid][pMembro] == 25 || PlayerInfo[playerid][pLider] == 25 || PlayerInfo[playerid][pMembro] == 14 || PlayerInfo[playerid][pLider] == 14)
{
if (PlayerToPoint(1.0, playerid,303.5883,-1528.2021,24.9219) || PlayerToPoint(1.0,playerid,1529.6860,-1700.9150,6.2188) || PlayerToPoint(1.0,playerid,-1340.9342,491.6898,11.1953) || PlayerToPoint(1.0,playerid,232.8704,168.6506,1003.0234))
{
if(OnDuty[playerid]==0)
{
SetPlayerArmour(playerid, 100);
SetPlayerHealth(playerid, 100);
OnDuty[playerid] = 1;
SetPlayerSkin(playerid, PlayerInfo[playerid][pChar]);
SetPlayerToTeamColor(playerid);
format(string, sizeof(string), "Oficial %s estб fardado.", sendername);
OOCNews(COLOR_LIGHTRED,string);
}
else if(OnDuty[playerid]==1)
{
format(string, sizeof(string), "Oficial %s estб de folga.", sendername);
OOCNews(COLOR_LIGHTRED,string);
SetPlayerSkin(playerid, 23);
SetPlayerColor(playerid, COLOR_WHITE);
ResetPlayerWeapons(playerid);
OnDuty[playerid] = 0;
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD2, " Vocк nгo estб em um vestiбrio !");
return 1;
}
}
pawn Код:
if(strcmp(cmd, "/suspect", true) == 0 || strcmp(cmd, "/su", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(OnDuty[playerid] == 1 && PlayerInfo[playerid][pMembro] == 1)
{
SendClientMessage(playerid, COLOR_GREY, " Vocк nгo bateu o Cartгo!");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: (/su)spect [ id ] [CУDIGO]");
return 1;
}
giveplayerid = ReturnUser(tmp);
if (gTeam[playerid] == 2 || IsACop(playerid))
{
if(IsPlayerConnected(giveplayerid))
{
if(giveplayerid != INVALID_PLAYER_ID)
{
if (gTeam[giveplayerid] != 2)
{
GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
GetPlayerName(playerid, sendername, sizeof(sendername));
new length = strlen(cmdtext);
while ((idx < length) && (cmdtext[idx] <= ' '))
{
idx++;
}
new offset = idx;
new result[64];
while ((idx < length) && ((idx - offset) < (sizeof(result) - 1)))
{
result[idx - offset] = cmdtext[idx];
idx++;
}
result[idx - offset] = EOS;
if(!strlen(result))
{
SendClientMessage(playerid, COLOR_GRAD2, "USE: (/su)spect [ id ] [cуdigo]");
return 1;
}
if(strcmp(result,"DOP",true) == 0) { result = "Desobediкncia a ordem policial"; }
if(strcmp(result,"TH",true) == 0) { result = "Tentativa de homicнdio"; }
if(strcmp(result,"AP",true) == 0) { result = "Ajuste de pena"; }
if(strcmp(result,"CA",true) == 0) { result = "Contrabando de armas"; }
if(strcmp(result,"CD",true) == 0) { result = "Contrabando de drogas"; }
if(strcmp(result,"RV",true) == 0) { result = "Roubo de Veнculo"; }
if(strcmp(result,"RM",true) == 0) { result = "Rejeiзгo de multa"; }
if(strcmp(result,"RP",true) == 0) { result = "Resistencia a prisгo"; }
if(strcmp(result,"ILR",true) == 0) { result = "Invasгo a Local Restrito"; }
if(strcmp(result,"RMD",true) == 0) { result = "Rejeiзгo a Mostrar Documentos"; }
if(strcmp(result,"DA",true) == 0) { result = "Desacato б Autoridade"; }
if(strcmp(result,"PIA",true) == 0) { result = "Porte Ilegal de Armas"; }
if(strcmp(result,"CF",true) == 0) { result = "Cumplice de Fugas"; }
if(WantedPoints[giveplayerid] == 0) { WantedPoints[giveplayerid] = 3; }
else { WantedPoints[giveplayerid]+= 2; }
SetPlayerCriminal(giveplayerid,playerid, result);
SetPlayerWantedLevel(giveplayerid,(GetPlayerWantedLevel(giveplayerid)+1));
return 1;
}
else
{
SendClientMessage(playerid, COLOR_GRAD2, " Vocк nгo pode dar level de procurado a um policial !");
}
}
}
else
{
format(string, sizeof(string), " %d nгo estб conectado.", giveplayerid);
SendClientMessage(playerid, COLOR_GRAD1, string);
return 1;
}
}
else
{
SendClientMessage(playerid, COLOR_GRAD2, " Voce nгo e Policia Militar /BOPE/Policia Rodoviaria/Exercito/PF !");
}
}
return 1;
}