Skip to content

Commit

Permalink
Change FunCommands defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiagoquix authored Jul 11, 2024
1 parent b18c8cb commit 4ffbfcc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions plugins/funcommands.sp
Original file line number Diff line number Diff line change
Expand Up @@ -130,21 +130,21 @@ void RegisterCvars()
g_Cvar_BeaconRadius = CreateConVar("sm_beacon_radius", "375", "Sets the radius for beacon's light rings.", 0, true, 50.0, true, 1500.0);

// timebomb
g_Cvar_TimeBombTicks = CreateConVar("sm_timebomb_ticks", "10.0", "Sets how long the timebomb fuse is.", 0, true, 5.0, true, 120.0);
g_Cvar_TimeBombTicks = CreateConVar("sm_timebomb_ticks", "5", "Sets how long the timebomb fuse is.", 0, true, 5.0, true, 120.0);
g_Cvar_TimeBombRadius = CreateConVar("sm_timebomb_radius", "600", "Sets the bomb blast radius.", 0, true, 50.0, true, 3000.0);
g_Cvar_TimeBombMode = CreateConVar("sm_timebomb_mode", "0", "Who is killed by the timebomb? 0 = Target only, 1 = Target's team, 2 = Everyone", 0, true, 0.0, true, 2.0);
g_Cvar_TimeBombMode = CreateConVar("sm_timebomb_mode", "2", "Who is killed by the timebomb? 0 = Target only, 1 = Target's team, 2 = Everyone", 0, true, 0.0, true, 2.0);

// fire
g_Cvar_BurnDuration = CreateConVar("sm_burn_duration", "20.0", "Sets the default duration of sm_burn and firebomb victims.", 0, true, 0.5, true, 20.0);
g_Cvar_FireBombTicks = CreateConVar("sm_firebomb_ticks", "10.0", "Sets how long the FireBomb fuse is.", 0, true, 5.0, true, 120.0);
g_Cvar_BurnDuration = CreateConVar("sm_burn_duration", "30", "Sets the default duration of sm_burn and firebomb victims.", 0, true, 0.5, true, 30.0);
g_Cvar_FireBombTicks = CreateConVar("sm_firebomb_ticks", "5", "Sets how long the FireBomb fuse is.", 0, true, 5.0, true, 120.0);
g_Cvar_FireBombRadius = CreateConVar("sm_firebomb_radius", "600", "Sets the bomb blast radius.", 0, true, 50.0, true, 3000.0);
g_Cvar_FireBombMode = CreateConVar("sm_firebomb_mode", "0", "Who is targetted by the FireBomb? 0 = Target only, 1 = Target's team, 2 = Everyone", 0, true, 0.0, true, 2.0);
g_Cvar_FireBombMode = CreateConVar("sm_firebomb_mode", "2", "Who is targetted by the FireBomb? 0 = Target only, 1 = Target's team, 2 = Everyone", 0, true, 0.0, true, 2.0);

// ice
g_Cvar_FreezeDuration = CreateConVar("sm_freeze_duration", "10.0", "Sets the default duration for sm_freeze and freezebomb victims", 0, true, 1.0, true, 120.0);
g_Cvar_FreezeBombTicks = CreateConVar("sm_freezebomb_ticks", "10.0", "Sets how long the freezebomb fuse is.", 0, true, 5.0, true, 120.0);
g_Cvar_FreezeDuration = CreateConVar("sm_freeze_duration", "10", "Sets the default duration for sm_freeze and freezebomb victims", 0, true, 1.0, true, 120.0);
g_Cvar_FreezeBombTicks = CreateConVar("sm_freezebomb_ticks", "5", "Sets how long the freezebomb fuse is.", 0, true, 5.0, true, 120.0);
g_Cvar_FreezeBombRadius = CreateConVar("sm_freezebomb_radius", "600", "Sets the freezebomb blast radius.", 0, true, 50.0, true, 3000.0);
g_Cvar_FreezeBombMode = CreateConVar("sm_freezebomb_mode", "0", "Who is targetted by the freezebomb? 0 = Target only, 1 = Target's team, 2 = Everyone", 0, true, 0.0, true, 2.0);
g_Cvar_FreezeBombMode = CreateConVar("sm_freezebomb_mode", "2", "Who is targetted by the freezebomb? 0 = Target only, 1 = Target's team, 2 = Everyone", 0, true, 0.0, true, 2.0);

AutoExecConfig(true, "funcommands");
}
Expand Down

0 comments on commit 4ffbfcc

Please sign in to comment.