Posts: 105
Threads: 7
Joined: Jul 2010
Reputation:
0
the functions such as %s, %d, cause I've seen em' before but I dont remember, if anybody has it, please post here, I need
Posts: 29
Threads: 1
Joined: Jul 2010
Reputation:
0
Lul wut?
Are you looking for "format" (or "printf")?
Posts: 105
Threads: 7
Joined: Jul 2010
Reputation:
0
lol, I mean it : %s, %d, such as
SendClientMessageToAll(COR_WHITE, "Admin %s has set all health to %d");
cause I saw other "%", such as : %s,%d,%c.. and I dont remember the site which teachs it.
Posts: 388
Threads: 11
Joined: Feb 2008
Reputation:
0
%s - string
%d - decimal
%f - float
%i - integar
Example: format(string,sizeof(string),"%s is %d years old",Name,age);
Is that what you mean?