-
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.
- Loading branch information
Showing
36 changed files
with
368 additions
and
1 deletion.
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,70 @@ | ||
# Basic installer (slightly more advanced than unzip) originally based on | ||
# http://nsis.sourceforge.net/A_simple_installer_with_start_menu_shortcut_and_uninstaller | ||
|
||
# Lets use the so-called "Modern UI" (no, not *that* "Modern UI") | ||
!include MUI2.nsh | ||
|
||
# In a decent script, most settings can be tweaked by editing the !defines at the top here | ||
!define APPNAME "Raven Shield Map - ALICE" | ||
!define COMPANYNAME "Yabsa and KeithZG" | ||
!define DESCRIPTION "Arbitrarily Limited Integrated Combat Environment installer" | ||
|
||
|
||
# Set some general options | ||
RequestExecutionLevel admin ;Require admin rights on NT6+ (When UAC is turned on) | ||
SetCompressor /SOLID lzma | ||
# If we don't find a registry key, assume the default Steam install location for 64-bit Windows | ||
InstallDir "C:\Program Files (x86)\Steam\steamapps\common\Rainbow Six 3 Gold\" | ||
;InstallDirRegKey HKLM "SOFTWARE\G. Michaels Consulting Ltd." "InstallDir" | ||
outFile "RavenShield_map_Alice.exe" | ||
!include LogicLib.nsh | ||
|
||
# This will be in the installer/uninstaller's title bar | ||
Name "${APPNAME}" | ||
|
||
# Set general MUI options | ||
;!define MUI_ICON "Help.ico" | ||
;!define MUI_UNICON "Help.ico" | ||
;!define MUI_HEADERIMAGE_RIGHT | ||
|
||
# Set MUI welcome page options | ||
!define MUI_WELCOMEPAGE_TITLE "ALICE" | ||
!define MUI_WELCOMEPAGE_TEXT "Arbitrarily Limited Integrated Combat Environment" | ||
;!define MUI_WELCOMEFINISHPAGE_BITMAP "welcome.bmp" | ||
|
||
# MUI Finish page options | ||
!define MUI_FINISHPAGE_TEXT "Alright, you've installed the mission, now lets hope that copy protection doesn't fuck you over." | ||
|
||
|
||
# Now defining the pages | ||
!insertmacro MUI_PAGE_WELCOME | ||
!insertmacro MUI_PAGE_DIRECTORY | ||
!insertmacro MUI_PAGE_INSTFILES | ||
!insertmacro MUI_PAGE_FINISH | ||
|
||
!insertmacro MUI_LANGUAGE "English" | ||
|
||
!macro VerifyUserIsAdmin | ||
UserInfo::GetAccountType | ||
pop $0 | ||
${If} $0 != "admin" ;Require admin rights on NT4+ | ||
messageBox mb_iconstop "Administrator rights required!" | ||
setErrorLevel 740 ;ERROR_ELEVATION_REQUIRED | ||
quit | ||
${EndIf} | ||
!macroend | ||
|
||
function .onInit | ||
setShellVarContext all | ||
!insertmacro VerifyUserIsAdmin | ||
functionEnd | ||
|
||
section "install" | ||
# Files for the install directory - to build the installer, these should be in the same directory as the install script (this file) | ||
setOutPath $INSTDIR | ||
# Files added here should be removed by the uninstaller (see section "uninstall") | ||
file /r ALICE\* | ||
# Add any other files for the install directory (license files, app data, etc) here | ||
|
||
sectionEnd | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,73 @@ | ||
[Engine.R6MissionDescription] | ||
version=2 | ||
m_MapName=ALICE | ||
m_ShortName=ALE | ||
LocalizationFile=ALICE | ||
m_TMissionOverview=None | ||
m_RMissionOverview=(X=0,Y=0,W=230,H=130) | ||
m_TWorldMap=Texture'R6MenuBG.MissionConf.RS_M08_ImportExport' | ||
m_RWorldMap=(X=0,Y=0,W=196,H=98) | ||
m_PlayEventControl=None | ||
m_PlayEventClark=None | ||
m_PlayEventSweeney=None | ||
m_PlayMissionIntro=None | ||
m_PlayMissionExtro=None | ||
mod=RavenShield | ||
m_AudioBankName= | ||
m_InGameVoiceClarkBankName= | ||
GameTypes=(Package="R6Game",type="R6StoryModeGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6PracticeModeGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6MissionGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6TerroristHuntGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6TerroristHuntCoopGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6HostageRescueGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6HostageRescueCoopGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6HostageRescueAdvGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6DeathMatch",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6TeamDeathMatchGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6TeamBomb",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6EscortPilotGame",maxNb=16) | ||
GameTypes=(Package="R6Game",type="R6LoneWolfGame",maxNb=1) | ||
GameTypes=(Package="R6Game",type="R6NoRules",maxNb=16) | ||
m_MissionArmorTypes=Class'R6Description.R6DescLight' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMedium' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavy' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightGreyCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumGreyCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyGreyCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightBlue' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumBlue' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyBlue' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightBlueCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumBlueCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyBlueCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightEuroCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumEuroCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyEuroCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightGreen' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumGreen' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyGreen' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightGreenCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumGreenCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyGreenCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightTan' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumTan' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyTan' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightDesertCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumDesertCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyDesertCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightWinter' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumWinter' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyWinter' | ||
m_MissionArmorTypes=Class'R6Description.R6DescLightWinterCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescMediumWinterCamo' | ||
m_MissionArmorTypes=Class'R6Description.R6DescHeavyWinterCamo' | ||
SkinsPerGameTypes=(Package="R6Game",type="R6TeamDeathMatchGame",greenPackage="R6Characters",Green="R6RainbowMediumTan",redPackage="R6Characters",Red="R6RainbowMediumGreyCamo") | ||
SkinsPerGameTypes=(Package="R6Game",type="R6DeathMatch",greenPackage="R6Characters",Green="R6RainbowLightGreenCamo",redPackage="R6Characters",Red="R6RainbowMediumGreyCamo") | ||
SkinsPerGameTypes=(Package="R6Game",type="R6HostageRescueAdvGame",greenPackage="R6Characters",Green="R6RainbowMediumTan",redPackage="R6Characters",Red="R6RainbowMediumGreyCamo") | ||
SkinsPerGameTypes=(Package="R6Game",type="R6TeamBomb",greenPackage="R6Characters",Green="R6RainbowMediumTan",redPackage="R6Characters",Red="R6RainbowMediumGreyCamo") | ||
SkinsPerGameTypes=(Package="R6Game",type="R6EscortPilotGame",greenPackage="R6Characters",Green="R6RainbowMediumTan",redPackage="R6Characters",Red="R6RainbowMediumGreyCamo") | ||
SkinsPerGameTypes=(Package="R6Game",type="R6TerroristHuntCoopGame",greenPackage="R6Characters",Green="R6RainbowLightEuro",redPackage="R6Characters",Red=")") | ||
SkinsPerGameTypes=(Package="R6Game",type="R6HostageRescueCoopGame",greenPackage="R6Characters",Green="R6RainbowMediumEuro",redPackage="R6Characters",Red=")") | ||
SkinsPerGameTypes=(Package="R6Game",type="R6MissionGame",greenPackage="R6Characters",Green="R6Rainbowlightdesertcamo",redPackage="R6Characters",Red=")") | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,39 @@ | ||
Version=5 | ||
|
||
Type=Terrorist | ||
|
||
NbOfPawn=1 | ||
100, R6Characters.R6TBusiness04 | ||
|
||
NbOfWeapon=4 | ||
010, R63rdWeapons.CMagAssaultL85A1 | ||
010, R63rdWeapons.CMagAssaultTAR21 | ||
040, R63rdWeapons.CMagAssaultFAMASG2 | ||
040, R63rdWeapons.CMagSubUMP | ||
|
||
NbOfGrenade=3 | ||
001, R6Weapons.R6FalseHBGadget | ||
025, R6Weapons.R6FragGrenadeGadget | ||
074, None.None | ||
|
||
Coward=10 | ||
DeskJockey=10 | ||
Normal=79 | ||
Hardened=0 | ||
SuicideBomber=1 | ||
PSniper=0 | ||
|
||
RndVariation=5 | ||
Assault=33 | ||
Demolitions=0 | ||
Electronics=0 | ||
SSniper=0 | ||
Stealth=0 | ||
SelfControl=20 | ||
Leadership=0 | ||
Observation=60 | ||
|
||
Flashlight=45 | ||
Glasses=45 | ||
Sunglasses=45 | ||
Helmet=10 |
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,56 @@ | ||
Version=5 | ||
|
||
Type=Terrorist | ||
|
||
NbOfPawn=1 | ||
100, R6Characters.R6TTropical1 | ||
|
||
NbOfWeapon=20 | ||
005, R63rdWeapons.BuckShotgunUSAS12 | ||
005, R63rdWeapons.NormalAssaultFAL | ||
005, R63rdWeapons.NormalAssaultFAMASG2 | ||
005, R63rdWeapons.NormalAssaultM82 | ||
005, R63rdWeapons.NormalAssaultType97 | ||
005, R63rdWeapons.NormalLMGRPD | ||
005, R63rdWeapons.NormalPistolAPArmy | ||
005, R63rdWeapons.NormalPistolDesertEagle357 | ||
005, R63rdWeapons.NormalPistolP228 | ||
005, R63rdWeapons.NormalPistolUSP | ||
005, R63rdWeapons.NormalSniperSSG3000 | ||
005, R63rdWeapons.NormalSniperWA2000 | ||
005, R63rdWeapons.NormalSubCZ61 | ||
005, R63rdWeapons.NormalSubM12S | ||
005, R63rdWeapons.NormalSubMac119 | ||
005, R63rdWeapons.NormalSubMicroUzi | ||
005, R63rdWeapons.NormalSubMP510A2 | ||
005, R63rdWeapons.NormalSubMP5KPDW | ||
005, R63rdWeapons.SilencedPistolAPArmy | ||
005, R63rdWeapons.SlugShotgunSPAS12 | ||
|
||
NbOfGrenade=4 | ||
005, R6Weapons.R6FalseHBGadget | ||
005, R6Weapons.R6FlashBangGadget | ||
010, R6Weapons.R6TearGasGrenadeGadget | ||
080, None.None | ||
|
||
Coward=0 | ||
DeskJockey=0 | ||
Normal=20 | ||
Hardened=50 | ||
SuicideBomber=25 | ||
PSniper=5 | ||
|
||
RndVariation=8 | ||
Assault=75 | ||
Demolitions=89 | ||
Electronics=70 | ||
SSniper=90 | ||
Stealth=80 | ||
SelfControl=100 | ||
Leadership=90 | ||
Observation=50 | ||
|
||
Flashlight=90 | ||
Glasses=98 | ||
Sunglasses=2 | ||
Helmet=0 |
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,39 @@ | ||
Version=5 | ||
|
||
Type=Terrorist | ||
|
||
NbOfPawn=1 | ||
100, R6Characters.R6TDrug1 | ||
|
||
NbOfWeapon=2 | ||
050, R63rdWeapons.NormalLMG21E | ||
050, R63rdWeapons.NormalSubP90 | ||
|
||
NbOfGrenade=5 | ||
001, R6Weapons.R6FalseHBGadget | ||
001, R6Weapons.R6FragGrenadeGadget | ||
003, R6Weapons.R6FlashBangGadget | ||
010, R6Weapons.R6TearGasGrenadeGadget | ||
085, None.None | ||
|
||
Coward=0 | ||
DeskJockey=0 | ||
Normal=0 | ||
Hardened=45 | ||
SuicideBomber=10 | ||
PSniper=45 | ||
|
||
RndVariation=60 | ||
Assault=70 | ||
Demolitions=100 | ||
Electronics=100 | ||
SSniper=40 | ||
Stealth=70 | ||
SelfControl=100 | ||
Leadership=80 | ||
Observation=70 | ||
|
||
Flashlight=1 | ||
Glasses=2 | ||
Sunglasses=20 | ||
Helmet=0 |
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,38 @@ | ||
Version=5 | ||
|
||
Type=Terrorist | ||
|
||
NbOfPawn=1 | ||
100, R6Characters.R6TParamilitary02 | ||
|
||
NbOfWeapon=2 | ||
050, R63rdWeapons.CMagAssaultAK47 | ||
050, R63rdWeapons.SilencedSniperAWCovert | ||
|
||
NbOfGrenade=4 | ||
001, R6Weapons.R6FlashBangGadget | ||
005, R6Weapons.R6FragGrenadeGadget | ||
005, R6Weapons.R6TearGasGrenadeGadget | ||
089, None.None | ||
|
||
Coward=0 | ||
DeskJockey=0 | ||
Normal=40 | ||
Hardened=5 | ||
SuicideBomber=1 | ||
PSniper=54 | ||
|
||
RndVariation=5 | ||
Assault=60 | ||
Demolitions=0 | ||
Electronics=30 | ||
SSniper=100 | ||
Stealth=30 | ||
SelfControl=100 | ||
Leadership=10 | ||
Observation=10 | ||
|
||
Flashlight=100 | ||
Glasses=99 | ||
Sunglasses=1 | ||
Helmet=0 |
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,49 @@ | ||
Version=5 | ||
|
||
Type=Terrorist | ||
|
||
NbOfPawn=8 | ||
010, R6Characters.R6TMilitant01 | ||
010, R6Characters.R6TMilitant02 | ||
010, R6Characters.R6TMilitant03 | ||
010, R6Characters.R6TMilitant04 | ||
010, R6Characters.R6TSkinhead1 | ||
010, R6Characters.R6TTropical3 | ||
010, R6Characters.R6TTropical4 | ||
030, R6Characters.R6TSkinhead2 | ||
|
||
NbOfWeapon=8 | ||
005, R63rdWeapons.NormalPistolSR2 | ||
010, R63rdWeapons.CMagPistolMac119 | ||
010, R63rdWeapons.NormalPistolCZ61 | ||
015, R63rdWeapons.NormalPistol92FS | ||
015, R63rdWeapons.NormalPistolAPArmy | ||
015, R63rdWeapons.NormalPistolP228 | ||
015, R63rdWeapons.NormalPistolSPP | ||
015, R63rdWeapons.NormalPistolUSP | ||
|
||
NbOfGrenade=2 | ||
010, R6Weapons.R6FragGrenadeGadget | ||
090, None.None | ||
|
||
Coward=25 | ||
DeskJockey=10 | ||
Normal=60 | ||
Hardened=4 | ||
SuicideBomber=1 | ||
PSniper=0 | ||
|
||
RndVariation=10 | ||
Assault=70 | ||
Demolitions=0 | ||
Electronics=0 | ||
SSniper=0 | ||
Stealth=60 | ||
SelfControl=40 | ||
Leadership=30 | ||
Observation=70 | ||
|
||
Flashlight=5 | ||
Glasses=50 | ||
Sunglasses=10 | ||
Helmet=0 |
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