Home   Help Search Login Register  

Author Topic: extending the beginning of an intro...  (Read 456 times)

0 Members and 1 Guest are viewing this topic.

Offline bedges

  • Administrator
  • *****
    • OFPEC The Editing Center
extending the beginning of an intro...
« on: 07 Jan 2005, 18:41:42 »
happy new year all.

i'm trying to extend the black screen shown at the beginning of an intro. in the description file i notice an

Code: [Select]
onloadintro = "intro title text here..."
is it possible to call a script there? there's an intro script with all the camera gubbins in it anyways, but i can't seem to get the black screen to stop from fading in. my initial attempt used

Code: [Select]
titletext [" ","black out", 0]
~5

to try to make the screen go black and stay black, but no joy.

pointers to the appropriate tutes or a simple solution gratefully appreciated.
cheers

Dubieman

  • Guest
Re:extending the beginning of an intro...
« Reply #1 on: 07 Jan 2005, 21:04:45 »
Well,

I'm a little confused on what you want, but I'll try anyways.

onloadintro = "fun text that is only text and nothing more"

Just sets the text to something different then "Get Ready". Doesn't affect blackout time.


Well you should be able to put this at the start of your intro.sqs:

Code: [Select]
titlecut [" ","BLACK OUT",3]


_camera = "camera" camcreate [0,0,0]
_camera cameraeffect ["internal", "back"]

~5
;now your cam shots and stuff....

Well that would be the look of the script, just change the delay to something longer. I've never done this before so if that doesn't work add to the number in the titlecut code, make it 10 or something.

Blackout will never come back to a reg screen until the code whitein or blackin is used, I'm pretty sure so play with it. :P
« Last Edit: 07 Jan 2005, 21:06:10 by GuiltyRoachKillar »

Offline bedges

  • Administrator
  • *****
    • OFPEC The Editing Center
Re:extending the beginning of an intro...
« Reply #2 on: 07 Jan 2005, 21:29:00 »
hokay, well in a nutshell i want to begin the intro with a looooong black sequence with some white text coming in, more than just once, to build up the atmosphere nice and slow before beginning the intro proper. but the single default fade-in from black seems to be all i can get, and as you said, it has one set of text and fades in over about a second and that's that.

the cuttext syntax doesn't seem to be accurate, as putting for example

Code: [Select]
cuttext ["This is some text right here.","black"]
doesn't display text on a black screen, it fades into black just like

Code: [Select]
cuttext ["This is some more text just here.","black out"]
it very weird. and a pain  too.

and i have indeed experimented quite a bit with the various options, but their behaviour is not as one might expect.

ho hum. just me being a control freak once again i expect, but it would be nice to have the intro just so after the effort that's gone into it.

thanks meantime
b

Offline RujiK

  • Members
  • *
  • KoKo Puh-Fizzles!
Re:extending the beginning of an intro...
« Reply #3 on: 07 Jan 2005, 22:06:00 »
Easy enough.
Just put in the init.sqs file titlecut ["","Black in",10000000]
Then, just use titletext ["Text","Plain Down"] and once you have all the text put in that you want put in ["","Black in",3] or however long you wish.
« Last Edit: 07 Jan 2005, 22:06:54 by RujiK »
I like your approach, lets see your departure.
Download the New Flashlight Script!

Offline bedges

  • Administrator
  • *****
    • OFPEC The Editing Center
Re:extending the beginning of an intro...
« Reply #4 on: 08 Jan 2005, 00:04:06 »
that's just what i needed! sneaky way of doing it if i may say so ;)

thanks muchly.