Advertisement
sharpgamers4you

Black Ops III ModTools Ascension Power Script

Jan 7th, 2021
1,491
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 2.28 KB | None | 0 0
  1. Hey,
  2. thanks for downloading/using my black&white vision script!
  3.  
  4. now before we jump into the installation let's start by giving credits.
  5.  
  6. This was done before by NateSmithZombies (maybe not exactly the same).
  7. I also got help from 2 awesome friends so simply copy and paste the following into your credit section:
  8.  
  9. Credits to:
  10. NateSmithZombies - Original idea of the bw vision.
  11. Sharpgamers4you - re-creating the black and white scripts from scratch.
  12. Killjoy - Helping out for things I needed to add in zone.
  13. Scary Branden - Helping out to figure out possible ways to achieve this.
  14. Black Ops III Modtools community - Discord server(s), Forums, and such.
  15.  
  16.  
  17. INSTALLATION!
  18. --------------------
  19.  
  20. First things first!
  21.  
  22. Now open YOURMAPNAME.GSC (Not CSC)
  23.  
  24. Find the section of all #using
  25.  
  26. paste the following under the last #using:
  27.  
  28.  
  29. //Sharpgamers4you's Black & White Vision
  30. #using scripts\zm\_zm_laststand;
  31. //#using scripts\shared\lui_shared; // Remove the "//" to enable a white flash when vision goes back to color
  32.  
  33. Now find the following line:
  34.  
  35. zm_usermap::main();
  36.  
  37. paste this under it:
  38.  
  39.  
  40. thread bw_vision();
  41. Now scroll all the way down and paste the following:
  42.  
  43.  
  44. //Sharpgamers4you's Black & White Vision
  45. function bw_vision()
  46. {
  47.     level flag::wait_till( "initial_blackscreen_passed" ); // You can change this into level.notify - trigger(s) - zones and or any easter egg steps (flags).
  48.     wait(8);
  49. VisionSetNaked( "zombie_last_stand", 8 );
  50.  
  51. thread ending_bw_vision();
  52. }
  53. function ending_bw_vision()
  54. {
  55.     level flag::wait_till( "power_on" );
  56.     lui::screen_flash( 0.2, 0.5, 1.0, 0.8, "white" ); // flash
  57.     wait(0.5);
  58.     VisionSetNaked( "zm_factory", 0.5 );
  59. }
  60.  
  61.  
  62. now open YOURMAPNAME.ZONE
  63.  
  64. paste this anywhere, I would just scroll all the way down and paste it.
  65.  
  66.  
  67. //Sharpgamers4you's Black & White Vision
  68. rawfile,vision/zombie_last_stand.vision
  69. rawfile,vision/zm_factory.vision
  70. now simply select your map, Compile, build lights, and link your map!
  71.  
  72. feel free to let me know if there are any bugs or general question(s) at any time!
  73. I prefer Discord since I will respond faster over there.
  74.  
  75. Feel free to watch the following video for installation and changing the function to trigger use, multiple, and loops. (detailed video tutorial)
  76. https://youtu.be/QTtsyKONPII
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement