21.11.2012, 21:45
Bom gostaria de tipo o cmd /hack ele entrasse num carro duma organizaзao e o cara da anonymous n ser ejetado por estar em um carro de outra organizaзao OU seja hackiar o carro (roubar) podeira implantar isso no meu cmd ?
Код:
if (strcmp(cmd, "/hack", true) == 0) { if(IsPlayerConnected(playerid)) { new counter = 0; new result; new plyName[MAX_PLAYER_NAME]; GetPlayerName(playerid, plyName, MAX_PLAYER_NAME); currentveh = GetPlayerVehicleID(playerid); for(new i; i != MAX_VEHICLES; i++) { new dist = ChecarveiculoThiago(5, playerid, i); if(dist) { result = i; counter++; } } switch(counter) { case 0: { SendClientMessage(playerid, COLOR_GREY, " Nгo hб nenhum carro nesse raio!"); } case 1: { new name[MAX_PLAYER_NAME]; GetPlayerName(playerid, name, sizeof(name)); format(string, sizeof(string), "Vocк reparou o carro ID:[%d]", result); SendClientMessage(playerid, COLOR_GREY, string); if(admtrampando[playerid] == 1 && admhide[playerid] == 1) { format(string, sizeof(string), "AdmAviso: Carro ID:[%d] foi reparado Por: BOOT_BNC", result); ABroadCast(COLOR_YELLOW,string,1); } else { format(string, sizeof(string), "AdmAviso: Carro ID:[%d] foi reparado Por: %s", result, name); ABroadCast(COLOR_YELLOW,string,1); } PutPlayerInVehicle(playerid, result, 0); } default: { SendClientMessage(playerid, COLOR_GREY, " Foram encontrados mais de um carro nesse raio"); } } } return true; }