SA-MP Forums Archive
[HELP] wow. too long. wow samp wow - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: [HELP] wow. too long. wow samp wow (/showthread.php?tid=537870)



[HELP] wow. too long. wow samp wow - SilverPortal - 18.09.2014



ANy help?


Re: [HELP] wow. too long. wow samp wow - rymax99 - 18.09.2014

Use strcat for the dialog and break it up into a few strcats, and for the unused symbols - you're creating a string or variable that isn't being used. Simply delete or comment out the 'new <variablename>;' and what not.


Re : [HELP] wow. too long. wow samp wow - SpikY_ - 18.09.2014

Do like this

Код:
CMD:help(playerid, params[])
{
    new help[3000];
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    ShowPlayerDialog(playerid,DIALOG_HELP,DIALOG_STYLE_MSGBOX, "SilverServer Help",help,"Close","");
    return 1;
}
Press +rep button if i helped


Re: Re : [HELP] wow. too long. wow samp wow - rymax99 - 18.09.2014

Quote:
Originally Posted by NGEN123
Посмотреть сообщение
Do like this

Код:
CMD:help(playerid, params[])
{
    new help[3000];
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    strcat(help, " YOUR TEXt HERE \n");
    ShowPlayerDialog(playerid,DIALOG_HELP,DIALOG_STYLE_MSGBOX, "SilverServer Help",help,"Close","");
    return 1;
}
Press +rep button if i helped
You don't need to ask for reputation in every post - if people want to give you rep, they can.


Re: [HELP] wow. too long. wow samp wow - Dignity - 18.09.2014

Alternatively, you should consider using this: https://sampforum.blast.hk/showthread.php?pid=2768123#pid2768123