Skip to content

Commit be0b3ca

Browse files
TrivveIngramz
authored andcommitted
Promod LIVE V2.19 release
1 parent 8436ce9 commit be0b3ca

File tree

14 files changed

+192
-1176
lines changed

14 files changed

+192
-1176
lines changed

compile.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
@echo off
1010

11-
SET mod_name=pml218
11+
SET mod_name=pml219
1212
SET work_directory=%~dp0
1313
cd %work_directory%
1414

compile_fastfile.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ copy mod.csv ..\..\zone_source /Y
2626
cd ..\..\bin
2727
linker_pc.exe -language english -compress -cleanup mod -verbose
2828

29-
cd ..\mods\pml218
29+
cd ..\mods\pml219
3030
copy ..\..\zone\english\mod.ff
3131

3232
pause

maps/mp/_destructible.gsc

Lines changed: 132 additions & 623 deletions
Large diffs are not rendered by default.

maps/mp/_destructible_types.gsc

Lines changed: 0 additions & 530 deletions
This file was deleted.

maps/mp/gametypes/_globallogic.gsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3130,7 +3130,7 @@ Callback_PlayerDamage( eInflictor, eAttacker, iDamage, iDFlags, sMeansOfDeath, s
31303130
self.attackers[ self.attackers.size ] = eAttacker;
31313131
self.attackerData[eAttacker.clientid] = false;
31323132
}
3133-
if ( WeaponInventoryType( sWeapon ) == "primary" )
3133+
if ( isDefined(sWeapon) && isSubStr("m1014_mp winchester1200_mp mp5_mp uzi_mp ak74u_mp ak47_mp m14_mp mp44_mp g3_mp g36c_mp m16_mp m4_mp m40a3_mp remington700_mp", sWeapon) )
31343134
self.attackerData[eAttacker.clientid] = true;
31353135
}
31363136

mod.csv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ rawfile,maps/createfx/mp_strike_fx.gsc
4848
rawfile,maps/createfx/mp_vacant_fx.gsc
4949

5050
rawfile,maps/mp/_destructible.gsc
51-
rawfile,maps/mp/_destructible_types.gsc
5251
rawfile,maps/mp/_explosive_barrels.gsc
5352
rawfile,maps/mp/_flashgrenades.gsc
5453
rawfile,maps/mp/_load.gsc
@@ -120,5 +119,6 @@ rawfile,shock/damage_mp.shock
120119
sound,promod,,all_mp
121120

122121
stringtable,promod/customStatsTable.csv
122+
stringtable,promod/destructible.csv
123123

124124
xmodel,com_floodlight_on

promod/destructible.csv

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Copyright (c) 2009-2017 Andreas Göransson <andreas.goransson@gmail.com>
2+
# Copyright (c) 2009-2017 Indrek Ardel <indrek@ardel.eu>
3+
#
4+
# This file is part of Call of Duty 4 Promod.
5+
#
6+
# Call of Duty 4 Promod is licensed under Promod Modder Ethical Public License.
7+
# Terms of license can be found in LICENSE.md document bundled with the project.
8+
9+
0,white_smoke,smoke/car_damage_whitesmoke
10+
1,black_smoke,smoke/car_damage_blacksmoke
11+
2,black_smoke_fire,smoke/car_damage_blacksmoke_fire
12+
3,small_vehicle_explosion,explosions/small_vehicle_explosion
13+
4,car_glass_large,props/car_glass_large
14+
5,car_glass_medium,props/car_glass_med
15+
6,light_front,props/car_glass_headlight
16+
7,light_back,props/car_glass_brakelight
17+
18+
8,tag_glass_left_front
19+
9,tag_glass_right_front
20+
10,tag_glass_left_back
21+
11,tag_glass_right_back
22+
12,tag_glass_front
23+
13,tag_glass_back
24+
14,tag_glass_left_back2
25+
15,tag_glass_right_back2
26+
16,tag_light_left_front
27+
17,tag_light_right_front
28+
18,tag_light_left_back
29+
19,tag_light_right_back
30+
20,tag_mirror_right
31+
21,tag_mirror_left

promod/scorebot.gsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ actionTicker()
4949
setDvar( "__promod_defence_score", game["promod_scorebot_defence_ticker_buffer"], true );
5050
setDvar( "__promod_mode", toLower( getDvar( "promod_mode" ) ), true );
5151
setDvar( "__promod_ticker", getDvar( "__promod_ticker" ), true );
52-
setDvar( "__promod_version", "Promod LIVE V2.18 EU", true );
52+
setDvar( "__promod_version", "Promod LIVE V2.19 EU", true );
5353

5454
for(;;)
5555
{

promod/servercheck.gsc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ errorMessage()
7676
if ( (antilag && dedicated == "dedicated LAN server") || (!antilag && dedicated == "dedicated internet server" && !game["PROMOD_PB_OFF"]))
7777
iprintlnbold("^1Server Violation^7: Modified Connection");
7878

79-
if( isDefined( game["PROMOD_MATCH_MODE"] ) && game["PROMOD_MATCH_MODE"] == "match" || toLower( getDvar( "fs_game" ) ) == "mods/pml218" )
79+
if( isDefined( game["PROMOD_MATCH_MODE"] ) && game["PROMOD_MATCH_MODE"] == "match" || toLower( getDvar( "fs_game" ) ) == "mods/pml219" )
8080
{
81-
if( toLower(getDvar("fs_game")) != "mods/pml218" )
81+
if( toLower(getDvar("fs_game")) != "mods/pml219" )
8282
iprintlnbold("^1Server Violation^7: Invalid fs_game value");
8383

8484
iwdnames = strToK( getDvar( "sv_iwdnames" ), " " );
@@ -109,7 +109,7 @@ errorMessage()
109109
iprintlnbold("^1Server Violation^7: Modified Custom IWD File While In Match Mode");
110110
break;
111111

112-
case "pml218":
112+
case "pml219":
113113
if( iwdsums[i] != "1491770436" )
114114
iprintlnbold("^1Server Violation^7: Modified Promod IWD Detected");
115115
iwd_loaded = true;

promod/setvariables.gsc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ main()
3232
game["axis_timeout_called"] = 0;
3333

3434
game["promod_first_readyup_done"] = 0;
35-
game["PROMOD_VERSION"] = "Promod ^1LIVE ^7V2.18 EU";
35+
game["PROMOD_VERSION"] = "Promod ^1LIVE ^7V2.19 EU";
3636
}

0 commit comments

Comments
 (0)