PHP Code:
new a_test[6]
public plugin_init()
{
new a
#define b[%1] a_test[%1]
b[4] = 12
a = 6
test2(a)
}
test2(a)
{
if(a == 5) b[3] = 16
}
What i want to is that
#define b is only inside of function plugin_init.
[ Some global variables are long and its pretty annoying to write and it also take some time. ]
My question is that how i can do it?