05.09.2011, 00:42
Quote:
Originally Posted by PAWN Language Guide
#file name
Adjusts the name for the current file. This directive is used implicitly by the text preprocessor; there is usually no need to set a filename explicitly |
Also,
Quote:
Originally Posted by PAWN Language Guide
#section name
Starts a new section for the generated code. Any variables and functions that are declared “static” are only visible to the section to which they belong. By default, each source file is a separate section and there is only one section per file. With the #section directive, you can create multiple sections in a source file. The name of a section is optional, if it is not set, a unique identifier for the source file is used for the name of the section. Any declared section ends automatically at the end of the file |
pawn Код:
new gLoggedPlayers, gAFKPlayers;)
pawn Код:
#section shakenbake