hi, I allways had problems with parameters in set_task

if i pass
int it works fine but with string it doesnt compile =\
PHP Code:
public one(id)
{
new text[13]="hello";
new args[2];
args[0] = text;
set_task(4.4, "tasktwo", id+644,args,12);
}
public tasktwo(taskid, param[2])
{
new id = taskid-644;
log_amx("param is: %s", param[0])
}
compiler says: must be assigned to an array about line
args[0] = text;
__________________