Quote:
Originally Posted by Jstylezzz
The string inside the dialog is too long for one line. Using strcat you can 'split' the string in several parts and combine it into a string variable.
pawn Код:
new string[256]; //Not sure about the string size, you can decrease/increase it if needed strcat(string, "Country108\nCountry 105 Calgary's #1 radio station\nB98 Today's Best Country\nNashville FM\nVirgin Radio Calgary 98.5\nCJAY 92 Calgary\nWorlds best country music\nClassic Rock 105\n"); strcat(string, "Hard rock 102\nIndie Rock\nClassic Rap\nA Beatles Tribute\nJazz Classics\nModern Blues\nClassic Motown\nHits From The 70's\nBest Of The 80's\nBest Of The 60'S\nAlternative Rock\nPop Rock\nJPOP\n"); strcat(string, "New Age\nBebop Jazz\nMellow Jazz\nThe Vibe Of Vegas\nClassic Hits 181\nThe Rock! Hard Rock\nReal Country FM\nThe Eagle Classic\nSmooth AC FM\nGood Time Oldies\nThe Office FM\nStop the music"); ShowPlayerDialog(playerid, 12345, DIALOG_STYLE_LIST, "Pick a music station", string, "Choose", "Cancel");
|
so how would that look? like where would I add this?