-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from diwako/general_update
General update
- Loading branch information
Showing
47 changed files
with
1,759 additions
and
1,646 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
class cfgAmmo { | ||
class GrenadeHand_stone; | ||
class GrenadeHand_stone; | ||
|
||
class bolt_ammo: GrenadeHand_stone | ||
{ | ||
model = "\diwako_anomalies\data\models\bolt.p3d"; | ||
SoundSetExplosion[] = {""}; | ||
explosive = 0; | ||
explosionEffectsRadius = 0; | ||
explosionSoundEffect = ""; | ||
CraterWaterEffects = ""; | ||
explosionType = ""; | ||
timeToLive = 20; | ||
explosionTime = 25; | ||
}; | ||
class bolt_ammo: GrenadeHand_stone | ||
{ | ||
model = "\diwako_anomalies\data\models\bolt.p3d"; | ||
SoundSetExplosion[] = {""}; | ||
explosive = 0; | ||
explosionEffectsRadius = 0; | ||
explosionSoundEffect = ""; | ||
CraterWaterEffects = ""; | ||
explosionType = ""; | ||
timeToLive = 20; | ||
explosionTime = 25; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
class CfgFactionClasses { | ||
class NO_CATEGORY; | ||
class DIW_ANOMALY: NO_CATEGORY | ||
{ | ||
displayName = "$STR_anomaly_category"; | ||
}; | ||
class NO_CATEGORY; | ||
class DIW_ANOMALY: NO_CATEGORY | ||
{ | ||
displayName = "$STR_anomaly_category"; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,65 @@ | ||
class cfgFunctions { | ||
class anomaly { | ||
tag="anomaly"; | ||
class functions { | ||
file = "diwako_anomalies\functions\anomalies"; | ||
class createSpringboard; | ||
class activateSpringboard; | ||
class createMeatgrinder; | ||
class activateMeatgrinder; | ||
class createElectra; | ||
class activateElectra; | ||
class createBurner; | ||
class activateBurner; | ||
class createTeleport; | ||
class activateTeleport; | ||
class teleportFlash; | ||
class minceCorpse; | ||
class suckToLocation; | ||
class init; | ||
class hasItem; | ||
class deleteParticleSource; | ||
class deleteAnomalies; | ||
class throwBolt; | ||
class createAnomalyField; | ||
class getLocationFromModule; | ||
class createFog; | ||
class activateFog; | ||
class createFruitPunch; | ||
class activateFruitPunch; | ||
class setTrigger; | ||
class setLight; | ||
}; | ||
}; | ||
class anomalyEffect { | ||
tag="anomalyEffect"; | ||
class functions { | ||
file = "diwako_anomalies\functions\effects\anomalies"; | ||
class springboard; | ||
class meatgrinder; | ||
class electra; | ||
class burner; | ||
class teleport; | ||
class fog; | ||
class fruitPunch; | ||
}; | ||
}; | ||
class anomalyDetector { | ||
tag="anomalyDetector"; | ||
class functions{ | ||
file = "diwako_anomalies\functions\detector"; | ||
class detector; | ||
}; | ||
}; | ||
//functions added by Belbo: | ||
class added { | ||
tag="anomaly"; | ||
class functions{ | ||
file = "diwako_anomalies\functions\added"; | ||
class autoInit {postInit = 1;}; | ||
class throwEVH {postInit = 1;}; | ||
class grenadeBolt; | ||
class registerSettings; | ||
}; | ||
}; | ||
class anomaly { | ||
tag="anomaly"; | ||
class functions { | ||
file = "diwako_anomalies\functions\anomalies"; | ||
class createSpringboard; | ||
class activateSpringboard; | ||
class createMeatgrinder; | ||
class activateMeatgrinder; | ||
class createElectra; | ||
class activateElectra; | ||
class createBurner; | ||
class activateBurner; | ||
class createTeleport; | ||
class activateTeleport; | ||
class teleportFlash; | ||
class minceCorpse; | ||
class suckToLocation; | ||
class init; | ||
class hasItem; | ||
class deleteParticleSource; | ||
class deleteAnomalies; | ||
class throwBolt; | ||
class createAnomalyField; | ||
class getLocationFromModule; | ||
class createFog; | ||
class activateFog; | ||
class createFruitPunch; | ||
class activateFruitPunch; | ||
class setTrigger; | ||
class setLight; | ||
}; | ||
}; | ||
class anomalyEffect { | ||
tag="anomalyEffect"; | ||
class functions { | ||
file = "diwako_anomalies\functions\effects\anomalies"; | ||
class springboard; | ||
class meatgrinder; | ||
class electra; | ||
class burner; | ||
class teleport; | ||
class fog; | ||
class fruitPunch; | ||
}; | ||
}; | ||
class anomalyDetector { | ||
tag="anomalyDetector"; | ||
class functions{ | ||
file = "diwako_anomalies\functions\detector"; | ||
class detector; | ||
}; | ||
}; | ||
//functions added by Belbo: | ||
class added { | ||
tag="anomaly"; | ||
class functions{ | ||
file = "diwako_anomalies\functions\added"; | ||
class autoInit {postInit = 1;}; | ||
class throwEVH {postInit = 1;}; | ||
class grenadeBolt; | ||
class registerSettings; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
class cfgMagazines { | ||
class HandGrenade_Stone; | ||
class HandGrenade_Stone; | ||
|
||
class bolts_infinite_mag : HandGrenade_Stone { | ||
ammo = "bolt_ammo"; | ||
scope = 2; | ||
count = 9999; | ||
mass = 20; | ||
descriptionShort = "$STR_anomaly_bolt_bag_desc"; | ||
displayName = "$STR_anomaly_bolt_bag"; | ||
displayNameShort = "$STR_anomaly_bolt_bag"; | ||
model = "\A3\weapons_F\ammo\mag_univ.p3d"; | ||
/*picture = "\diwako_anomalies\data\ui\bolts.paa";*/ | ||
picture = "\A3\Weapons_f\data\UI\gear_satchel_CA.paa"; | ||
author = "diwako"; | ||
}; | ||
class bolts_infinite_mag : HandGrenade_Stone { | ||
ammo = "bolt_ammo"; | ||
scope = 2; | ||
count = 9999; | ||
mass = 20; | ||
descriptionShort = "$STR_anomaly_bolt_bag_desc"; | ||
displayName = "$STR_anomaly_bolt_bag"; | ||
displayNameShort = "$STR_anomaly_bolt_bag"; | ||
model = "\A3\weapons_F\ammo\mag_univ.p3d"; | ||
/*picture = "\diwako_anomalies\data\ui\bolts.paa";*/ | ||
picture = "\A3\Weapons_f\data\UI\gear_satchel_CA.paa"; | ||
author = "diwako"; | ||
}; | ||
|
||
class bolts_one_mag : bolts_infinite_mag { | ||
scope = 2; | ||
mass = 1; | ||
displayName = "$STR_anomaly_bolt"; | ||
displayNameShort = "$STR_anomaly_bolt"; | ||
descriptionShort = "$STR_anomaly_bolt_desc"; | ||
picture = "\diwako_anomalies\data\ui\bolts.paa"; | ||
model = "\diwako_anomalies\data\models\bolt.p3d"; | ||
count = 1; | ||
ammo = "bolt_ammo"; | ||
author = "diwako"; | ||
}; | ||
class bolts_one_mag : bolts_infinite_mag { | ||
scope = 2; | ||
mass = 1; | ||
displayName = "$STR_anomaly_bolt"; | ||
displayNameShort = "$STR_anomaly_bolt"; | ||
descriptionShort = "$STR_anomaly_bolt_desc"; | ||
picture = "\diwako_anomalies\data\ui\bolts.paa"; | ||
model = "\diwako_anomalies\data\models\bolt.p3d"; | ||
count = 1; | ||
ammo = "bolt_ammo"; | ||
author = "diwako"; | ||
}; | ||
}; |
Oops, something went wrong.