24.09.2011, 13:12
thanks, but now I get this in the compiler:
that's normal, or?
the strcat things:
Код:
Header size: 9764 bytes Code size: 452700 bytes Data size: 1075424 bytes Stack/heap size: 16384 bytes; estimated max. usage: unknown, due to recursion Total requirements: 1554272 bytes
the strcat things:
pawn Код:
//Msgbox
new OptionList[ 5000 ];
strcat( OptionList, "Welcome in team Bandits! Level 1! \n\n" );
strcat( OptionList, "There are several ways to raise your level, get money and just have fun!\n\n" );
strcat( OptionList, "Jobs:\n\n" );
strcat( OptionList, "As a driver your task is to bring people from one place to another.\n" );
strcat( OptionList, "%sWelcome in team Bandits! Level 1! \n\n");
strcat( OptionList, "%sThere are several ways to raise your level, get money and just have fun!\n\n");
strcat( OptionList, "%sJobs:\n\n");
strcat( OptionList, "%sAs a driver your task is to bring people from one place to another.\n");
strcat( OptionList, "%sTo do so, enter the car wich is equal to your level, wich is a nebula for level 1.\n");
strcat( OptionList, "%sWhen entering the car you will get some ClientMessages giving you some information about starting a job\n");
strcat( OptionList, "%sAs explained there, starting a job can be easly done by driving to the little checkpoint, in front of this tennis club\n");
strcat( OptionList, "%sFrom there a mission will start randomly according to your level.\n");
strcat( OptionList, "%sThen a TextDraw will appear on the bottom of your screen, telling you where to go.\n");
strcat( OptionList, "%sThe place marked with: ''place'' is the place where to pick up your famous person, and a mapicon will appear\n");
strcat( OptionList, "%sJust follow the map icon, and you will get to your destination.\n");
strcat( OptionList, "%sWhen you are there you have picked up your famous person, and a new mapicon will be set. also the '' marks will change.\n");
strcat( OptionList, "%sAgain, follow the mapicon and you will get on your final destination, where you will be given a reward\n");
strcat( OptionList, "%sIt's important that:\n");
strcat( OptionList, "%sYou stay in your car\n");
strcat( OptionList, "%sYou get as least Vehicle damage as possible (you will get a reward then)\n");
strcat( OptionList, "%sAnd drive not faster than the max allowed speed, if you do so you will become a suspect!\n");
strcat( OptionList, "%sCompleting a job will give you an amount of score and money, according to your level\n\n");
strcat( OptionList, "%sMinigames:\n");
strcat( OptionList, "%sIf you want to get more score and money at once, you will have to do minigames\n");
strcat( OptionList, "%sUnfortunately you will need atleast 500 score to participe to a minigame\n");
strcat( OptionList, "%sStill if you want to know more about them already, type /minigames\n\n\n");
strcat( OptionList, "%sOther from that, I just want to wish you joy and fun on this server as a driver!\n");
// Show the Msgbow
ShowPlayerDialog(playerid, 1777, DIALOG_STYLE_MSGBOX, "Test", OptionList, "Ok", "");