Please anyone feel free to correct me, but I believe:
Some Examples:
%f = Float value = 0.000000
%.2f = 0.00
%.3f = 0.000
%s = String = "Wuzzup!"
%i = Integer = 4
%d = Data (I think this can be used universally, should show string/integer/floats)
--------------------
Usually you use these when formatting some type of string, as in for a message related to usually health, name, steamid, and other generated information.
Say you want to display the client id and steamid of a user, you would need to do...
Code:
new s[32];
get_user_authid(id,s,sizeof(s));
new msg[64];
format(msg,sizeof(msg),"ID: %i, SteamID: %s",id,s);
__________________