diff options
author | Maya <11448698+RoyalBlue1@users.noreply.github.com> | 2023-12-14 01:31:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 01:31:37 +0100 |
commit | f4df3144adbd45d48d812d102cfaf7cef474824e (patch) | |
tree | 64c893be449445391aa9f035357cf8f40a0c2b3b /Northstar.Custom/mod/scripts/vscripts/_event_models.gnut | |
parent | 7140cce045a94b4d8e02b347bb2e8b6bfc9c7c89 (diff) | |
download | NorthstarMods-f4df3144adbd45d48d812d102cfaf7cef474824e.tar.gz NorthstarMods-f4df3144adbd45d48d812d102cfaf7cef474824e.zip |
Add Winter holiday event models to the lobby (#768)
Adds decorative models to the lobby map that will only display during winter holiday season.
Diffstat (limited to 'Northstar.Custom/mod/scripts/vscripts/_event_models.gnut')
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/_event_models.gnut | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/_event_models.gnut b/Northstar.Custom/mod/scripts/vscripts/_event_models.gnut new file mode 100644 index 00000000..0802d769 --- /dev/null +++ b/Northstar.Custom/mod/scripts/vscripts/_event_models.gnut @@ -0,0 +1,21 @@ +global function EventModelsInit + +void function EventModelsInit() +{ + if( !GetConVarBool( "ns_show_event_models" ) ) + return + + table timeParts = GetUnixTimeParts() + int month = expect int( timeParts[ "month" ] ) + int day = expect int( timeParts[ "day" ] ) + + // 18th December to 6th January + if( ( ( month == 12 ) && ( day >= 18 ) ) || ( ( month == 1 ) && ( day <= 6 ) ) ) + { + PrecacheModel( $"models/northstartee/winter_holiday_tree.mdl" ) + PrecacheModel( $"models/northstartree/winter_holiday_floor.mdl" ) + + CreatePropDynamic( $"models/northstartree/winter_holiday_tree.mdl", < -60, 740, 30 >, < 0, 0, 0 >, SOLID_VPHYSICS, 1000 ) + CreatePropDynamic( $"models/northstartree/winter_holiday_floor.mdl", < -60, 740, 30 >, < 0, 0, 0 >, SOLID_VPHYSICS, 1000 ) + } +} |