Please How to use SCM Fuction in Tab (\t) ??? - 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: Please How to use SCM Fuction in Tab (\t) ??? (
/showthread.php?tid=576983)
Please How to use SCM Fuction in Tab (\t) ??? -
no1508 - 08.06.2015
I Want SendClientMessage Fuction in use \t & tab.
How to use ?!
I tryed. Press Tab Key & \t.
tryed example code: SCM(playerid, -1 "Hi\tHi"
Result : Fail .. So sad ..
please! help me !
Re: Please How to use SCM Fuction in Tab (\t) ??? -
SoFahim - 08.06.2015
what you mean by that. Sorry to say, I didn't understand it
Re: Please How to use SCM Fuction in Tab (\t) ??? -
PowerPC603 - 08.06.2015
AFAIK, you can't put your chatbox in columns by using tabs.
Only dialog message boxes can use tabs.
Re: Please How to use SCM Fuction in Tab (\t) ??? -
BroZeus - 08.06.2015
Sadly escape characters
(eg. \n, \t..etc.) are not supported in SCM so instead of using \t you can give spaces between characters manually, something like this :
PHP код:
SendClientMessage(playerid, -1, "Hi Hi");
But to keep it in proper alignment you have to change number of white-spaces in sentence as per as need.