02.12.2010, 19:52
A function only needs to be public if the server itself should be able to call it. This includes all callbacks, and functions that are called by timers. The rest of the functions don't need to be public.
Will also work just fine.
pawn Код:
MyFunction(msg[])
{
print(msg);
}