Hello, I'm trying to create a function with several parameters in string format, but I don't know how to do it, as it's returning the following error:
error 067: variable cannot be both a reference and an array (variable "string1")
new string1,string2;
stock MyFunction(&string1,&string2)
{
//Some code
string1 ="Hello";
string2 ="Hello 2";
}
FIXED!
Just removed the &