Skip to content

Commit

Permalink
Updated convar descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Impact123 committed Mar 11, 2015
1 parent 5e98c70 commit 46036f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gameserver/calladmin.sp
Original file line number Diff line number Diff line change
Expand Up @@ -323,12 +323,12 @@ public void OnPluginStart()

g_hVersion = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_version", CALLADMIN_VERSION, "Plugin version", FCVAR_PLUGIN|FCVAR_NOTIFY|FCVAR_DONTRECORD);
g_hAdvertInterval = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_advert_interval", "60.0", "Interval to advert the use of calladmin, 0.0 deactivates the feature", FCVAR_PLUGIN, true, 0.0, true, 1800.0);
g_hPublicMessage = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_public_message", "1", "Whether or not an report should be notified to all players or only the reporter.", FCVAR_PLUGIN, true, 0.0, true, 1.0);
g_hOwnReason = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_own_reason", "1", "Whether or not client can submit their own reason.", FCVAR_PLUGIN, true, 0.0, true, 1.0);
g_hConfirmCall = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_confirm_call", "1", "Whether or not an call must be confirmed by the client", FCVAR_PLUGIN, true, 0.0, true, 1.0);
g_hSpamTime = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_spamtime", "25", "An user must wait this many seconds after an report before he can issue a new one", FCVAR_PLUGIN, true, 0.0);
g_hPublicMessage = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_public_message", "1", "Whether or not a report should be notified to all players or only the reporter.", FCVAR_PLUGIN, true, 0.0, true, 1.0);
g_hOwnReason = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_own_reason", "1", "Whether or not a client can submit their own reason.", FCVAR_PLUGIN, true, 0.0, true, 1.0);
g_hConfirmCall = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_confirm_call", "1", "Whether or not a call must be confirmed by the client", FCVAR_PLUGIN, true, 0.0, true, 1.0);
g_hSpamTime = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_spamtime", "25", "An user must wait this many seconds after a report before he can issue a new one", FCVAR_PLUGIN, true, 0.0);
g_hReportTime = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_reporttime", "300", "An user cannot be reported again for this many seconds", FCVAR_PLUGIN, true, 0.0);
g_hAdminAction = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_admin_action", "0", "What happens when admins are ingame on report: 0 - Do nothing, let the report pass, 1 - Block the report and notify the caller and admins", FCVAR_PLUGIN, true, 0.0, true, 1.0);
g_hAdminAction = view_as<ConVar> AutoExecConfig_CreateConVar("sm_calladmin_admin_action", "0", "What happens when admins are in-game on report: 0 - Do nothing, let the report pass, 1 - Block the report and notify the caller and admins in-game about it", FCVAR_PLUGIN, true, 0.0, true, 1.0);



Expand Down

0 comments on commit 46036f4

Please sign in to comment.