hi
its n argument ...
example...
if u type in console
kick playerXYZ
Code:
new arg[32]
read_argv(1,arg,31)
first makes n variable ;)
2. read the argument of the command kick ;)
here its playerXYZ
read_argv(1,arg,31)
1 = nummer of argument ( kick <arg1> <arg2> <arg3>)
arg = the variable where to put in the argument (arg = playerXYZ)
31 = how long is the argument (if its longer it will cut)
hope its correckt
cucu