18.01.2009, 21:54
Hi, i want to do a function like this
How can i pass referenced parameters in my plugin? It may be basic, but yeah i'm a plugin noob
pawn Код:
native func(&p1, &p2); //func is a function of my plugin.
new a, b;
func(a, b);
printf("a=%d, b=%d", a, b);