//Allow player to respawn with his loadout? If true unit will respawn with all ammo from initial save! Set to false to disable this and rely on other scripts! vas_onRespawn = false; //Preload Weapon Config? vas_preload = true; //If limiting weapons its probably best to set this to true so people aren't loading custom loadouts with restricted gear. vas_disableLoadSave = false; //Amount of save/load slots vas_customslots = 9; //9 is actually 10 slots, starts from 0 to whatever you set, so always remember when setting a number to minus by 1, i.e 12 will be 11. /* NOTES ON EDITING! YOU MUST PUT VALID CLASS NAMES IN THE VARIABLES IN AN ARRAY FORMAT, NOT DOING SO WILL RESULT IN BREAKING THE SYSTEM! PLACE THE CLASS NAMES OF GUNS/ITEMS/MAGAZINES/BACKPACKS/GOGGLES IN THE CORRECT ARRAYS! TO DISABLE A SELECTION I.E GOGGLES vas_goggles = [""]; AND THAT WILL DISABLE THE ITEM SELECTION FOR WHATEVER VARIABLE YOU ARE WANTING TO DISABLE! EXAMPLE vas_weapons = ["srifle_EBR_ARCO_point_grip_F","arifle_Khaybar_Holo_mzls_F","arifle_TRG21_GL_F","Binocular"]; vas_magazines = ["30Rnd_65x39_case_mag","20Rnd_762x45_Mag","30Rnd_65x39_caseless_green"]; vas_items = ["ItemMap","ItemGPS","NVGoggles"]; vas_backpacks = ["B_Bergen_sgg_Exp","B_AssaultPack_rgr_Medic"]; vas_goggles = [""]; */ //If the arrays below are empty (as they are now) all weapons, magazines, items, backpacks and goggles will be available //Want to limit VAS to specific weapons? Place the classnames in the array! vas_weapons = ["SWOP_DC15_GRIP","SWOP_DC15SAPistol","ElectroBinocularsW_F"]; //Want to limit VAS to specific magazines? Place the classnames in the array! vas_magazines = ["SWOP_DC15SAPistol_Mag","SWOP_DC15_Mag","DCStun_Mag"]; //Want to limit VAS to specific items? Place the classnames in the array! vas_items = ["ACE_packingBandage","ACE_morphine","ACE_CableTie","ACE_EntrenchingTool","ACE_tourniquet","ACE_EarPlugs","SWOP_DC15S_HoloScope","ItemMap","ItemCompass","tf_microdagr","tf_anprc152_5","ItemcTab",]; //Want to limit backpacks? Place the classnames in the array! vas_backpacks = []; //Want to limit goggles? Place the classnames in the array! vas_glasses = []; // For the uniforms vas_uniforms = ["SWOP_Clonetrooper_501jesse_F_CombatUniform",]; // For the vest vas_vests = ["SWOP_Clonetrooper_P2_501_armorkama_officer"]; // For the helment vas_headgear = ["SWOP_Clonetrooper_501fives_helmet"]; // For the goggles vas_goggles = ["SWOP_Clones_HUD"]; /* NOTES ON EDITING: THIS IS THE SAME AS THE ABOVE VARIABLES, YOU NEED TO KNOW THE CLASS NAME OF THE ITEM YOU ARE RESTRICTING. THIS DOES NOT WORK IN CONJUNCTION WITH THE ABOVE METHOD, THIs IS ONLY FOR RESTRICTING / LIMITING ITEMS FROM VAS AND NOTHING MORE EXAMPLE vas_r_weapons = ["srifle_EBR_F","arifle_MX_GL_F"]; vas_r_items = ["muzzle_snds_H","muzzle_snds_B","muzzle_snds_L","muzzle_snds_H_MG"]; //Removes suppressors from VAS vas_r_goggles = ["G_Diving"]; //Remove diving goggles from VAS */ //Below are variables you can use to restrict certain items from being used. //Remove Weapon vas_r_weapons = []; vas_r_backpacks = []; //Magazines to remove from VAS vas_r_magazines = []; //Items to remove from VAS vas_r_items = []; //Goggles to remove from VAS vas_r_glasses = [];