Jump to content

Camera clairvoyance effect - tsl


Recommended Posts

Guest newbiemodder
Posted

Working on a cutscene using DLGEditor for tsl. Can't seem to get the clairvoyance video effect to work for a "vision" type scene. Can't recall in tsl if there are such scenes similar to KOTOR1 vision scenes. Have used the drop down menu on the editor as well as trying via script but no luck. Is is possible? Do I need to adjust any settings in the configuration file? Any help would be appreciated.

Guest newbiemodder
Posted

You lost it, seriously? I'll get you a copy of the script newbie.

 

Thanks VP

Guest newbiemodder
Posted

Was looking over some threads at Lucas Forums regarding Frame Buffer Effects...noticed on my options menu at startup of game that the option for frame buffers is grayed out, as in not selectable...could this be the reason I may not see the visual clairvoyance effect? Would that mean that my graphics card does not support the frame buffer effects. I know nothing about this technical stuff. When I went into the configuaration file the Frame Buffer = 0, so I changed it to 1, but had no affect.

Posted
//a_videofx.nss

//By VarsityPuppet

//Toggle - 0 for off, 1 for on.
//EffectNum - which video effect you want

/*int VIDEO_EFFECT_NONE              = -1;
int VIDEO_EFFECT_SECURITY_CAMERA   = 0;
int VIDEO_EFFECT_FREELOOK_T3M4     = 1;
int VIDEO_EFFECT_FREELOOK_HK47     = 2;
int VIDEO_EFFECT_CLAIRVOYANCE      = 3;
int VIDEO_EFFECT_FORCESIGHT        = 4;
int VIDEO_EFFECT_VISAS_FREELOOK    = 5;
int VIDEO_EFFECT_CLAIRVOYANCEFULL  = 6;
int VIDEO_EFFECT_FURY_1            = 7;
int VIDEO_EFFECT_FURY_2            = 8;
int VIDEO_EFFECT_FURY_3            = 9;
int VIDEO_FFECT_SECURITY_NO_LABEL  = 10;*/

//fDelay - how much you want it delayed by.



void main(){
       int Toggle = GetScriptParameter(1);
       int EffectNum = GetScriptParameter(2);
       float fDelay = IntToFloat(GetScriptParameter(3));

       switch(Toggle){
               case 0:
                       DelayCommand(fDelay, DisableVideoEffect());
               break;
               case 1:
                       DelayCommand(fDelay, EnableVideoEffect(EffectNum));
               break;
       }



}

Guest newbiemodder
Posted

It's not working...I think it is because my chip can't accomodate frame buffers....thanks anyways vp...may need someone to test this for m e.

Guest Mablus25
Posted

Hows your Onderarn Expansion Mod going along soo far?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Guidelines.