Great !
But how to call a function without using "callfunc", I have not found how to do it.
It does not work like that :
- script Test_Call_Function -1,{
OnInit:
Test("Hello !");
end;
}
function script Test {
announce getarg(0),bc_all;
return;
}
Thank you for your help !