Compare commits

..

4 Commits

Author SHA1 Message Date
ce13c9fe45
Update description.txt 2024-04-26 23:32:27 +03:00
b913b0720e
add CHN and CHT localizations
translator: cheungfatzong
https://steamcommunity.com/profiles/76561199126205919
2024-04-26 22:29:52 +03:00
e231d4d7a4
trader & HRG93R fix 2023-10-21 13:46:39 +03:00
cf4542ae8a
upd README.md 2023-09-03 10:29:08 +03:00
6 changed files with 17 additions and 3 deletions

BIN
Localization/CHN/MSKGS.chn Normal file

Binary file not shown.

BIN
Localization/CHT/MSKGS.cht Normal file

Binary file not shown.

View File

@ -32,6 +32,8 @@ function PerkChanged(byte NewPerkIndex, bool bClickedIndex)
}
}
PreviewPerkIndex = NewPerkIndex;
UpdateContainers(MSKGSPC.PerkList[NewPerkIndex].PerkClass, bClickedIndex);
}

View File

@ -11,6 +11,17 @@ function bool IsItemFiltered(STraderItem Item, optional bool bDebug)
if (Item.WeaponDef.default.PlatformRestriction != PR_All && class'KFUnlockManager'.static.IsPlatformRestricted(Item.WeaponDef.default.PlatformRestriction))
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;
}

View File

@ -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.
[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:
https://github.com/GenZmeY/KF2-MSK-GS [b](GNU GPLv3)[/b]

View File

@ -22,10 +22,8 @@ Publishing due to [the closure of the MSK-GS project](https://steamcommunity.com
`git submodule init && git submodule update`
5. Compile:
`./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/`
7. Upload client-side files to steam workshop:
6. Upload to steam workshop:
`./tools/builder -u`
# Usage