04.11.2014, 07:40
FIXED.
new string[128];
format(string, sizeof(string), "Points:",PlayerInfo[playerid][SpecialPoints]
ShowPlayerDialog(playerid, 34111, DIALOG_STYLE_LIST, "Title", string, "buy","exit");
new str[1024],boobs[256]; //main string
format(boobs,sizeof(boobs),"Premium Points: %d",yourvariable); //your dialog heading should be formated before.
strcat(str,"[+] Get Premium Points\n"); // our first thing.
//from second thing onwards use FORMAT & add it similarly like this with a new string.
new tempstr[128];
format(tempstr,sizeof(tempstr),"Premium Account - %d premium points", yourvariable);
strcat(str,tempstr); // now add them to it!
//similarly add it again & again by using STRCAT & FORMAT. Hence your dialog is created.
ShowPlayerDialog(playerid,34111,DIALOG_STYLE_LIST,boobs,str,"Buy", "Exit");