07.12.2010, 17:09
Hi
I now using format for all formatting text.
But i now saw i can script without format function.
So which is the faster/better choice?
This (example):
Or:
?
Thanx for the replys
I now using format for all formatting text.
But i now saw i can script without format function.
So which is the faster/better choice?
This (example):
Quote:
SendClientMessage(playerid, COLOR_WHITE, "Your ID is " playerid); |
Quote:
format(text, sizeof(text), "Your ID is %d", playerid); SendClientMessage(playerid, COLOR_WHITE, text); |
Thanx for the replys