fixed if NO_STEAM is defined
This commit is contained in:
parent
f499dd947b
commit
eaf5384522
|
@ -38,21 +38,24 @@
|
||||||
// Comment if you don't want to hide not used reserved slots
|
// Comment if you don't want to hide not used reserved slots
|
||||||
#define HIDE_RESERVED_SLOTS
|
#define HIDE_RESERVED_SLOTS
|
||||||
|
|
||||||
|
#if !defined NO_STEAM
|
||||||
new g_cmdLoopback[16]
|
new g_cmdLoopback[16]
|
||||||
|
#endif
|
||||||
|
|
||||||
public plugin_init()
|
public plugin_init()
|
||||||
{
|
{
|
||||||
register_plugin("Slots Reservation","0.16","AMXX Dev Team")
|
register_plugin("Slots Reservation","0.16","AMXX Dev Team")
|
||||||
register_cvar("amx_reservation","1")
|
register_cvar("amx_reservation","1")
|
||||||
|
|
||||||
|
#if !defined NO_STEAM
|
||||||
format( g_cmdLoopback, 15, "amxres%c%c%c%c" ,
|
format( g_cmdLoopback, 15, "amxres%c%c%c%c" ,
|
||||||
random_num('A','Z') , random_num('A','Z') ,random_num('A','Z'),random_num('A','Z') )
|
random_num('A','Z') , random_num('A','Z') ,random_num('A','Z'),random_num('A','Z') )
|
||||||
|
|
||||||
register_clcmd( g_cmdLoopback, "ackSignal" )
|
register_clcmd( g_cmdLoopback, "ackSignal" )
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if !defined NO_STEAM
|
#if !defined NO_STEAM
|
||||||
|
|
||||||
public ackSignal(id)
|
public ackSignal(id)
|
||||||
server_cmd("kick #%d ^"Dropped due to slot reservation^"", get_user_userid(id) )
|
server_cmd("kick #%d ^"Dropped due to slot reservation^"", get_user_userid(id) )
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user