You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
564 B
30 lines
564 B
#if defined _usercontrol_included
|
|
#endinput
|
|
#endif
|
|
#define _usercontrol_included
|
|
|
|
public SharedPlugin:__pl_usercontrol = {
|
|
name = "SQL User Control",
|
|
file = "sql_userconnections.smx",
|
|
#if defined REQUIRE_PLUGIN
|
|
required = 1,
|
|
#else
|
|
required = 0,
|
|
#endif
|
|
};
|
|
|
|
#if !defined REQUIRE_PLUGIN
|
|
public __pl_usercontrol_SetNTVOptional(){
|
|
|
|
MarkNativeAsOptional("UserControl_PlayedTime");
|
|
|
|
}
|
|
#endif
|
|
|
|
/**
|
|
* Returns played time on current map
|
|
*
|
|
* @param client Client Index.
|
|
* @return Seconds on server on current map.
|
|
*/
|
|
native Int:UserControl_PlayedTime(client);
|