getarg() is used to get the arguments that you passed during your function call.
My example:
prontera,50,50,4 script SampleNPCArg 50,{
mes "[Robert Dooke]";
mes "Okay I will pass my first name as the first argument";
mes "and my second name as the second argument.";
next;
callfunc "samplefunc","Robert","Dooke";
end;
}
function samplefunc {
mes "OMG you have just passed the the man's name !";
mes "Firstname: "+getarg(0)+""; //getarg(0) is the 1st argument that has been passed which is "Robert".
mes "Secondname: "+getarg(1)+""; //getarg(1) is the 2nd argument that has been passed which is "Dooke".
close;
}