SUPER-G
  • SUPER-G
  • 59.75% (Neutral)
  • Colonel Topic Starter
13 years ago
for a mission intro i want a GLA technical to follow a waypoint path and end up being destroyed at the end of the path, all while having the map visible and then not visible after the intro. and then go to normal mode at a waypoint.

the problem. i cant get the technical to move!! and how would i make the map go dark after a certian period of time.
i need help!


UserPostedImage
PK_Soar #9531
He that is slow to believe anything and everything is of great understanding, for belief in
one false principle is the beginning of all unwisdom. - Anton Lavey

Sponsor
NewNightmare
13 years ago
Name the technical, and the path (the bottom 3 lines in properties) and make a script that says
***IF***
When should he move?
***THEN***
'Named Technical' follows waypoint path 'X' (in unit rollut)

For the fade-ins and outs, look up camera-related commands in the scritps menu
i^love^mixery
13 years ago
in a mission map its quite easy:

Stuff needed:
technical for GLA player with name "intro"
waypoint path with label "intro"
trigger area around the end of the waypoint path with the name "intro"
waypoint "player" at the base of the human player


Scripts needed:
Intro0:
***IF***
True
***THEN***
User -> Input -> Disable
Camera -> Letterbox -> Begin
Scripting -> Script -> Enable script Intro1
Map -> Shroud or Reveal -> Reavel the entire map permanently for a player (put in player0)

Intro1 (disabled):
***IF***
True
***THEN***
Camera -> Follow -> Start following unit "intro". Snap TRUE
Unit -> Move -> the 3rd -> Unit "intro" follow exactly waypoint path "intro"
Scripting -> Script -> Enable script Intro2

Intro2 (disabled):
***IF***
Unit -> Area -> Unit "intro" enters area "intro"
***THEN***
Unit -> Damage or Remove -> Kill a specific unit -> Kill unit "intro"
Camera -> Follow -> Stop following any units
Scripting -> Timer -> Second countdown timer -- set. -> Set timer Intro1 to expire in 5 seconds
Scripting -> Script -> Enable script Intro3

Intro3 (disabled):
***IF***
Scripting -> Timer -> Timer Intro1 has expired
***THEN***
Map -> Shroud or Reveal -> Un-Reveal the entire map permanently for player0
User -> Input -> Enable
Camera -> Letterbox -> End
Camera -> Move -> Reset to default view to waypoint "player" (taking 0 seconds)

that should be it.

this is an extremely basic intro and it should be easy to modify/expand it. just make sure that the stuff written in Intro3 is executed at the end of the intro.

the fade-in, fade-out stuff can be found in Camera -> Camera FX
SUPER-G
  • SUPER-G
  • 59.75% (Neutral)
  • Colonel Topic Starter
13 years ago
something is still wrong!


1. the map is not revealed 100%, it only shows the buildings, not the units.

2. im not even sure that the technical is moving. since the camera did not budge.

other than that, the camera does go into letterbox mode.

that technical does not want to move!
UserPostedImage
PK_Soar #9531
He that is slow to believe anything and everything is of great understanding, for belief in
one false principle is the beginning of all unwisdom. - Anton Lavey

SUPER-G
  • SUPER-G
  • 59.75% (Neutral)
  • Colonel Topic Starter
13 years ago
wait, hold your horses! i have fixed one of the problems!

the technical moves, i made an intro team and made teamintro follow waypoint path intropath, and it works!.

the only problem is that the map isnt revealed the way i intended it. how can i fix that.

it shows only that i have explored the map, not compleatly reveals it.
any ideas?
UserPostedImage
PK_Soar #9531
He that is slow to believe anything and everything is of great understanding, for belief in
one false principle is the beginning of all unwisdom. - Anton Lavey

NewNightmare
13 years ago
ILoveMixery's script Intro0 has it - Perma reveal for player: X, where X is the human player.
SUPER-G
  • SUPER-G
  • 59.75% (Neutral)
  • Colonel Topic Starter
13 years ago

ILoveMixery's script Intro0 has it - Perma reveal for player: X, where X is the human player.

Originally Posted by: newnightmare 



yeah i checked it and didnt have it on permanent reveal. so i fixed it and it works perfectly.

thanks for all the help!👍
UserPostedImage
PK_Soar #9531
He that is slow to believe anything and everything is of great understanding, for belief in
one false principle is the beginning of all unwisdom. - Anton Lavey