04.04.2010, 18:39
The warning means that you forwarded a function, and used it but didn't create it. Hard to explain, but here's a example.
pawn Code:
forward Test();
main() {
Test(); // Notice there's no public code.
}