-
Notifications
You must be signed in to change notification settings - Fork 0
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 #309 from maxcloutier13/dev
Ajout: Lighter medbag + bodybags
- Loading branch information
Showing
13 changed files
with
87 additions
and
48 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
class FSGm_ItemCore; | ||
class InventoryItem_Base_F; | ||
class FSGm_ItemMedicBag: FSGm_ItemCore { | ||
class ItemInfo: InventoryItem_Base_F { | ||
mass = 15; | ||
}; | ||
}; |
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
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
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,36 +1,21 @@ | ||
// Basic basic loadout (Pretty universal) | ||
// === Meds ================================ | ||
for "_i" from 1 to 50 do { | ||
player addItemToBackpack "ACE_fieldDressing"; | ||
}; | ||
for "_i" from 1 to 5 do { | ||
player addItemToBackpack "ACE_salineIV"; | ||
}; | ||
for "_i" from 1 to 5 do { | ||
player addItemToBackpack "ACE_salineIV_500"; | ||
}; | ||
for "_i" from 1 to 5 do { | ||
player addItemToBackpack "ACE_salineIV_250"; | ||
}; | ||
for "_i" from 1 to 20 do { | ||
player addItemToBackpack "FF_Painkiller"; | ||
}; | ||
for "_i" from 1 to 20 do { | ||
player addItemToBackpack "ACE_morphine"; | ||
}; | ||
for "_i" from 1 to 20 do { | ||
player addItemToBackpack "ACE_epinephrine"; | ||
}; | ||
for "_i" from 1 to 4 do { | ||
player addItemToBackpack "ACE_splint"; | ||
}; | ||
for "_i" from 1 to 4 do { | ||
player addItemToBackpack "ACE_tourniquet"; | ||
}; | ||
for "_i" from 1 to 3 do { | ||
player addItemToBackpack "SmokeShellPurple"; | ||
}; | ||
for "_i" from 1 to 50 do {player addItemToBackpack "ACE_fieldDressing";}; | ||
for "_i" from 1 to 5 do {player addItemToBackpack "ACE_salineIV";}; | ||
for "_i" from 1 to 5 do {player addItemToBackpack "ACE_salineIV_500";}; | ||
for "_i" from 1 to 5 do {player addItemToBackpack "ACE_salineIV_250";}; | ||
for "_i" from 1 to 20 do {player addItemToBackpack "FF_Painkiller";}; | ||
for "_i" from 1 to 20 do {player addItemToBackpack "ACE_morphine";}; | ||
for "_i" from 1 to 20 do {player addItemToBackpack "ACE_epinephrine";}; | ||
player addItemToBackpack "ACE_adenosine"; | ||
player addItemToBackpack "ACE_adenosine"; | ||
for "_i" from 1 to 4 do {player addItemToBackpack "ACE_splint";}; | ||
for "_i" from 1 to 4 do {player addItemToBackpack "ACE_tourniquet";}; | ||
for "_i" from 1 to 3 do {player addItemToBackpack "SmokeShellPurple";}; | ||
player addItemToBackpack "FSGm_ItemMedicBag"; | ||
player addItemToBackpack "ACE_SpraypaintRed"; | ||
player addItemToBackpack "ACE_personalAidKit"; | ||
player addItemToBackpack "KNB_PanelRed"; | ||
player addItemToBackpack "KNB_PanelRed"; | ||
for "_i" from 1 to 4 do { | ||
player addItemToBackpack "ACE_bodyBag"; | ||
}; |
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
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
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
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
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
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
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
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
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