RogerStarbuck Posted February 9, 2016 Share Posted February 9, 2016 My modding skills are amateur at best. I tried to get Cat potion effect to activate with Geralt's Witcher Sense but all i got was permanent Cat effect when I activated Witcher Sense. I don't know what I'm doing but got kinda close. Any thoughts would help. I thought activating Cat on cue would be cool. Not super useful. I copied the Cat Effects portion from the potion file and pasted it in what i thought was the appropriate spot, but like I said all i got was permanent Cat when I used Witcher Sense. Link to comment Share on other sites More sharing options...
djkovrik Posted February 9, 2016 Share Posted February 9, 2016 Check EnableScreenFx function in scripts\game\gameplay\effects\effects\potion\Cat.ws private final function EnableScreenFx(en : bool) { if(en) { EnableCatViewFx( 1.0f ); SetTintColorsCatViewFx(Vector(0.1f,0.12f,0.13f,0.6f),Vector(0.075f,0.1f,0.11f,0.6f),0.2f); SetBrightnessCatViewFx(350.0f); SetViewRangeCatViewFx(200.0f); SetPositionCatViewFx( Vector(0,0,0,0) , true ); SetHightlightCatViewFx( Vector(0.3f,0.1f,0.1f,0.1f),0.05f,1.5f); SetFogDensityCatViewFx( 0.5 ); isScreenFxActive = true; } else { isScreenFxActive = false; DisableCatViewFx( 1.0f ); } } You can use some parts of this code in focus activate/deactivate functions in content\scripts\game\gameplay\focus\focus.ws I've just made a quick test mod and it works :) Link to comment Share on other sites More sharing options...
ddavies10693 Posted February 9, 2016 Share Posted February 9, 2016 Hope to see a version of this published soon, always thought it was strange that this wasn't in the default game. Link to comment Share on other sites More sharing options...
RogerStarbuck Posted February 9, 2016 Author Share Posted February 9, 2016 Thanks for the help. Gonna get on it. Link to comment Share on other sites More sharing options...
RogerStarbuck Posted February 9, 2016 Author Share Posted February 9, 2016 Got it working. Gonna tweak the color maybe. Very bright during the day. Thanks again. Link to comment Share on other sites More sharing options...
RogerStarbuck Posted February 9, 2016 Author Share Posted February 9, 2016 Built it on top of flAked's No Witcher Sense Mod. Asking him for permission to post. Gonna put up a Vanilla one too I guess. Link to comment Share on other sites More sharing options...
Deleted2770933User Posted February 12, 2016 Share Posted February 12, 2016 Built it on top of flAked's No Witcher Sense Mod. Asking him for permission to post. Gonna put up a Vanilla one too I guess. How are you getting on with this? I think it is a brilliant idea and I want this mod! :D Link to comment Share on other sites More sharing options...
RogerStarbuck Posted February 19, 2016 Author Share Posted February 19, 2016 Published Vanilla version. Link to comment Share on other sites More sharing options...
swinka6666 Posted February 19, 2016 Share Posted February 19, 2016 (edited) You must enter a post. Edited April 27, 2016 by swinka6666 Link to comment Share on other sites More sharing options...
Recommended Posts