Quote:
Originally Posted by SnoW
What's your purpose of creating and using a native in the same plugin in the first place?
|
Let's say I have 2 natives: Test1() and Test2(). Native Test1() does something that uses native Test2(). So:
PHP Code:
public MyNative1()
{
// Stuff
}
public MyNative2()
{
MyNative1();
// Stuff
}
So basically one native calls another one.
__________________