22.03.2011, 16:27
Dewdddd, replace your code with this..
Or this:
I told you i can make it ONE LINE!
pawn Код:
new String[400];
format( String, 400,"%s Price:%d\n\
%s Price:%d\n\
%s Price:%d\n\
%s Price:%d\n\
%s Price:%d\n\
%s Price:%d\n",gitem1[playerid] ? ("Phone") : ("None"), gitem1[playerid],
gitem2[playerid] ? ("Dice") : ("None"), gitem2[playerid],
gitem3[playerid] ? ("Gas Can") : ("None"), gitem3[playerid],
gitem4[playerid] ? ("Digital Camera") : ("None"), gitem4[playerid],
gitem5[playerid] ? ("Mask") : ("None"), gitem5[playerid],
gitem6[playerid] ? ("Rope") : ("None"), gitem6[playerid] );
ShowPlayerDialog( playerid, 70, DIALOG_STYLE_LIST, "Cart checkout:",String, "Buy", "Leave" );
pawn Код:
new String[400];
format( String, 400,"%s Price:%d\n%s Price:%d\n%s Price:%d\n%s Price:%d\n%s Price:%d\n%s Price:%d\n",gitem1[playerid] ? ("Phone") : ("None"), gitem1[playerid],gitem2[playerid] ? ("Dice") : ("None"), gitem2[playerid],gitem3[playerid] ? ("Gas Can") : ("None"), gitem3[playerid],gitem4[playerid] ? ("Digital Camera"): ("None"), gitem4[playerid],gitem5[playerid] ? ("Mask") : ("None"), gitem5[playerid],gitem6[playerid] ? ("Rope") : ("None"), gitem6[playerid] );
ShowPlayerDialog( playerid, 70, DIALOG_STYLE_LIST, "Cart checkout:",String, "Buy", "Leave" );