Ty all!
And I have a little prob with the wiki guid:
Code:
new Arg1[24]
new Arg2[4]
//Get the command arguments from the console
read_argv(1, Arg1, 23)
read_argv(2, Arg2, 3)
//Convert the health from a string to a number
new Health = str_to_num(Arg2)
I didnt understood whats the mean of Arg1[24] and Arg2[3] , and why after that it became to
read_argv(1, Arg1,
23)
and
read_argv(2, Arg2,
3)