Huge PlayerDialog - 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: Huge PlayerDialog (
/showthread.php?tid=647685)
Huge PlayerDialog -
eSPeZet - 09.01.2018
Hello,
I was wondering about how to solve this problem:
The CONTENT with the text to show in ShowPlayerDialog is mostly in the function itself (if not then in a string)..
BUT: What if this text is so long, that you get errors? Is there any way how to continue the text at the next line?
Regards
Re: Huge PlayerDialog -
Abagail - 09.01.2018
You can use "\" to continue a string to the next line, e.g:
pawn Код:
...REALLY LONG LINE! \
Much shorter line."
Re: Huge PlayerDialog -
eSPeZet - 09.01.2018
Wow nice

Thank you very much!