Dialog don`t appear - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Dialog don`t appear (
/showthread.php?tid=451334)
Dialog don`t appear -
DreDasLT - 16.07.2013
Idea is : 1st Dialog shows, select item, then shows 2nd Dialog to select item.
Problem : 1st Dialog shows, but 2nd Dialog not.
1st Dialog
PHP код:
case DIALOG_SHOP_BUY:
{
if(response)
{
new a[5000],b[250];
ItemChosen[playerid] = listitem;
for(new i = 0; i < MAX_ITEMS; i++)
{
format(b,sizeof(b),"%s [ Turima : %d ] = %d %s \n", GetItemName(i), pInfo[playerid][daiktai][i], ItemPrice(i,ItemChosen[playerid]), GetItemName(ItemChosen[playerid]));
strcat(a,b);
}
ShowPlayerDialog(playerid,DIALOG_SHOP_SELL,DIALOG_STYLE_LIST, "Shop", a,"Pirkti","Iљeiti" );
}
return 1;
}
PHP код:
new a[5000],b[250];
ItemChosen[playerid] = listitem;
for(new i = 0; i < MAX_ITEMS; i++)
{
format(b,sizeof(b),"%s [ Turima : %d ] = %d %s \n", GetItemName(i), pInfo[playerid][daiktai][i], ItemPrice(i,ItemChosen[playerid]), GetItemName(ItemChosen[playerid]));
strcat(a,b);
}
ShowPlayerDialog(playerid,DIALOG_SHOP_SELL,DIALOG_STYLE_LIST, "Shop", a,"Pirkti","Iљeiti" );
Re: Dialog don`t appear -
PaulDinam - 16.07.2013
Your 'a' size is too long. try reducing it.
Re: Dialog don`t appear -
DreDasLT - 16.07.2013
Thanks very much, it works
![Smiley](images/smilies/smile.png)
P
Re: Dialog don`t appear -
PaulDinam - 16.07.2013
Quote:
Originally Posted by DreDasLT
Thanks very much, it works ![Smiley](images/smilies/smile.png) P
|
Anytime.