Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. cAdminFlags = CreateConVar("sm_buildwar_adminflag", "z", "Admin Flags to Give Access to Extra Features", FCVAR_PLUGIN);
  2. cBuildTime = CreateConVar("sm_buildwar_buildtime", "10", "Build time from the round start", FCVAR_PLUGIN);
  3. cSpawnPropDelay = CreateConVar("sm_buildwar_spawnpropdelay", "2.0", "Spawn prop delay", FCVAR_PLUGIN);
  4. cGodMode = CreateConVar("sm_buildwar_godmode", "1", "Enable/Disable godmode in build time", FCVAR_PLUGIN);
  5. cWeaponsMenu = CreateConVar("sm_buildwar_weaponsmenu", "1", "Enable/Disable weapons menu", FCVAR_PLUGIN);
  6. cWeaponsMenuAtBuild = CreateConVar("sm_buildwar_weaponsmenu_atbuild", "0", "Enable/Disable weapons menu at build time", FCVAR_PLUGIN);
  7. cPropsHealth = CreateConVar("sm_buildwar_propshealth", "1000", "Default prop's health", FCVAR_PLUGIN);
  8. cBuildAtAnyTime = CreateConVar("sm_buildwar_build_atwar", "0", "allow/disallow to build after build time", FCVAR_PLUGIN);
  9. cNoBlock = CreateConVar("sm_buildwar_noblock", "1", "Enable/Disable noblock on players", FCVAR_PLUGIN);
  10. cInfAmmo = CreateConVar("sm_buildwar_infammo", "1", "Enable/Disable inf ammo", FCVAR_PLUGIN);
  11. cPortalBothTeams = CreateConVar("sm_buildwar_portal_bothteams", "0", "Enable/Disable to the teams each other's portals", FCVAR_PLUGIN);
  12. cSpawnProtect = CreateConVar("sm_buildwar_spawnprotect", "5", "-2 no spawn protect ,-1 no time limit,0.0> time to spawn protect limit", FCVAR_PLUGIN);
  13. cBreakBonus = CreateConVar("sm_buildwar_breakbonus", "10", "Break bonus", FCVAR_PLUGIN);
  14. cEndType = CreateConVar("sm_buildwar_end_type", "0", "0 til all players die ,0.0 > time til manually end round", FCVAR_PLUGIN);
  15.  
  16.  
  17. g_cvJumpEnable = CreateConVar("sm_buildwar_doublejump_enabled", "1","Enables double-jumping.",FCVAR_PLUGIN)
  18. g_cvJumpBoost = CreateConVar("sm_buildwar_doublejump_boost", "250.0","The amount of vertical boost to apply to double jumps.",FCVAR_PLUGIN);
  19. g_cvJumpMax = CreateConVar("sm_buildwar_doublejump_max", "1","The maximum number of re-jumps allowed while already jumping.",FCVAR_PLUGIN);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement