Quote:
Originally Posted by BenzoAMG
In terms of SendClientMessage, you can only create a new line by either sending multiple instances of SendClientMessage, or using split. I personally think it's easier to just send two SendClientMessage's.
pawn Код:
format(String, sizeof(String), "[INFO] {B3B3B3}Your name is: %s", pName); SendClientMessage(playerid, 0xB282FAFF, String); format(String, sizeof(String), "[INFO] {B3B3B3}Your IP address: %s", ip); SendClientMessage(playerid, 0xB282FAFF, String);
|
Thank you all very much, this post helped.