UGX-Mods Login

or login with an authentication provider below
Sign In with Google
Sign In with Twitter
Sign In with Discord
Sign In with Steam
Sign In with Facebook
Sign In with Twitch

Fog Settings - Zombie Dogs

broken avatar :(
Created 8 years ago
by KhelMho
0 Members and 1 Guest are viewing this topic.
1,636 views
broken avatar :(
×
broken avatar :(
Location: ph
Date Registered: 22 May 2016
Last active: 5 months ago
Posts
225
Respect
Forum Rank
Mr. Elemental
Primary Group
Member
Signature
×
KhelMho's Groups
KhelMho's Contact & Social Links
How can I use the fog settings in boss zombie dogs? Any idea?
Marked as best answer by KhelMho 8 years ago
broken avatar :(
×
broken avatar :(
OnionmanVere Bo21
Location: ieu dnt wnt 2 no
Date Registered: 27 September 2013
Last active: 1 year ago
Posts
1,864
Respect
Forum Rank
Zombie Destroyer
Primary Group
Community Mapper
My Groups
More
Personal Quote
ok
Signature
Aye mate you don't know me so y don't you shut tf up ok buddy :)

×
Scobalula's Groups
Donator ♥ Benevolent Soul who has our eternal gratitude and exclusive access to betas and the donator section of the forum.
Box Mappers Elite
Box Mappers Elite
Community Mapper Has released one or more maps to the UGX-Mods community which have been added to the UGX Map Manager.
Community Scripter Has shown effort and knowledge in the area of scripting while being a part of the UGX-Mods community.
Scobalula's Contact & Social Links
Not sure what you're asking, use the same fog in a boss round?

It's handled in dlc3_code.csc:

Code Snippet
Plaintext
//
// Pulls the fog in
dog_start_monitor()
{
while( 1 )
{
level waittill( "dog_start" );
//SetVolFog( 75.0, 80.0, 380, -40.0, 0.16, 0.204, 0.274, 7 );
//SetVolFog( 229.0, 400.0, 115.0, 200.0, 0.16, 0.204, 0.274, 7 );
SetVolFog( 229.0, 200.0, 380.0, 200.0, 0.1, 0.15, 0.25, 7 );
//VisionSetNaked(0, "zombie_sumpf_dogs", 7 );

}
}


//
// Pulls the fog in
dog_stop_monitor()
{
while( 1 )
{
level waittill( "dog_stop" );
SetVolFog( 230, 580, 460.33, -244.014, 0.65, 0.84, 0.79, 7 );
//VisionSetNaked(0, "zombie_sumpf", 4 );

}
}



 
Loading ...