03.06.2013, 14:25
I found CallLocalFunction in the wiki and wondered, whats the point of it? 
Why would someone use it, and not just normally type the function?

Why would someone use it, and not just normally type the function?
Код:
public Foo(playerid)
{
//lots of code
return cupcake;
}
cupcake = CallLocalFunction("Foo", "i", playerid); //Difference between this
cupcake = Foo(playerid); //and this

