06.08.2010, 14:19
Код:
if(dialogid == DIALOOG_REG_KODAKONDSUS)
{
if(response)
{
new tmp[256];
new idx;
tmp = strtok(inputtext, idx);
if(!strcmp(tmp, "Los Santos"))
{
//Do shit
}
else if(!strcmp(tmp, "San Fierro"))
{
//Do shit
}
else if(!strcmp(tmp, "Las Venturas"))
{
//Do shit
}
}
else
{
// exit
}
}

