case DIALOG_CUCC:
{
if(response)
{
ShowPlayerDialog(playerid,DIALOG_CUCCOS,DIALOG_STYLE_MSGBOX,\"Inventory\",\"Mit akarsz csinálni vele?\",\"Használ\",\"Eldob\");
}
}
case DIALOG_CUCCOS:
{
SendClientMessage(playerid, 0xFF0000FF, \"Lefut\");
new string[128];
RemoveHexColorFromString(inputtext);
format(string,128,inputtext[strfind(inputtext,\"\\t\")+2]);
if(response)
{
CallLocalFunction( \"OnPlayerUseItem\", \"is\", playerid, string );
}
if(!response)
{
if(CompareEx(string,\"Pizza\"))
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid,x,y,z);
DropItem(1582,1,x,y,z,GetPlayerVirtualWorld(playerid),GetPlayerInterior(playerid));
RemoveItem(playerid,string,1);
}
}
}
Ugyebár nekem a DIALOG_CUCCOS-nál a DIALOG_CUCC inputtextje kellene, különben az eredmény egyenlő a nullával.
Előre is köszönöm a segítséget!