[Log in / Register]
| News | Chat | Pastebin | Donations | Tutorials | Rules | Forums | Starcraft II |
| Maps | Skins | Icons | Models | Spells | Tools | Jass | Packs |
(Keeps Hive Alive)
Go Back   The Hive Workshop > Warcraft III Modding > Cinematics

Cinematics Need any help with cinematics? Discuss cinematic ideas and show us your cinematic skills in this board.

Reply
 
LinkBack Thread Tools
Old 09-10-2007, 02:01 AM   #1 (permalink)
Registered User PurgeandFire111
User Title
 
PurgeandFire111's Avatar
 
Join Date: Nov 2006
Posts: 1,276
PurgeandFire111 is a jewel in the rough (233)PurgeandFire111 is a jewel in the rough (233)PurgeandFire111 is a jewel in the rough (233)
Former Staff Member: This user used to be on the Hive Workshop staff. 
Tips and Tricks for the Cinema

Tips 'n' Tricks for the Cinema


Hey

Introduction:

Welcome to the Tips 'n' Tricks thread. Here, you can find many tricks for creating cinematics.

Links:
How to make unit's Fly


Simply using "Set Unit's Fly Height" won't do. The thing is, that the unit must have a "flying" movement type, otherwise it won't work. The only way to achieve this is to add the Storm Crow Form.

The Storm Crow Form adds the "flying" movement type to the unit. So that is the key.

This is what to do:

GUI:
Fly
Events
Conditions
Actions
Unit - Add Storm Crow Form to <UNIT>
Animation - Set <UNIT>'s Flying Height to <height> at <rate>
Unit - Remove Storm Crow Form from <UNIT>
----- Note that some of these actions might not be exact -----
This adds the Storm Crow Form, sets the unit's flying height, then it removes the Storm Crow Form, but still has the unit flying.

JASS:
Jass:
function Fly takes unit u, real height, real rate returns nothing
//Function
    call UnitAddAbility(u,'Arav')
//Adds the ability
    call SetUnitFlyHeight(u,height,rate)
//Sets the flying height
    call UnitRemoveAbility(u,'Arav')
//Then it removes the ability because it is not needed
endfunction
I believe 'Arav' is the raw code of the Storm Crow spell. I remember it because it is like 'A raven'

You can either use this code or inline it to fit your needs, which is faster but takes a little more lines of coding.



Black Interface


If you have watched some famous cinematics such as Creatures of the Knight, Cult of the Damned, and The Spirit of Vengeance, you'll realize that they have black borders that are used at least once. The borders make your cinematic look much better and look as if they are an actual cinematic. To do this, go to Advanced | Game Interface


Then click Use Custom Game Interface.


Scroll down and wait until you see at least one of these:
  • Image - Cinematic Border
  • Image - Console Background
  • Image - Game Menu Background
Click on each value, click "Use Custom Path", then type out or copy 'n' paste this text:
UI\Widgets\EscMenu\Human\blank-background.blp

If you don't want a black cinematic border, but instead something else such as the border used in "Shipwrecked 1 Revamped - by Med. Map Maker" (Or number 2, I forgot) you can replace only one of them with it. You can keep messing around with those three to see the effects and choose the one you like.





Cameras


Cameras are extremely important to cinematics. To create a camera, open the camera palette then click "Create Camera". If you do that, it should say something like "Camera 001". If you right-click it then click "Rename Camera", you can modify it to fit your needs. I will tell you what each field means below:

Camera Name:

Simply the name of the camera, try to make it relevant to what it is doing such as "Park Bench Camera 1".



Target X and Target Y:

These are the target location's x and y points. Modifying it can slightly move your camera, but if you set it to a high value, it can move your camera quite far.

Z Offset:

This measures the Z offset of the camera. If you set it to a positive number, the camera target point will rise up. If you set it to something big, it will feel like you are off the ground because the camera target is high upwards.

Z Offset:



Rotation:

This determines the rotation of the camera, it is like the facing. If you set it to 90.00 degrees, the camera will turn and face 90.00 degrees.



Angle of Attack (AoA):

This determines how much the camera is off of the ground, though it is not like the Z offset. The Z offset sets the target point to rise/lower. If you change the AoA, it will change the angle of the camera going up and down.


Distance:

This determines the distance from the camera and the target point. Not much to explain here.

Roll:

This determines the tilt of your camera. If you change it, your camera will tilt sideways in an angle and change the view. If you have ever seen some of the Rulerofiron99's cinematics, you'll know what I'm talking about.



Field of View:

The width the camera can see.

Far Clipping:

The total distance a camera can see. Make sure that you do not set it to a too high value, or else it may cause lag because it can see too many objects from its view. (eg: Doodads, Destructibles, etc.) The maximum value for this is 10,000.

