15.05.2011, 11:06
Main is called AFTER OnGameModeInit.
Its not the same as main in c++.
pawn Код:
#include <a_samp>
main()
{
print("MAIN");
}
public OnGameModeInit()
{
print("INIT");
return 1;
}