Posts: 578
Threads: 40
Joined: Dec 2016
Quote:
Originally Posted by IstuntmanI
You are using your header for this:
pawn Код:
format(dialog, 524, "{A6856A}Please select your character to spawn");
that's the first listitem, for DIALOG_STYLE_TABLIST_HEADERS the first listitem is the header (each column, separated with '\t' - you had no '\t' in that header, so it means that it only has one column, so it only showed the ID, while the rest columns were cut out). You have to make it like
pawn Код:
format(dialog, 32, "ID\tFirstname\tSurname\tStatus");
You can see an example for each dialog style here: https://sampwiki.blast.hk/wiki/Dialog_Styles
|
Ah yes! Figured the issue was gonna be something to do with the columns.. I just added blank tabs and now it's working perfectly fine, thank you.