Einzelnen Beitrag anzeigen
Alt 05.12.2010, 21:47   #6 (permalink)
Anemia
500 Beiträge
 
Benutzerbild von Anemia
 
Registriert seit: 20.05.2009
Beiträge: 605
Standard

Zitat von Johnny-O-Rama Beitrag anzeigen

hiho allerseits
hab auch noch ne frage und zwar, gibts n scriptbefehl für die description.ext der wie bei der magicbox alle waffen auch aus addons in die description.ext einfügt?
und zwar ohne dass ich alle einzeln eintragen muss?

fetten dank für evtl antworten


Du kannst deine Waffenkiste mit diesem Script füttern, wie Berliner aber schon geschrieben hat, gibt es kein script was die waffen der addons ausließt.


Aber hier ein paar quellen:
ArmA 2: Weapons - Bohemia Interactive Community
ArmAII/ArmAII:OA library of available equipment and objects - Hosted by Armaholic.com
ACE - _weapons | classlist

Achtung in der ammo.sqf sind auch ace waffen und equitment verbaut. Ohne ace wird es wohl eine fehlermeldung geben.

Ammo.sqf
Code:
while {alive _this} do
{
clearweaponcargo _this;
clearmagazinecargo _this;

// WEAPONS//

_this addWeaponCargo ["BAF_L85A2_RIS_ACOG",20];
//_this addWeaponCargo ["BAF_AS50_scoped",20];
//_this addWeaponCargo ["BAF_AS50_TWS",20];
//_this addWeaponCargo ["BAF_LRR_scoped",20];
//_this addWeaponCargo ["BAF_L85A2_RIS_Holo",20];
//_this addWeaponCargo ["BAF_L85A2_UGL_Holo",20];
//_this addWeaponCargo ["BAF_L85A2_RIS_SUSAT",20];
//_this addWeaponCargo ["BAF_L85A2_UGL_SUSAT",20];
//_this addWeaponCargo ["BAF_L85A2_RIS_CWS",20];
//_this addWeaponCargo ["BAF_L85A2_UGL_ACOG",20];
//_this addWeaponCargo ["BAF_L86A2_ACOG",20];
//_this addWeaponCargo ["BAF_L110A1_Aim",20];
//_this addWeaponCargo ["BAF_L7A2_GPMG",20];
//_this addWeaponCargo ["BAF_NLAW_Launcher",20];
_this addWeaponCargo ["M14_EP1",20];
_this addWeaponCargo ["M16A2",20];
_this addWeaponCargo ["M16A2GL",20];
_this addWeaponCargo ["M4A1",20];
_this addWeaponCargo ["M4A3_RCO_GL_EP1",20];
_this addWeaponCargo ["M4A3_CCO_EP1",20];
_this addWeaponCargo ["SCAR_L_CQC_CCO_SD",4];
_this addWeaponCargo ["SCAR_L_CQC",20];
_this addWeaponCargo ["SCAR_L_CQC_Holo",20];
_this addWeaponCargo ["SCAR_L_CQC_EGLM_Holo",20];
_this addWeaponCargo ["SCAR_L_STD_EGLM_RCO",20];
_this addWeaponCargo ["SCAR_L_STD_EGLM_TWS",20];
_this addWeaponCargo ["SCAR_L_STD_HOLO",20];
_this addWeaponCargo ["SCAR_L_STD_Mk4CQT",20];
_this addWeaponCargo ["SCAR_H_CQC_CCO",20];
_this addWeaponCargo ["SCAR_H_CQC_CCO_SD",20];
_this addWeaponCargo ["SCAR_H_STD_EGLM_Spect",20];
//_this addWeaponCargo ["SCAR_H_LNG_Sniper",20];
//_this addWeaponCargo ["SCAR_H_LNG_Sniper_SD",20];
_this addWeaponCargo ["SCAR_H_STD_TWS_SD",20];
_this addWeaponCargo ["G36A_camo",20];
_this addWeaponCargo ["G36C_camo",20];
_this addWeaponCargo ["G36_C_SD_camo",20];
_this addWeaponCargo ["G36K_camo",20];
_this addWeaponCargo ["m240_scoped_EP1",20];
_this addWeaponCargo ["M249_EP1",20];
_this addWeaponCargo ["M249_m145_EP1",20];
_this addWeaponCargo ["M249_TWS_EP1",20];
_this addWeaponCargo ["M60A4_EP1",20];
_this addWeaponCargo ["Mk_48_DES_EP1",20];
_this addWeaponCargo ["MG36_camo",20];
//_this addWeaponCargo ["m107",20];
//_this addWeaponCargo ["m107_TWS_EP1",20];
//_this addWeaponCargo ["M110_NVG_EP1",20];
//_this addWeaponCargo ["M110_TWS_EP1",20];
//_this addWeaponCargo ["M24_des_EP1",20];
_this addWeaponCargo ["glock17_EP1",20];
_this addWeaponCargo ["M9",20];
_this addWeaponCargo ["M9SD",20];
_this addWeaponCargo ["Colt1911",20];
_this addWeaponCargo ["Javelin",20];
_this addWeaponCargo ["M136",20];
_this addWeaponCargo ["MAAWS",20];
_this addWeaponCargo ["Stinger",20];
_this addWeaponCargo ["M47Launcher_EP1",20];
_this addWeaponCargo ["Binocular",25];
_this addWeaponCargo ["Binocular_Vector",30];
_this addWeaponCargo ["NVGoggles",20];
_this addWeaponCargo ["ItemGPS",50];
_this addWeaponCargo ["LaserDesignator",30];

// ACE ITEMS 
_this addWeaponCargo ["ACE_Earplugs",30];
_this addWeaponCargo ["ACE_Map_Tools",30];
_this addWeaponCargo ["ACE_GlassesTactical",30];
_this addWeaponCargo ["ACE_Kestrel4500",30];
_this addWeaponCargo ["ACE_WireCutter",30];
_this addWeaponCargo ["ACE_GlassesLHD_glasses",30];
_this addWeaponCargo ["ACE_GlassesGasMask_US",30];
_this addWeaponCargo ["ACE_DAGR",30];
_this addWeaponCargo ["ACE_G36A1_AG36A1",30];
_this addWeaponCargo ["Sa58V_RCO_EP1",30];
_this addWeaponCargo ["ACE_G3SG1",30];
_this addWeaponCargo ["ACE_G3A3_RSAS",30];
_this addWeaponCargo ["ACE_HK416_D10_AIM",30];
_this addWeaponCargo ["ACE_HK416_D10_COMPM3",30];
_this addWeaponCargo ["ACE_HK416_D10_Holo",30];
_this addWeaponCargo ["ACE_SOC_M4A1_Eotech",30];
_this addWeaponCargo ["ACE_SOC_M4A1_GL",30];
_this addWeaponCargo ["ACE_M27_IAR",30];
_this addWeaponCargo ["m8_carbine",30];
_this addWeaponCargo ["ACE_UMP45",30];
_this addWeaponCargo ["m8_carbineGL",30];
_this addWeaponCargo ["m8_compact",30];
_this addWeaponCargo ["ACE_SOC_M4A1_GL_AIMPOINT",30];





//AMMO//

_this addMagazineCargo ["5Rnd_127x99_as50",500];
_this addMagazineCargo ["5Rnd_86x70_L115A1",500];
_this addMagazineCargo ["200Rnd_556x45_L110A1",500];
_this addMagazineCargo ["NLAW",100];
_this addMagazineCargo ["6Rnd_HE_M203",250];
_this addMagazineCargo ["BAF_L109A1_HE",100];
_this addMagazineCargo ["100Rnd_556x45_M249",500];
_this addMagazineCargo ["BAF_ied_v4",10];
_this addMagazineCargo ["BAF_ied_v3",10];
_this addMagazineCargo ["BAF_ied_v2",10];
_this addMagazineCargo ["BAF_ied_v1",10];
_this addMagazineCargo ["20Rnd_762x51_DMR",100];
_this addMagazineCargo ["20Rnd_762x51_B_SCAR",100];
_this addMagazineCargo ["20Rnd_762x51_SB_SCAR",100];
_this addMagazineCargo ["30Rnd_556x45_Stanag",500];
_this addMagazineCargo ["30Rnd_556x45_StanagSD",200];
_this addMagazineCargo ["30Rnd_556x45_G36",100];
_this addMagazineCargo ["30Rnd_556x45_G36SD",100];
_this addMagazineCargo ["100Rnd_762x51_M240",100];
_this addMagazineCargo ["200Rnd_556x45_M249",100];
_this addMagazineCargo ["100Rnd_556x45_BetaCMag",100];
_this addMagazineCargo ["10Rnd_127x99_m107",100];
_this addMagazineCargo ["5Rnd_762x51_M24",100];
_this addMagazineCargo ["15Rnd_9x19_M9",100];
_this addMagazineCargo ["15Rnd_9x19_M9SD",100];
_this addMagazineCargo ["7Rnd_45ACP_1911",100];
_this addMagazineCargo ["17Rnd_9x19_glock17",100];
_this addMagazineCargo ["1Rnd_HE_M203",50];
_this addMagazineCargo ["1Rnd_Smoke_M203",50];
_this addMagazineCargo ["1Rnd_SmokeGreen_M203",50];
_this addMagazineCargo ["1Rnd_SmokeRed_M203",50];
_this addMagazineCargo ["1Rnd_SmokeYellow_M203",50];
_this addMagazineCargo ["FlareGreen_M203",50];
_this addMagazineCargo ["FlareRed_M203",100];
_this addMagazineCargo ["FlareWhite_M203",100];
_this addMagazineCargo ["FlareYellow_M203",100];
_this addMagazineCargo ["Javelin",50];
_this addMagazineCargo ["M136",50];
_this addMagazineCargo ["MAAWS_HEAT",50];
_this addMagazineCargo ["MAAWS_HEDP",50];
_this addMagazineCargo ["Stinger",50];
_this addMagazineCargo ["Dragon_EP1",50];
_this addMagazineCargo ["LaserBatteries",50];
_this addMagazineCargo ["HandGrenade_West",100];
_this addMagazineCargo ["SmokeShell",50];
_this addMagazineCargo ["SmokeShellGreen",50];
_this addMagazineCargo ["SmokeShellRed",50];
_this addMagazineCargo ["SmokeShellYellow",50];
_this addMagazineCargo ["SmokeShellBlue",50];
_this addMagazineCargo ["SmokeShellPurple",50];
_this addMagazineCargo ["SmokeShellOrange",50];
_this addMagazineCargo ["PipeBomb",50];
_this addMagazineCargo ["Mine",50];
_this addMagazineCargo ["IR_Strobe_Target",50];
_this addMagazineCargo ["IR_Strobe_Marker",50];

        
_this addMagazineCargo ["ACE_100Rnd_556x45_S_BetaCMag",500];
_this addMagazineCargo ["ACE_25Rnd_1143x23_B_UMP45",500];
_this addMagazineCargo ["ACE_1Rnd_HE_M203",500];
_this addMagazineCargo ["ACE_30Rnd_556x45_S_Stanag",500];
_this addMagazineCargo ["30Rnd_762x39_SA58",500];
_this addMagazineCargo ["ACE_30Rnd_556x45_S_Stanag",500];
_this addMagazineCargo ["ACE_20Rnd_762x51_B_G3",500];
_this addMagazineCargo ["ACE_20Rnd_556x45_S_Stanag",500];
_this addMagazineCargo ["30Rnd_556x45_G36",500];
_this addMagazineCargo ["20Rnd_556x45_Stanag",500];


sleep 1800;
};
Anemia ist offline