03.06.2013, 14:25
I found CallLocalFunction in the wiki and wondered, whats the point of it? ![Confused](images/smilies/confused.png)
Why would someone use it, and not just normally type the function?
![Confused](images/smilies/confused.png)
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