mirror of
https://github.com/JezuzLizard/t6-fastfile-mods.git
synced 2025-06-10 11:17:59 -05:00
Add player model pack mod, add gitignore
This commit is contained in:
33
mp_player_model_pack/scripts/mp/_pmp_precache.gsc
Normal file
33
mp_player_model_pack/scripts/mp/_pmp_precache.gsc
Normal file
@ -0,0 +1,33 @@
|
||||
#define CHARACTER_CSV "mp/pmp_character_table.csv"
|
||||
|
||||
main()
|
||||
{
|
||||
parse_character_table();
|
||||
}
|
||||
|
||||
parse_character_table()
|
||||
{
|
||||
game[ "characters" ] = [];
|
||||
|
||||
for ( index = 0; tablelookuprownum( CHARACTER_CSV, 0, index ) != -1; index++ )
|
||||
{
|
||||
alias = tablelookup( CHARACTER_CSV, 0, index, 1);
|
||||
body_model = tablelookup( CHARACTER_CSV, 0, index, 2);
|
||||
view_model = tablelookup( CHARACTER_CSV, 0, index, 3);
|
||||
team = tablelookup( CHARACTER_CSV, 0, index, 4);
|
||||
class_name = tablelookup( CHARACTER_CSV, 0, index, 5);
|
||||
|
||||
if ( !isDefined( game[ "characters" ][ team ] ) )
|
||||
{
|
||||
game[ "characters" ][ team ] = [];
|
||||
}
|
||||
|
||||
game[ "characters" ][ team ][ alias ] = [];
|
||||
game[ "characters" ][ team ][ alias ][ "body_model" ] = body_model;
|
||||
game[ "characters" ][ team ][ alias ][ "view_model" ] = view_model;
|
||||
game[ "characters" ][ team ][ alias ][ "class_name" ] = class_name;
|
||||
|
||||
precacheModel( body_model );
|
||||
precacheModel( view_model );
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user