03.08.2012, 23:19
Eae galera,tudo beleza ?
Bom pessoal,eu peguei um cуdigo de Boletim de ocorrencia aqui no forum e adapitei ele e ficou assim:
E ao inves de ele mandar o B.O para os policias online de plantao,como faзo pra ele guardar em um arquivo e depois quando um policial digitar um comando ele ver os b.o. Alguem me ajuda a fazer isso ae por favor,valeu ae galera.
Bom pessoal,eu peguei um cуdigo de Boletim de ocorrencia aqui no forum e adapitei ele e ficou assim:
pawn Код:
if(strcmp(cmd, "/boletimocorrencia", true) == 0 || strcmp(cmd, "/bo", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if (!PlayerToPoint(3.0, playerid, 250.0496,67.6644,1003.6406) && !PlayerToPoint(3.0, playerid, 246.5846,118.5371,1003.2188) && !PlayerToPoint(3.0, playerid, 325.2144,305.1604,999.1484) && !PlayerToPoint(3.0, playerid, 1522.1292,492.1497,7.1797) && !PlayerToPoint(3.0, playerid, 234.9493,165.6879,1003.0300) && !PlayerToPoint(3.0, playerid, 699.6252,-553.2016,-3.5950))
{
SendClientMessage(playerid, COLOR_GRAD2, "Vocк nгo estб na recepзгo de nenhuma DP.");
return true;
}
else
{
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: /bo [Breve Descriзгo] [Contato]");
SendClientMessage(playerid, COLOR_GRAD2, "Exemplo: /bo Chuck_Norris(Id:19) me bateu perto da alhambra. 9090");
return 1;
}
if(IsACop(playerid) && (OnDuty[playerid]) )
{
format(string, sizeof(string), "B.o. de: %s(%d): %s.", PlayerName(playerid), playerid, (result));
ABroadCast(0xFFFF66FF,string,1);
}
SendClientMessage(playerid, COLOR_YELLOW, "Seu Boletim de ocorrencia foi enviado aos policiais de plantгo.");
}
}
return 1;
}