Add mod.csv to override string table

This commit is contained in:
6arelyFuture 2022-03-18 14:14:01 +00:00
parent 28291843cc
commit f76128e618
No known key found for this signature in database
GPG Key ID: E883E2BC9657D955
3 changed files with 15 additions and 3 deletions

12
raw/mod.csv Normal file
View File

@ -0,0 +1,12 @@
# Add two removed perks
stringtable,mp/perktable.csv
# Override
rawfile,maps/mp/mp_dome.gsc
rawfile,maps/mp/mp_exchange.gsc
rawfile,maps/mp/mp_radar.gsc
rawfile,maps/mp/gametypes/_tweakables.gsc
rawfile,maps/mp/gametypes/infect.gsc
rawfile,mod
1 # Add two removed perks
2 stringtable,mp/perktable.csv
3 # Override
4 rawfile,maps/mp/mp_dome.gsc
5 rawfile,maps/mp/mp_exchange.gsc
6 rawfile,maps/mp/mp_radar.gsc
7 rawfile,maps/mp/gametypes/_tweakables.gsc
8 rawfile,maps/mp/gametypes/infect.gsc
9 rawfile,mod

View File

@ -78,7 +78,7 @@ a0,b1,c2,d3,e4,f5,g6,h7,i8,j9
76,specialty_radararrow,,,,slot_null,,,,
77,specialty_radarjuggernaut,,,,slot_null,,,,
78,specialty_marathon,PERKS_MARATHON,specialty_marathon,PERKS_DESC_MARATHON,perk1,,,specialty_fastmantle,PERKS_MARATHON_PRO
79,specialty_jumpdive,PERKS_JUMPDIVE,specialty_jumpdive,PERKS_DESC_JUMPDIVE,,,,,,
79,specialty_jumpdive,PERKS_JUMPDIVE,specialty_jumpdive,PERKS_DESC_JUMPDIVE,perk1,,,specialty_null,
perk1,0.3333,0.4941,0.6196,,,,,,
perk2,0.5255,0.5686,0.3804,,,,,,
perk3,0.6196,0.3373,0.3373,,,,,,

Can't render this file because it has a wrong number of fields in line 81.

View File

@ -47,6 +47,6 @@ onPlayerConnect()
onPlayerDisconnect()
{
self waittill( "disconnect" );
text = "say \"" + self.name + " ^1Left the server\"\n";
cmdExec( text );
text = self.name + " ^1Left the server";
iPrintLn( text );
}