24 lines
469 B
SourcePawn
24 lines
469 B
SourcePawn
#if defined _connect_included
|
|
#endinput
|
|
#endif
|
|
|
|
#define _connect_included
|
|
|
|
forward bool OnClientPreConnectEx(const char[] name, char password[255], const char[] ip, const char[] steamID, char rejectReason[255]);
|
|
|
|
public Extension:__ext_Connect =
|
|
{
|
|
name = "Connect",
|
|
file = "connect.ext",
|
|
#if defined AUTOLOAD_EXTENSIONS
|
|
autoload = 1,
|
|
#else
|
|
autoload = 0,
|
|
#endif
|
|
#if defined REQUIRE_EXTENSIONS
|
|
required = 1,
|
|
#else
|
|
required = 0,
|
|
#endif
|
|
}
|