You're saying it's possible to do:
Code:
String:ReturnString()
{
return "Hello";
}
SomeFunc()
{
PrintToServer("%s", ReturnString());
// or even
decl String:mystr[32];
mystr = ReturnString();
}
If that's possible then I have a lot of work to do...
EDIT: I don't think I've ever seen any plugin do this, but it amazingly works. This should be made known, because I don't think people know about this. Well that or I've just been oblivious to it for the past couple years.
EDIT2: This actually doesn't help us.
Code:
public String:operator+(String:oper1[], String:oper2[])
{
StrCat(oper1, 512, oper2);
return oper1[0];
}
This fires when using + to concatenate but it's not working at all.
__________________