OFPEC Forum
Addons & Mods Depot => OFP - Addons & Mods Beta Testing => Topic started by: At.St_Walker on 25 Jan 2003, 00:04:25
-
Hi,
our team (Be45 OPF Mod) has under construction:
1 big "WW2 German grenades pack":
Stielhandgranate 24
Geballte Ledung
HL-Handgranate
Blendkörper 2 H
Hafthohlladung 3
Volkshandgranate 45
Eihandgranate 39
handgranate 43
Panzerwurfmine
Nebelhandgranate 39 and 41
Rollbombe 30kg !
and for 1 "WW2 Russian grenades pack":
"Molotov cocktail"
RGD 33
F1
Some pics and a screenshot of F.O. Foxhole (beta test):
Stielhandgranate 24
(http://digilander.libero.it/storiamilitare/sthgr24.jpg)
Geballte Ledung
(http://digilander.libero.it/storiamilitare/GebLad.jpg)
Geballte Ledung (beta test)
(http://digilander.libero.it/storiamilitare/geballte_ledung.jpg)
F.O. Foxhole
(http://digilander.libero.it/storiamilitare/fo_foxhole.jpg)
(http://digilander.libero.it/storiamilitare/fo_foxhole2.jpg)
At 8)
-
Do these grenades spin in the air when you throw them? Looking very good!
-
Who yeah! :o
-
Mrrrrrrrrrr......
I have made stielhandgrante, but I don't have any textures for it.
BTW: Molotovs cocktail is Finnish, not Russian weapon
EDIT: I made molotov (took me about 2-5 min)
-
Mrrrrrrrrrr......
I have made stielhandgrante, but I don't have any textures for it.
BTW: Molotovs cocktail is Finnish, not Russian weapon
EDIT: I made molotov (took me about 2-5 min)
The name Molotov is related to the known russian foreign secretary of the 1930ies. Molotov's are still widely used as a weapon of terrorists, guerilla forces and revolting citizen since the means necessary to build them are easy to obtain
[...]
Although the german forces like any other, especially the russian, forces made up their own ad-hoc Molotov weapons of glass bottles filled with flammable liquids, the germans also standardised this weapon and factory - mass-produced them in large quantities.
At 8)
-
new pic ! :
(http://digilander.libero.it/storiamilitare/screenshot_german_grenades.jpg)
(http://www.wehrmacht.punkt.pl/glassmine_colection/mod%2024%20caly%20(1).jpg)
At 8)
-
what about some modern russian grenades, like RGD5, RGN, RGO..?? ::)
-
Modern ? MMhh.. not from us, i think..
the cpp for build a grenate:
Cfg Ammo
class Grenade: Default // soldier
{
hit=20;indirectHit=18;indirectHitRange=7;
minRange=15;minRangeProbab=0.30;
midRange=80;midRangeProbab=0.55;
maxRange=150;maxRangeProbab=0.00;
model="your_model.p3d";
cost=40;
simulation=shotShell;
simulationStep=0.05;
//soundHit[]={Explosions\grenade_explosion,db20,1};
soundHit[]={Explosions\expl3,db20,1};
soundFly[]={objects\noise,db-90,1};
soundEngine[]={,db-80,4};
visibleFire=2; // how much is visible when this weapon is fired
audibleFire=0.25;
visibleFireTime=0; // how long is it visible
};
class GrenadeHand: Grenade // soldier
{
//initTime=2.0;
model=handgrenade.p3d;
minRange=40;minRangeProbab=0.10;
midRange=45;midRangeProbab=0.30;
maxRange=60;maxRangeProbab=0.5;
visibleFire=2; // how much is visible when this weapon is fired
audibleFire=0.25;
visibleFireTime=1;
};
Cfg Weapons
class HandGrenade: GrenadeLauncher
{
//--
scopeWeapon = private;
scopeMagazine = public;
magazineType = WeaponSlotItem;
ammo=GrenadeHand;
displayName=$STR_DN_HAND_GRENADE;
displayNameMagazine=$STR_MN_HAND_GRENADE;
shortNameMagazine=$STR_SN_HAND_GRENADE;
initSpeed=22;
maxLeadSpeed = 7;
reloadTime=1.5;
count=1;
sound[]={,db-70,1};
};
At 8)