archive: push an older version
This commit is contained in:
parent
8daf5ee4f6
commit
f6fd1c1a72
@ -20,7 +20,7 @@
|
||||
#using scripts\shared\vehicle_shared;
|
||||
#using scripts\shared\archetype_shared\archetype_shared;
|
||||
#using scripts\shared\callbacks_shared;
|
||||
//#using scripts\zm\_zm_bgb;
|
||||
// #using scripts\zm\_zm_bgb;
|
||||
|
||||
//Abilities
|
||||
#using scripts\shared\abilities\_ability_player; //DO NOT REMOVE - needed for system registration
|
||||
@ -80,12 +80,12 @@
|
||||
|
||||
function main()
|
||||
{
|
||||
// bgb = self.bgb;
|
||||
// self.var_e610f362[bgb].var_e0b06b47 = 999;
|
||||
// level.pack_a_punch_camo_index = 17;
|
||||
//level.pack_a_punch_camo_index_number_variants = 1;
|
||||
//thread new_pack_a_punch_camo();
|
||||
//level thread OnPlayerConnect();
|
||||
// bgb = self.bgb;
|
||||
// self.var_e610f362[bgb].var_e0b06b47 = 999;
|
||||
// level.pack_a_punch_camo_index = 17;
|
||||
// level.pack_a_punch_camo_index_number_variants = 1;
|
||||
// thread new_pack_a_punch_camo();
|
||||
// level thread OnPlayerConnect();
|
||||
|
||||
|
||||
zm::init();
|
||||
@ -199,43 +199,3 @@ function register_clientfields()
|
||||
clientfield::register( "clientuimodel", "zmhud.swordState", VERSION_SHIP, 4, "int" ); // state: 0 = hidden, 1 = charging, 2 = ready, 3 = inuse, 4 = unavailable (grey), 5 = ele-charging, 6 = ele-ready, 7 = ele-inuse,
|
||||
clientfield::register( "clientuimodel", "zmhud.swordChargeUpdate", VERSION_SHIP, 1, "counter" );
|
||||
}
|
||||
|
||||
/*
|
||||
//Add Pack-a-Punch Camo for All Client's (Advanced Users Only)
|
||||
function new_pack_a_punch_camo()
|
||||
{
|
||||
activated = "";
|
||||
while(1)
|
||||
{
|
||||
|
||||
|
||||
|
||||
if(GetDvarString("pack_a_punch_camo") != "")
|
||||
{
|
||||
|
||||
string = GetDvarString("pack_a_punch_camo");
|
||||
tokenized = StrTok(string, " ");
|
||||
index = Int(tokenized[1]);
|
||||
playername = ToLower(tokenized[0]);
|
||||
|
||||
players = GetPlayers();
|
||||
foreach(player in players)
|
||||
{
|
||||
if (ToLower(player.name) == playername){
|
||||
level.pack_a_punch_camo_index = index;
|
||||
IPrintLnBold("Added new pack_a_punch_camo " + index + " to player: " + playername);
|
||||
}
|
||||
}
|
||||
if (ToLower(playername) == "all"){
|
||||
foreach(player in players){
|
||||
level.pack_a_punch_camo_index = index;
|
||||
IPrintLnBold("Added new pack_a_punch_camo " + index + " to all players");
|
||||
}
|
||||
}
|
||||
|
||||
SetDvar("pack_a_punch_camo", "");
|
||||
}
|
||||
WAIT_SERVER_FRAME;
|
||||
}
|
||||
}
|
||||
*/
|
70
scripts/zm/gametypes/_clientids.gsc
Normal file
70
scripts/zm/gametypes/_clientids.gsc
Normal file
@ -0,0 +1,70 @@
|
||||
#using scripts\codescripts\struct;
|
||||
|
||||
#using scripts\shared\callbacks_shared;
|
||||
#using scripts\shared\system_shared;
|
||||
|
||||
#using scripts\shared\flag_shared; // spawn message flags
|
||||
#using scripts\shared\array_shared; // spawn message array
|
||||
|
||||
#using scripts\zm\_zm_perks; // include zm_perks
|
||||
|
||||
#insert scripts\shared\shared.gsh;
|
||||
|
||||
#namespace clientids;
|
||||
|
||||
REGISTER_SYSTEM( "clientids", &__init__, undefined )
|
||||
|
||||
function __init__()
|
||||
{
|
||||
callback::on_start_gametype( &init );
|
||||
callback::on_connect( &on_player_connect );
|
||||
callback::on_spawned( &on_player_spawned ); // spawn message function
|
||||
}
|
||||
|
||||
function init()
|
||||
{
|
||||
// this is now handled in code ( not lan )
|
||||
// see s_nextScriptClientId
|
||||
level.clientid = 0;
|
||||
// set client dvars
|
||||
SetDvar("r_fog", "0");
|
||||
SetDvar("r_dof_enable", "0");
|
||||
SetDvar("r_lodbiasrigid", "-1000");
|
||||
SetDvar("r_modellodbias", "10");
|
||||
level.perk_purchase_limit = 25; // no perk limit
|
||||
// level.player_starting_points = 500000;
|
||||
}
|
||||
|
||||
function on_player_connect()
|
||||
{
|
||||
self.clientid = matchRecordNewPlayer( self );
|
||||
if ( !isdefined( self.clientid ) || self.clientid == -1 )
|
||||
{
|
||||
self.clientid = level.clientid;
|
||||
level.clientid++; // Is this safe? What if a server runs for a long time and many people join/leave
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function on_player_spawned()
|
||||
{
|
||||
//Spawn Message
|
||||
level flag::wait_till("initial_blackscreen_passed");
|
||||
self iPrintLnBold("Follow ^2@thahrimdon ^7on ^1YouTube ^7& ^6Twitch^7!");
|
||||
// self thread print(); //Print message on knife
|
||||
}
|
||||
|
||||
/*
|
||||
function print()
|
||||
{
|
||||
for(;;)
|
||||
{
|
||||
if(self MeleeButtonPressed())
|
||||
{
|
||||
iPrintLnBold("Follow ^2@thahrimdon ^7on ^1YouTube ^7& ^6Twitch^7!");
|
||||
wait 1;
|
||||
}
|
||||
wait 0.05;
|
||||
}
|
||||
}
|
||||
*/
|
@ -6,28 +6,29 @@ ignore_missing_shipped,core_post_gfx
|
||||
ignore_missing_shipped,core_ui
|
||||
ignore_missing_shipped,core_common
|
||||
stringtable,gamedata/stats/zm/zm_statstable.csv
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\offline_megas\gamedata\stats\zm\zm_statstable.csv,1645414572,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\mods\zm_graphical_npl_dev\gamedata\stats\zm\zm_statstable.csv,1645414572,
|
||||
rawfile,ui/lobbymenubuttons.lua
|
||||
rawfile,mod.cfg
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\mod.cfg,1648552010,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\raw\mod.cfg,1648552010,
|
||||
rawfile,cp_mod.cfg
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\cp_mod.cfg,1648552010,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\raw\cp_mod.cfg,1648552010,
|
||||
rawfile,mp_mod.cfg
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\mp_mod.cfg,1648552010,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\raw\mp_mod.cfg,1648552010,
|
||||
rawfile,zm_mod.cfg
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\zm_mod.cfg,1648552010,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\raw\zm_mod.cfg,1648552010,
|
||||
texturecombo,core_mod
|
||||
assetlist,core_mod
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\gamedata\playeranim\playeranimtypes.txt,1648526392,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\offline_megas\zone_source\core_mod.zone,1664569776,c32d835d,d96d20f8,13121b2a,9338ea83
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\core_mod.class,1648526465,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\core.class,1648526391,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\default.class,1648526548,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\mod_default.class,1648526548,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\base_patch.zpkg,1648526553,5a76b7f7,40123946,eb5bedee,b0ac8d77
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_pre_gfx.csv,1648526740,9a291896,f3713a9b,75a0b66e,703a40af
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_patch.csv,1648526752,414521c8,b00c4bd2,1cb776ba,dd6e2742
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_gfx.csv,1648526675,eb35b869,6f0759a0,375b27d8,7e4abcbc
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_post_gfx.csv,1648526752,c5b160fe,8def529b,2bc851dc,de320c91
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_ui.csv,1648526699,6eac37ef,af745f35,9f02acd6,5ef64937
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_common.csv,1648522383,019dcec6,25201477,4f369f35,6e14d2d0
|
||||
errorcount,0
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\raw\gamedata\playeranim\playeranimtypes.txt,1648526392,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\mods\zm_graphical_npl_dev\zone_source\core_mod.zone,1716915842,d6d05cc3,f1c684db,f690d1bf,e14a282e
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\zone_source\core_mod.class,1648526465,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\zone_source\core.class,1648526391,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\zone_source\default.class,1648526548,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\zone_source\mod_default.class,1648526548,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\zone_source\base_patch.zpkg,1648526553,5a76b7f7,40123946,eb5bedee,b0ac8d77
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\all\assetlist\core_pre_gfx.csv,1648526740,9a291896,f3713a9b,75a0b66e,703a40af
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\all\assetlist\core_patch.csv,1648526752,414521c8,b00c4bd2,1cb776ba,dd6e2742
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\all\assetlist\core_gfx.csv,1648526675,eb35b869,6f0759a0,375b27d8,7e4abcbc
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\all\assetlist\core_post_gfx.csv,1648526752,c5b160fe,8def529b,2bc851dc,de320c91
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\all\assetlist\core_ui.csv,1648526699,6eac37ef,af745f35,9f02acd6,5ef64937
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\all\assetlist\core_common.csv,1648522383,019dcec6,25201477,4f369f35,6e14d2d0
|
||||
errorcount,1
|
||||
|
4
zone_source/all/assetinfo/core_mod.errorlog
Normal file
4
zone_source/all/assetinfo/core_mod.errorlog
Normal file
@ -0,0 +1,4 @@
|
||||
return 1000000
|
||||
^1ERROR: Lua not supported
|
||||
rawfile:ui/lobbymenubuttons.lua
|
||||
csv:zone_source/core_mod.zone
|
@ -1,7 +1,8 @@
|
||||
index,type,name,resident,streamed,parentStack
|
||||
1,string,,0,0,||assetlist
|
||||
2,scriptparsetree,scripts/zm/_load.gsc,4489,0,|zone_source/zm_mod.zone|csv
|
||||
3,scriptparsetree,scripts/zm/_zm_utility.gsc,80804,0,|zone_source/zm_mod.zone|csv
|
||||
4,keyvaluepairs,zm_mod,1118,0,||assetlist
|
||||
5,bgcache,zm_mod,529,0,||assetlist
|
||||
6,assetlist,,64,0,
|
||||
2,scriptparsetree,scripts/zm/gametypes/_clientids.gsc,1485,0,|zone_source/zm_mod.zone|csv
|
||||
3,scriptparsetree,scripts/zm/_load.gsc,4492,0,|zone_source/zm_mod.zone|csv
|
||||
4,scriptparsetree,scripts/zm/_zm_utility.gsc,80804,0,|zone_source/zm_mod.zone|csv
|
||||
5,keyvaluepairs,zm_mod,1118,0,||assetlist
|
||||
6,bgcache,zm_mod,529,0,||assetlist
|
||||
7,assetlist,,80,0,
|
||||
|
|
@ -9,33 +9,36 @@ ignore_missing_shipped,zm_common
|
||||
ignore_missing_shipped,zm_patch
|
||||
ignore_missing_shipped,core_patch
|
||||
ignore_missing_shipped,zm_levelcommon
|
||||
scriptparsetree,scripts/zm/gametypes/_clientids.gsc
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\zm_graphical_nofog_npl\scripts\zm\gametypes\_clientids.gsc,1716430455,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\shared.gsh,1648526443,
|
||||
scriptparsetree,scripts/zm/_load.gsc
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\offline_megas\scripts\zm\_load.gsc,1664600927,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\shared.gsh,1648526443,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\version.gsh,1648526542,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\zm_graphical_nofog_npl\scripts\zm\_load.gsc,1716430413,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\shared.gsh,1648526443,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\version.gsh,1648526542,
|
||||
scriptparsetree,scripts/zm/_zm_utility.gsc
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\offline_megas\scripts\zm\_zm_utility.gsc,1626465360,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\shared.gsh,1648526443,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\statstable_shared.gsh,1648526477,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\zm\_zm_perks.gsh,1648526545,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\zm\_zm_utility.gsh,1648526543,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\zm_graphical_nofog_npl\scripts\zm\_zm_utility.gsc,1626465360,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\shared.gsh,1648526443,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\shared\statstable_shared.gsh,1648526477,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\zm\_zm_perks.gsh,1648526545,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\scripts\zm\_zm_utility.gsh,1648526543,
|
||||
texturecombo,zm_mod
|
||||
assetlist,zm_mod
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\gamedata\playeranim\playeranimtypes.txt,1648526392,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\offline_megas\zone_source\zm_mod.zone,1667516705,c1daa62f,ce1b78cc,d2894cd8,92d5cc9d
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\zm_mod.class,1648526484,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\mod_default.class,1648526548,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\default.class,1648526548,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\base_patch.zpkg,1648526553,5a76b7f7,40123946,eb5bedee,b0ac8d77
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_pre_gfx.csv,1648526740,9a291896,f3713a9b,75a0b66e,703a40af
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_patch.csv,1648526752,414521c8,b00c4bd2,1cb776ba,dd6e2742
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_gfx.csv,1648526675,eb35b869,6f0759a0,375b27d8,7e4abcbc
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_post_gfx.csv,1648526752,c5b160fe,8def529b,2bc851dc,de320c91
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_ui.csv,1648526699,6eac37ef,af745f35,9f02acd6,5ef64937
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_common.csv,1648522383,019dcec6,25201477,4f369f35,6e14d2d0
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\zm_common.csv,1648526773,13082a68,1dc6b820,d17e526c,1388be90
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\zm_patch.csv,1648526699,f50ca787,734c91b5,790ad58b,fcf5905b
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\zm_levelcommon.csv,1648522383,06ed9fcc,ac94969d,4a91c987,d03f89de
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\gamedata\playeranim\playeranimtypes.txt,1648526392,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\zm_graphical_nofog_npl\zone_source\zm_mod.zone,1716429885,8772aa70,57325756,2399bf4b,c9276740
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\zm_mod.class,1648526484,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\mod_default.class,1648526548,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\default.class,1648526548,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\zone_source\base_patch.zpkg,1648526553,5a76b7f7,40123946,eb5bedee,b0ac8d77
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_pre_gfx.csv,1648526740,9a291896,f3713a9b,75a0b66e,703a40af
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_patch.csv,1648526752,414521c8,b00c4bd2,1cb776ba,dd6e2742
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_gfx.csv,1648526675,eb35b869,6f0759a0,375b27d8,7e4abcbc
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_post_gfx.csv,1648526752,c5b160fe,8def529b,2bc851dc,de320c91
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_ui.csv,1648526699,6eac37ef,af745f35,9f02acd6,5ef64937
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\core_common.csv,1648522383,019dcec6,25201477,4f369f35,6e14d2d0
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\zm_common.csv,1648526773,13082a68,1dc6b820,d17e526c,1388be90
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\zm_patch.csv,1648526699,f50ca787,734c91b5,790ad58b,fcf5905b
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\all\assetlist\zm_levelcommon.csv,1648522383,06ed9fcc,ac94969d,4a91c987,d03f89de
|
||||
spawn,expect,core_all
|
||||
spawn,expect,zm_common_all
|
||||
errorcount,0
|
||||
|
@ -53,7 +53,7 @@ leaderboarddef,256,0
|
||||
ddl,64,0
|
||||
glasses,2,0
|
||||
texturelist,8,0
|
||||
scriptparsetree,1024,2
|
||||
scriptparsetree,1024,3
|
||||
keyvaluepairs,64,1
|
||||
vehicle,64,0
|
||||
addon_map_ents,1,0
|
||||
|
|
@ -1,3 +1,4 @@
|
||||
scriptparsetree,scripts/zm/_load.gsc
|
||||
scriptparsetree,scripts/zm/_zm_utility.gsc
|
||||
scriptparsetree,scripts/zm/gametypes/_clientids.gsc
|
||||
keyvaluepairs,zm_mod
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -6,8 +6,6 @@
|
||||
//Unlimited Megas & Mega Selection
|
||||
stringtable,gamedata/stats/zm/zm_statstable.csv
|
||||
|
||||
//rawfile,ui/LobbyMenuButtons.lua
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// you should keep these defaults cfg in core_mod and always include them in your mods this is to prevent the game from hitching when it needs to execute them
|
||||
rawfile,mod.cfg
|
||||
|
@ -13,12 +13,12 @@ ignore_missing_shipped,core_common
|
||||
ignore_missing_shipped,core_common
|
||||
texturecombo,core_mod
|
||||
assetlist,core_mod
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\gamedata\playeranim\playeranimtypes.txt,1648526392,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\offline_megas\zone_source\loc\core_mod.zone,1667517820,a9e2fc49,20ad71a2,ca5fdd24,5518f1ac
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_pre_gfx.csv,1648526745,4f38c8d2,54dbe0ad,a26fe6dd,7ce6fe27
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_patch.csv,1648526694,9ed99688,0848420f,a94e8a4f,6a3cab0a
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_gfx.csv,1648526736,4cd6243d,831296e2,f2d7c4d8,2e2c9159
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_post_gfx.csv,1648526740,6421ae92,8670936d,28c8f4d3,3c4bb4af
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_ui.csv,1648526699,ce3b1916,c358e78d,81b61779,aaf68da4
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_common.csv,1648526727,1d30278c,b8778087,b65b8ce5,1d066b44
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\share\raw\gamedata\playeranim\playeranimtypes.txt,1648526392,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\mods\zm_graphical_npl_dev\zone_source\loc\core_mod.zone,1716915962,a9e2fc49,20ad71a2,ca5fdd24,5518f1ac
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\english\assetlist\core_pre_gfx.csv,1648526745,4f38c8d2,54dbe0ad,a26fe6dd,7ce6fe27
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\english\assetlist\core_patch.csv,1648526694,9ed99688,0848420f,a94e8a4f,6a3cab0a
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\english\assetlist\core_gfx.csv,1648526736,4cd6243d,831296e2,f2d7c4d8,2e2c9159
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\english\assetlist\core_post_gfx.csv,1648526740,6421ae92,8670936d,28c8f4d3,3c4bb4af
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\english\assetlist\core_ui.csv,1648526699,ce3b1916,c358e78d,81b61779,aaf68da4
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III-main\zone_source\english\assetlist\core_common.csv,1648526727,1d30278c,b8778087,b65b8ce5,1d066b44
|
||||
errorcount,0
|
||||
|
@ -21,15 +21,15 @@ ignore_missing_shipped,zm_levelcommon
|
||||
ignore_missing_shipped,zm_levelcommon
|
||||
texturecombo,zm_mod
|
||||
assetlist,zm_mod
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\gamedata\playeranim\playeranimtypes.txt,1648526392,
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\offline_megas\zone_source\loc\zm_mod.zone,1667517823,fb9c0abe,ab2ebb1b,ee42f022,8b98a230
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_pre_gfx.csv,1648526745,4f38c8d2,54dbe0ad,a26fe6dd,7ce6fe27
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_patch.csv,1648526694,9ed99688,0848420f,a94e8a4f,6a3cab0a
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_gfx.csv,1648526736,4cd6243d,831296e2,f2d7c4d8,2e2c9159
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_post_gfx.csv,1648526740,6421ae92,8670936d,28c8f4d3,3c4bb4af
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_ui.csv,1648526699,ce3b1916,c358e78d,81b61779,aaf68da4
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_common.csv,1648526727,1d30278c,b8778087,b65b8ce5,1d066b44
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\zm_common.csv,1648526727,4764b9bb,fb3a876b,3442808c,89244d35
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\zm_patch.csv,1648526740,251e32d9,6d7cd895,06e06a77,cf58ce0a
|
||||
file,D:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\zm_levelcommon.csv,1648526755,1e17d711,32b659cd,978bd5a4,d6624ec2
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\share\raw\gamedata\playeranim\playeranimtypes.txt,1648526392,
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\mods\zm_graphical_nofog_npl\zone_source\loc\zm_mod.zone,1716429971,fb9c0abe,ab2ebb1b,ee42f022,8b98a230
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_pre_gfx.csv,1648526745,4f38c8d2,54dbe0ad,a26fe6dd,7ce6fe27
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_patch.csv,1648526694,9ed99688,0848420f,a94e8a4f,6a3cab0a
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_gfx.csv,1648526736,4cd6243d,831296e2,f2d7c4d8,2e2c9159
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_post_gfx.csv,1648526740,6421ae92,8670936d,28c8f4d3,3c4bb4af
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_ui.csv,1648526699,ce3b1916,c358e78d,81b61779,aaf68da4
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\core_common.csv,1648526727,1d30278c,b8778087,b65b8ce5,1d066b44
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\zm_common.csv,1648526727,4764b9bb,fb3a876b,3442808c,89244d35
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\zm_patch.csv,1648526740,251e32d9,6d7cd895,06e06a77,cf58ce0a
|
||||
file,E:\SteamLibrary\steamapps\common\Call of Duty Black Ops III\zone_source\english\assetlist\zm_levelcommon.csv,1648526755,1e17d711,32b659cd,978bd5a4,d6624ec2
|
||||
errorcount,0
|
||||
|
@ -3,9 +3,14 @@
|
||||
|
||||
#include "zm_mod.class"
|
||||
|
||||
//Welcome Message & Client DVAR's
|
||||
scriptparsetree,scripts/zm/gametypes/_clientids.gsc
|
||||
|
||||
//PAP Camo & Online Game Registration
|
||||
scriptparsetree,scripts/zm/_load.gsc
|
||||
scriptparsetree,scripts/zm/_zm_utility.gsc
|
||||
|
||||
//
|
||||
|
||||
ignore_missing_shipped,core_patch
|
||||
ignore_missing_shipped,zm_levelcommon
|
Loading…
Reference in New Issue
Block a user