24.09.2011, 12:19
hi, I want to create a very long msgbox so
I saw in some script a way to do this, and I found it a very good idea...
so I have this:
but I only get the very last message, in the msgbox :/
plz help
I saw in some script a way to do this, and I found it a very good idea...
so I have this:
pawn Код:
new OptionsList[1024], OptionsList2[1024], OptionsList3[1024];
format(OptionsList, sizeof(OptionsList), "%sWelcome in team Bandits! Level 1! \n\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sThere are several ways to raise your level, get money and just have fun!\n\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sJobs:\n\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sAs a driver your task is to bring people from one place to another.\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sTo do so, enter the car wich is equal to your level, wich is a nebula for level 1.\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sWhen entering the car you will get some ClientMessages giving you some information about starting a job\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sAs explained there, starting a job can be easly done by driving to the little checkpoint, in front of this tennis club\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sFrom there a mission will start randomly according to your level.\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sThen a TextDraw will appear on the bottom of your screen, telling you where to go.\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sThe place marked with: ''place'' is the place where to pick up your famous person, and a mapicon will appear\n", OptionsList);
format(OptionsList, sizeof(OptionsList), "%sJust follow the map icon, and you will get to your destination.\n", OptionsList);
format(OptionsList, sizeof(OptionsList2), "%sWhen you are there you have picked up your famous person, and a new mapicon will be set. also the '' marks will change.\n", OptionsList);
format(OptionsList, sizeof(OptionsList2), "%sAgain, follow the mapicon and you will get on your final destination, where you will be given a reward\n", OptionsList2);
format(OptionsList, sizeof(OptionsList2), "%sIt's important that:\n", OptionsList2);
format(OptionsList, sizeof(OptionsList2), "%sYou stay in your car\n", OptionsList2);
format(OptionsList, sizeof(OptionsList2), "%sYou get as least Vehicle damage as possible (you will get a reward then)\n", OptionsList2);
format(OptionsList, sizeof(OptionsList2), "%sAnd drive not faster than the max allowed speed, if you do so you will become a suspect!\n", OptionsList2);
format(OptionsList, sizeof(OptionsList2), "%sCompleting a job will give you an amount of score and money, according to your level\n\n", OptionsList2);
format(OptionsList, sizeof(OptionsList2), "%sMinigames:\n", OptionsList2);
format(OptionsList, sizeof(OptionsList2), "%sIf you want to get more score and money at once, you will have to do minigames\n", OptionsList2);
format(OptionsList, sizeof(OptionsList3), "%sUnfortunately you will need atleast 500 score to participe to a minigame\n", OptionsList2);
format(OptionsList, sizeof(OptionsList3), "%sStill if you want to know more about them already, type /minigames\n\n\n", OptionsList3);
format(OptionsList, sizeof(OptionsList3), "%sOther from that, I just want to wish you joy and fun on this server as a driver!\n", OptionsList3);
// Show the Msgbow
ShowPlayerDialog(playerid, 1777, DIALOG_STYLE_MSGBOX, "Test", OptionsList, "Select", "Cancel");
plz help