Modme Forums

Ascension Style Power!

Game Modding | Call of Duty: Black Ops 3 | Scripting


sharpgamers4you:

Hey,
So I've noticed a few people still need/want the script to change the vision.
This tutorial is focusing on setting all player's vision to black and white until the power turns on just like in Ascension.

I also gave people the chance to vote for a tutorial and a tutorial video so here we go.

INSTALLATION!
--------------------

First things first!

Now open YOURMAPNAME.GSC (Not CSC)

Find the section of all #using

paste the following under the last #using:

//Sharpgamers4you's Black & White Vision
#using scripts\zm\_zm_laststand;
//#using scripts\shared\lui_shared; // Remove the "//" to enable a white flash when vision goes back to color


Now find the following line:

zm_usermap::main();

paste this under it:

thread bw_vision();

Now scroll all the way down and paste the following:

//Sharpgamers4you's Black & White Vision
function bw_vision()
{
    level flag::wait_till( "initial_blackscreen_passed" ); // You can change this into level.notify - trigger(s) - zones and or any easter egg steps (flags).
    wait(8);
VisionSetNaked( "zombie_last_stand", 8 );

thread ending_bw_vision();
}
function ending_bw_vision()
{
    level flag::wait_till( "power_on" );
    lui::screen_flash( 0.2, 0.5, 1.0, 0.8, "white" ); // flash
    wait(0.5);
    VisionSetNaked( "zm_factory", 0.5 );
}



now open YOURMAPNAME.ZONE

paste this anywhere, I would just scroll all the way down and paste it.

//Sharpgamers4you's Black & White Vision
rawfile,vision/zombie_last_stand.vision
rawfile,vision/zm_factory.vision

now simply select your map, Compile, build lights and link your map!

feel free to let me know if there are any bugs or general question(s) at any time!
I prefer Discord since I will respond faster over there.

Feel free to watch the following video for installation and changing the function to trigger use, multiple, and loops. (detailed video tutorial)


Credits to:
NateSmithZombies - Original idea of the bw vision.
Sharpgamers4you - re-creating the black and white scripts from scratch.
Killjoy - Helping out for things I needed to add in zone.
Scary Branden - Helping out to figure out possible ways to achieve this.
Black Ops III Modtools community - Discord server(s), Forums and such.

https://pastebin.com/AXmsKn4X


777tones:

It works! But when you get downed and get revived the black and white filter goes away


sharpgamers4you:

It works! But when you get downed and get revived the black and white filter goes away

Oh okay i will add a fix for that after work thanks bro


ItzRexx-_-:

use [{+activate}] rather than &&1


sharpgamers4you:

use [{+activate}] rather than &&1

What is the different, cuz idk tbh


ItzRexx-_-:

What is the different, cuz idk tbh

right way to do it, its in the files