\n doesnt work...
#1

Code:
CMD:forums(playerid,params[])
{
	new s[128];
 	format(s,128,"---.---.org (Note:Your account on the forums has been auto-created.\n You can login using your ingame username and password on the forums.");
	SendClientMessage(playerid, COLOR_ORANGE,s);
	return 1;
}
thats one of the codes. why doesnt \n work?
Reply
#2

Pretty sure \n doesn't work in sendclientmessage, but you could always do.
pawn Code:
CMD:forums(playerid,params[])
{
           SendClientMessage(playerid, COLOR_ORANGE,"---.---.org (Note:Your account on the forums has been auto-created.");
           SendClientMessage(playerid, COLOR_ORANGE,"You can login using your ingame username and password on the forums.");
           return 1;
}
You don't need to use format when you're not formatting anything.
Reply
#3

Thanks
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)