Hey Guys im Chris or you probably know me better as Type-O at relic forums A Few mounts ago I made two tutorials on YouTube,Scar mission titles, Activating the titan so I decided to post them here to hopefully help some of the new users who are learning scar here is a link to the first video Basic Fade And Title Effects:
http://www.youtube.com/watch?v=ekpZA...e=channel_page
Here are the tools you will need to follow this video:
http://www.corsix.org/cdms/downloads-5.html
Here are more Scar codes you may want to experiment with:
http://www.relicrank.com/frameset/frameset.htm
And Finally here is the code that you should have at the end of the video:
Spoiler
Code:import("ScarUtil.scar") import("WXPScarUtil.scar") import("WCUtil.scar") function OnGameSetup() g_Player1 = World_GetPlayerAt(0) g_Player2 = World_GetPlayerAt(1) end function OnStart() print("hello world") Fade_Start(0,false) W40k_Letterbox(true,0) Cpu_EnableAll(false) Rule_AddOneShot(title,1) end Scar_AddInit(OnStart) function title() Util_MissionTitle("Titans Fall") Rule_AddOneShot(fade_out,3) end function fade_out() Fade_Start(1,true) W40k_Letterbox(false,.9) Cpu_EnableAll(true) end


:
:

