// ----------------------------------------------------------------------------- // Sven Co-op v5.17 - Map testing commands // Last updated 5th August, 2018 -- Adam "Adambean" Reece // // Execute this configuration after starting a listen server to add some binds // that will prove useful while testing your map. // // Change any bind you like :) // // Thanks to Silencer for his original list of binds. // // ----------------------------------------------------------------------------- // General CVAR's developer 1 // Enable developer mode. You might want this set to '2' for a // more verbose output in your console, but gets quite spammy. // Binds - modify the key chosen to suit your preferences bind l "cheatsToggle" // Toggle cheats on/off bind - "godmodeToggle" // Toggle god mode bind = "noclipToggle" // Toggle no clipping mode bind k "notargetToggle" // Toggle non-targetable mode bind j "nonsolidToggle" // Toggle non-solid mode bind o "ent_name_ahead; thatinfo" // Show the class, target, and model names of the entity at your target (also prints much more information in your console) bind p "ent_trigger_ahead" // Trigger (toggle) the entity at your target bind ] "giveall" // Give all weapons bind [ "showstatsToggle" // Show/hide stats that don't mean much bind ";" "create rpg_rocket" // Create a rocket where you stand, and fire it where you're looking // Aliases - don't mess with these if you don't know what they do alias cheatsToggle "cheatson" alias cheatson "rcon sv_cheats 1; alias cheatsToggle cheatsoff; say -- Cheats switched ON --" alias cheatsoff "rcon sv_cheats 2; alias cheatsToggle cheatson; say -- Cheats switched OFF --" alias godmodeToggle "godon" alias godon "godmode 1; alias godmodeToggle godoff" alias godoff "godmode 0; alias godmodeToggle godon" alias noclipToggle "noclipon" alias noclipon "cl_noclip 1; alias noclipToggle noclipoff" alias noclipoff "cl_noclip 0; alias noclipToggle noclipon" alias notargetToggle "notargeton" alias notargeton "cl_notarget 1; alias notargetToggle notargetoff" alias notargetoff "cl_notarget 0; alias notargetToggle notargeton" alias nonsolidToggle "nonsolidon" alias nonsolidon "cl_nonsolid 1; alias nonsolidToggle nonsolidoff" alias nonsolidoff "cl_nonsolid 0; alias nonsolidToggle nonsolidon" alias invisibleToggle "invisibleon" alias invisibleon "cl_invisible 1; alias invisibleToggle invisibleoff" alias invisibleoff "cl_invisible 0; alias invisibleToggle invisibleon" alias showstatsToggle "showstatson" alias showstatson "cl_showstats 255; alias showstatsToggle showstatsoff" alias showstatsoff "cl_showstats 0; alias showstatsToggle showstatson" // The following commands will give you a pick-up, but not create it on ground alias lj "give item_longjump" alias health "give item_healthkit" alias bat "give item_battery" alias crowbar "give weapon_crowbar" alias wrench "give weapon_pipewrench" alias medkit "give weapon_medkit" alias grapple "give weapon_grapple" alias 9mm "give weapon_9mmhandgun" alias 357 "give weapon_357" alias uzi "give weapon_uzi" alias uzi2 "give weapon_uziakimbo" alias eagle "give weapon_eagle" alias mp5 "give weapon_mp5" alias shotgun "give weapon_shotgun" alias m16 "give weapon_m16" alias crossbow "give weapon_crossbow" alias rpg "give weapon_rpg" alias gauss "give weapon_gauss" alias egon "give weapon_egon" alias hornet "give weapon_hornetgun" alias gren "give weapon_handgrenade" alias tripmine "give weapon_tripmine" alias satchel "give weapon_satchel" alias snark "give weapon_snark" alias sniper "give weapon_sniperrifle" alias saw "give weapon_saw" alias mini "give weapon_minigun" alias dep "give weapon_displacer" alias shr "give weapon_shockrifle" alias spl "give weapon_sporelauncher" alias amed "give health" // Doesn't always work alias a9mm "give ammo_9mmbox" alias a357 "give ammo_357" alias asg "give ammo_buckshot" alias a556 "give ammo_556" alias aarg "give ammo_ARgrenades" alias arpg "give ammo_rpgclip" alias agauss "give ammo_gaussclip" alias a762 "give ammo_762" alias aspl "give ammo_sporeclip" // The following commands will create a persistent pick-up at your target alias lj-ent "create item_longjump" alias health-ent "create item_healthkit" alias bat-ent "create item_battery" alias crowbar-ent "create weapon_crowbar" alias wrench-ent "create weapon_pipewrench" alias medkit-ent "create weapon_medkit" alias grapple-ent "create weapon_grapple" alias 9mm-ent "create weapon_9mmhandgun" alias 357-ent "create weapon_357" alias uzi-ent "create weapon_uzi" alias uzi2-ent "create weapon_uziakimbo" alias eagle-ent "create weapon_eagle" alias mp5-ent "create weapon_mp5" alias shotgun-ent "create weapon_shotgun" alias m16-ent "create weapon_m16" alias crossbow-ent "create weapon_crossbow" alias rpg-ent "create weapon_rpg" alias gauss-ent "create weapon_gauss" alias egon-ent "create weapon_egon" alias hornet-ent "create weapon_hornetgun" alias gren-ent "create weapon_handgrenade" alias tripmine-ent "create weapon_tripmine" alias satchel-ent "create weapon_satchel" alias snark-ent "create weapon_snark" alias sniper-ent "create weapon_sniperrifle" alias saw-ent "create weapon_saw" alias mini-ent "create weapon_minigun" alias dep-ent "create weapon_displacer" alias shr-ent "create weapon_shockrifle" alias spl-ent "create weapon_sporelauncher" alias amed-ent "create health" // Doesn't always work alias a9mm-ent "create ammo_9mmbox" alias a357-ent "create ammo_357" alias asg-ent "create ammo_buckshot" alias a556-ent "create ammo_556" alias aarg-ent "create ammo_ARgrenades" alias arpg-ent "create ammo_rpgclip" alias agauss-ent "create ammo_gaussclip" alias a762-ent "create ammo_762" alias aspl-ent "create ammo_sporeclip"