Compare commits
4 Commits
workshop_3
...
master
Author | SHA1 | Date | |
---|---|---|---|
ce13c9fe45 | |||
b913b0720e | |||
e231d4d7a4 | |||
cf4542ae8a |
BIN
Localization/CHN/MSKGS.chn
Normal file
BIN
Localization/CHN/MSKGS.chn
Normal file
Binary file not shown.
BIN
Localization/CHT/MSKGS.cht
Normal file
BIN
Localization/CHT/MSKGS.cht
Normal file
Binary file not shown.
@ -32,6 +32,8 @@ function PerkChanged(byte NewPerkIndex, bool bClickedIndex)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PreviewPerkIndex = NewPerkIndex;
|
||||||
|
|
||||||
UpdateContainers(MSKGSPC.PerkList[NewPerkIndex].PerkClass, bClickedIndex);
|
UpdateContainers(MSKGSPC.PerkList[NewPerkIndex].PerkClass, bClickedIndex);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,6 +10,17 @@ function bool IsItemFiltered(STraderItem Item, optional bool bDebug)
|
|||||||
return true;
|
return true;
|
||||||
if (Item.WeaponDef.default.PlatformRestriction != PR_All && class'KFUnlockManager'.static.IsPlatformRestricted(Item.WeaponDef.default.PlatformRestriction))
|
if (Item.WeaponDef.default.PlatformRestriction != PR_All && class'KFUnlockManager'.static.IsPlatformRestricted(Item.WeaponDef.default.PlatformRestriction))
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
if (Has9mmGun())
|
||||||
|
{
|
||||||
|
if ((Item.ClassName == 'KFWeap_HRG_93r' || Item.ClassName == 'KFWeap_HRG_93r_Dual'))
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ((Item.ClassName == 'KFWeap_Pistol_9mm' || Item.ClassName == 'KFWeap_Pistol_Dual9mm'))
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -2,5 +2,8 @@ Mutator providing some functions of [url=https://steamcommunity.com/groups/msk-g
|
|||||||
|
|
||||||
Contains implementations of my ideas and/or combinations of other mutators for compatibility.
|
Contains implementations of my ideas and/or combinations of other mutators for compatibility.
|
||||||
|
|
||||||
|
[b]Translators:[/b]
|
||||||
|
[url=https://steamcommunity.com/profiles/76561199126205919]cheungfatzong[/url] - Traditional [CHT] and Simplified [CHN] Chinese.
|
||||||
|
|
||||||
the [url=https://steamcommunity.com/groups/msk-gs/announcements/detail/3645134002744389126]MSK-GS project is closed[/url], so it's now open source:
|
the [url=https://steamcommunity.com/groups/msk-gs/announcements/detail/3645134002744389126]MSK-GS project is closed[/url], so it's now open source:
|
||||||
https://github.com/GenZmeY/KF2-MSK-GS [b](GNU GPLv3)[/b]
|
https://github.com/GenZmeY/KF2-MSK-GS [b](GNU GPLv3)[/b]
|
||||||
|
@ -22,10 +22,8 @@ Publishing due to [the closure of the MSK-GS project](https://steamcommunity.com
|
|||||||
`git submodule init && git submodule update`
|
`git submodule init && git submodule update`
|
||||||
5. Compile:
|
5. Compile:
|
||||||
`./tools/builder -cb`
|
`./tools/builder -cb`
|
||||||
6. Copy server-side file:
|
|
||||||
`C:\Users\<USERNAME>\Documents\My Games\KillingFloor2\KFGame\Unpublished\BrewedPC\Script\MSKGS-SRV.u`
|
|
||||||
To your kf2 server folder: `/KFGame/BrewedPC/`
|
To your kf2 server folder: `/KFGame/BrewedPC/`
|
||||||
7. Upload client-side files to steam workshop:
|
6. Upload to steam workshop:
|
||||||
`./tools/builder -u`
|
`./tools/builder -u`
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
Loading…
Reference in New Issue
Block a user