Fix missing files in PackageScript from previous commit
This commit is contained in:
parent
f82455dd84
commit
0b5584a334
|
@ -35,6 +35,18 @@ folder_list = [
|
||||||
'base/addons/amxmodx/data/gamedata/common.games/gamerules.games/tfc',
|
'base/addons/amxmodx/data/gamedata/common.games/gamerules.games/tfc',
|
||||||
'base/addons/amxmodx/data/gamedata/common.games/gamerules.games/gearbox',
|
'base/addons/amxmodx/data/gamedata/common.games/gamerules.games/gearbox',
|
||||||
'base/addons/amxmodx/data/gamedata/common.games/gamerules.games/valve',
|
'base/addons/amxmodx/data/gamedata/common.games/gamerules.games/valve',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/ag',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/cstrike',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/dod',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/esf',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/esf_openbeta',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/gearbox',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/ns',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/svencoop',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/tfc',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/ts',
|
||||||
|
'base/addons/amxmodx/data/gamedata/common.games/virtual.games/valve',
|
||||||
'base/addons/amxmodx/data/gamedata/modules.games',
|
'base/addons/amxmodx/data/gamedata/modules.games',
|
||||||
'base/addons/amxmodx/data/lang',
|
'base/addons/amxmodx/data/lang',
|
||||||
'base/addons/amxmodx/dlls',
|
'base/addons/amxmodx/dlls',
|
||||||
|
@ -418,6 +430,72 @@ CopyFiles('gamedata/common.games', 'base/addons/amxmodx/data/gamedata/common.gam
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/ag', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/ag',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/cstrike', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/cstrike',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/dod', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/dod',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/esf', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/esf',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/esf_openbeta', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/esf_openbeta',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/gearbox', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/gearbox',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/ns', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/ns',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/svencoop', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/svencoop',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/tfc', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/tfc',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/ts', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/ts',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
CopyFiles('gamedata/common.games/virtual.games/valve', 'base/addons/amxmodx/data/gamedata/common.games/virtual.games/valve',
|
||||||
|
[
|
||||||
|
'offsets-common.txt',
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
CopyFiles('gamedata/common.games/hostages.games/cstrike', 'base/addons/amxmodx/data/gamedata/common.games/hostages.games/cstrike',
|
CopyFiles('gamedata/common.games/hostages.games/cstrike', 'base/addons/amxmodx/data/gamedata/common.games/hostages.games/cstrike',
|
||||||
[
|
[
|
||||||
'offsets-chostageimprov.txt',
|
'offsets-chostageimprov.txt',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user