What you see is called a macro. %0, %1, up to %9. are just arguments you pass.
A macro is replaced at compilation time.
For example, if you have IsPlayer(iAttacker) in your code, it will be replaced at compilation with 1 <= iAttacker <= g_iMaxPlayers
%0 is just a way to say that macro takes one argument.