Applying Cameras:

You can apply cameras with simple triggers:
Camera - Apply <Camera> for Player 1 (Red) over 0.00 seconds
This will apply the camera for the player and will take X seconds to apply. Before you apply another camera, you should wait then apply it:
Camera - Apply Camera 1 for Player 1 (Red) over 3.00 seconds
Wait 2.00 seconds
Camera - Apply Camera 2 for Player 1 (Red) over 2.00 seconds
The reason why I only waited 2.00 seconds was because if I set it to 3.00, the camera will stop then apply. I want it to be much smoother.

For more about cameras, click here




Please feel free to post more tips 'n' tricks as well!

Last edited by PurgeandFire111; 02-27-2010 at 04:57 AM.
PurgeandFire111 is offline   Reply With Quote
Old 09-10-2007, 07:06 AM   #2 (permalink)
Registered User Bob27
User
 
Bob27's Avatar
 
Join Date: Jun 2005
Posts: 3,066
Bob27 is a name known to all (696)Bob27 is a name known to all (696)Bob27 is a name known to all (696)Bob27 is a name known to all (696)
Former Staff Member: This user used to be on the Hive Workshop staff. Respected User: This user has been given the respected user award. User of the Year: 2005 
Stickied :)
Bob27 is offline   Reply With Quote
Old 09-11-2007, 01:47 AM   #3 (permalink)
Registered User PurgeandFire111
User Title
 
PurgeandFire111's Avatar
 
Join Date: Nov 2006
Posts: 1,276
PurgeandFire111 is a jewel in the rough (233)PurgeandFire111 is a jewel in the rough (233)PurgeandFire111 is a jewel in the rough (233)
Former Staff Member: This user used to be on the Hive Workshop staff. 
Thanks Bob. :)

- To everyone: Please, feel free to post more cinematic tips/tricks!
__________________
Vote For The Hive Workshop!
PurgeandFire111 is offline   Reply With Quote
Old 10-07-2007, 07:14 PM   #4 (permalink)
Registered User Waldbaer
Returned for music
 
Waldbaer's Avatar
 
Join Date: Jul 2004
Posts: 406
Waldbaer is on a distinguished road (74)Waldbaer is on a distinguished road (74)
Respected User: This user has been given the respected user award. Cinematic Mini-Contest #1 - Winner: The Escape & The Premonition 
I saw you also linked my "exact cinematic timing" thread from wc3campaigns. It is outdated... I'll write a new tutorial describing my current method (also used in my contest cinematic "The Premonition") soon.

Another tip concerning camera movement: If you make bigger sways over more than one camerasetup station, you will notice that everytime you apply a new camera, there will be an edge in movement. I wrote a system to prevent this ugly edges from occuring - here it is: Dragonblood Creations' Camera System.
Its application is basically the same than with the normal "apply camera x over y seconds", but it offers smooth acceleration and braking. Take a look at it, it should be a great help especially for advanced cinematic makers.
__________________
Dragonblood Creations is dead.
If you are interested in continuing+maintenancing one of the following projects, just contact me via PM:
The Lord Of The Rings: The Fellowship Of The Ring (Campaign)
Systems:
Camera SystemAllows hollywood-like smooth sways over as many camera setups as you like.
Jump SystemAllows to make ground units jump without further preparation.
Waldbaer is offline   Reply With Quote
Old 10-07-2007, 08:16 PM   #5 (permalink)
Registered User HeretoDLstuff
User
 
HeretoDLstuff's Avatar
 
Join Date: Feb 2007
Posts: 2,154
HeretoDLstuff is just really nice (306)HeretoDLstuff is just really nice (306)
Wow, pretty nice, goodjob and +rep!
HeretoDLstuff is offline   Reply With Quote
Old 10-19-2007, 11:17 AM   #6 (permalink)
Registered User Waldbaer
Returned for music
 
Waldbaer's Avatar
 
Join Date: Jul 2004
Posts: 406
Waldbaer is on a distinguished road (74)Waldbaer is on a distinguished road (74)
Respected User: This user has been given the respected user award. Cinematic Mini-Contest #1 - Winner: The Escape & The Premonition 
I wrote a new tutorial about exact cinematic timing and posted it also on this site. Take a look at it: Exact Cinematic Timing (Trigger Queue and Timers)
I suggest to edit the link in the first post to the one I gave above.
__________________
Dragonblood Creations is dead.
If you are interested in continuing+maintenancing one of the following projects, just contact me via PM:
The Lord Of The Rings: The Fellowship Of The Ring (Campaign)
Systems:
Camera SystemAllows hollywood-like smooth sways over as many camera setups as you like.
Jump SystemAllows to make ground units jump without further preparation.
Waldbaer is offline   Reply With Quote
Old 10-19-2007, 08:17 PM   #7 (permalink)
Wolverabid
 
