08.07.2012, 22:32
Hi everyone,
I have this code, but when i type anything, it returns all...
anyone sees the problem??
I have this code, but when i type anything, it returns all...
pawn Код:
if(IsCallingATaxi[playerid] == 1)
{
if(strcmp(text, "yes", true, strlen(text)))
{
SendClientMessage(playerid,COLOR_LIGHTBLUE,"Cellphone: Okay then, a taxi is coming your way soon, please wait patiently till your call is accepted!");
return 1;
}
if(strcmp(text, "no", true, strlen(text)))
{
SendClientMessage(playerid,COLOR_LIGHTBLUE,"Cellphone: okay then, have a good day!");
HangUpPhone(playerid);
return 1;
}
else
{
SendClientMessage(playerid,COLOR_LIGHTBLUE,"Cellphone: Excuse me? Yes or no?");
return 1;
}
}