14.02.2011, 14:29
Boas, tipo eu uso o comando /cinto e diz (ex: "Ricardo_Jorge meteu o cinto de seguranзa") mas quando volto a usar /cinto de seguranзa para tirar o cinto diz (ex: "Ricardo_Jorge meteu o cinto de seguranзa") mas eu queria que dise-se (ex: "Ricardo_Jorge tirou o cinto de seguranзa")
agradeзo
agradeзo
pawn Код:
if(strcmp(cmd, "/cinto", true) == 0)
{
if(IsPlayerConnected(playerid))
{
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) && IsPlayerInAnyVehicle(playerid) == 0)
{ //line 124
SendClientMessage(playerid, COLOR_RED, "Vocк nгo estб em um veiculo");
return 1;
}
else if(IsPlayerInAnyVehicle(playerid) == 1 && cinto[playerid] == 0)
{
cinto[playerid] = 0;
SendClientMessage(playerid, COLOR_GREEN, "Vocк meteu o cinto de seguranзa.");
format(string, sizeof(string), "* %s meteu o cinto de seguranзa.", sendername);
TogglePlayerControllable(playerid, 1);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
printf("%s", string);
}
else if(IsPlayerInAnyVehicle(playerid) == 1 && cinto[playerid] == 1)
{
cinto[playerid] = 0;
SendClientMessage(playerid, COLOR_RED, "Vocк tirou seu cinto");
format(string, sizeof(string), "* %s tirou o cinto de seguranзa.", sendername);
TogglePlayerControllable(playerid, 1);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
printf("%s", string);
}
}
return 0;
}