Wolverabid's Avatar
 
Join Date: Oct 2006
Posts: 8,408
Wolverabid has a brilliant future (1309)Wolverabid has a brilliant future (1309)Wolverabid has a brilliant future (1309)Wolverabid has a brilliant future (1309)Wolverabid has a brilliant future (1309)
Former Staff Member: This user used to be on the Hive Workshop staff. Respected User: This user has been given the respected user award. User of the Year: 2007 
Quote:
Originally Posted by Waldbaer View Post
I suggest to edit the link in the first post to the one I gave above.
Post edited; link redirected.
__________________
SuperSecretSearchSystem .......Netiquette....... Posting And You..........Read Me.......Vote

Antivirus Chat Dictionary Games Hoaxes Links Music News Quotations Reference Software

[timquote]blah[/timquote]
Wolverabid is offline   Reply With Quote
Old 12-13-2007, 04:49 PM   #8 (permalink)
Registered User Trax.
◄►◄►◄►
 
Trax.'s Avatar
 
Join Date: Sep 2007
Posts: 1,104
Trax. is a jewel in the rough (268)Trax. is a jewel in the rough (268)Trax. is a jewel in the rough (268)Trax. is a jewel in the rough (268)
Former Staff Member: This user used to be on the Hive Workshop staff. 
very very useful
Trax. is offline   Reply With Quote
Old 12-14-2007, 12:15 AM   #9 (permalink)
Registered User PurgeandFire111
User Title
 
PurgeandFire111's Avatar
 
Join Date: Nov 2006
Posts: 1,276
PurgeandFire111 is a jewel in the rough (233)PurgeandFire111 is a jewel in the rough (233)PurgeandFire111 is a jewel in the rough (233)
Former Staff Member: This user used to be on the Hive Workshop staff. 
Thanks, remember you guys can post some of em' yourselves too!
__________________
Vote For The Hive Workshop!
PurgeandFire111 is offline   Reply With Quote
Old 01-08-2008, 10:39 AM   #10 (permalink)
Registered User ChRiS..
Chris_is_here(us west)
 
ChRiS..'s Avatar
 
Join Date: Jan 2008
Posts: 1
ChRiS.. is an unknown quantity at this point (0)
Can anybody help me with cinematics like. characters talking during cinematic and how to make units move
ChRiS.. is offline   Reply With Quote
Old 08-22-2008, 04:54 PM   #11 (permalink)
Registered User Ein fisk
User
 
Join Date: Apr 2008
Posts: 8
Ein fisk is an unknown quantity at this point (0)
I knew everything except the fly trick... Pretty good tho
Ein fisk is offline   Reply With Quote
Old 12-01-2008, 09:06 PM   #12 (permalink)
Registered User Rock_Golem
Rocky
 
Join Date: Oct 2008
Posts: 41
Rock_Golem has little to show at this moment (1)
where can I view these cinimatics, I want to see the masters in action.
Rock_Golem is offline   Reply With Quote
Old 06-26-2009, 06:33 PM   #13 (permalink)
Registered User MK Emaster
in-map Bugs Finder!
 
MK Emaster's Avatar
 
Join Date: Jun 2009
Posts: 1
MK Emaster is an unknown quantity at this point (0)
Here is a -little- common trick I always use to showup some pics over the screen.
First import the picture.
then, In the trigger Editor (since I know nothing about Jass) do the following:
Set the "event" and "condition" on what you need or want, then in the "action" list add
"Cinematic-Fade Filter"
In the "action text" change "white mask" to your imported pic! press ok and you are done!
This is the very basic, the event, condition and even adding some additional actions depends on your work!
__________________
[Mog]: "hahahahahah"
[Grun]: "Now what? Miley kissed you?"
[Mog]: "That was before, now I got something better!"
[Grun]: "what?"
[Mog]: "I bought Wow!!!"
[Grun]: "what a jerk, I saw it it wasn't WoW! it was WCII!"
[Mog]: "I hate storm.inc!"
MK Emaster is offline   Reply With Quote
Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
abyss Gates Tips & Tricks Kickban Warcraft Discussion 0 03-08-2008 06:24 PM
Singing Tricks Rui Sound / Music Art 19 11-12-2007 06:06 AM
Tricks and Stuff GST_Nemisis Off-Topic 0 05-06-2006 06:21 PM
Anyone have some terraining tips or tricks? Modeler Map Development 7 09-29-2005 08:16 PM
Tips and tricks Mastif Off-Topic 0 06-21-2005 02:11 PM

All times are GMT. The time now is 04:57 PM.






Hosting by SliceHost 
Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.1
Copyright©Ralle