ponymodz
Veteran
- Messages
- 40
- Reaction score
- 33
- Points
- 803
How to make an Animated Coldboot
Hello Guys in this tutorial I will show you how you can make an Animated Coldboot like this
What you will need:
- Photoshop or Paint.net with the
So let's start by navigating to Tools>Coldboot inside you will see a few files first you have to edit the .dds files to your liking (you can use .gifs if you extract the layers) if you have more then 9 .dds files just duplicate them but keep in mind more layer bigger filesize (it may not be compiled)
Before you save an the image make sure it has an alpha channel
When youre done editing the images open "coldboot.xml" with any text editor you have and change it depending on how many frames you have for example i have 9 frames you it will look like this for me
Code:
<!-- Your Frames -->
<material id="mtrl_1" effect="pure_texture_alpha_1_depth_0" >
<texture file="1.dds" />
</material>
<actor id="1" model="mdl_bg" material="mtrl_1" />
<material id="mtrl_2" effect="pure_texture_alpha_1_depth_0" >
<texture file="2.dds" />
</material>
<actor id="2" model="mdl_bg" material="mtrl_2" />
<material id="mtrl_3" effect="pure_texture_alpha_1_depth_0" >
<texture file="3.dds" />
</material>
<actor id="3" model="mdl_bg" material="mtrl_3" />
<material id="mtrl_4" effect="pure_texture_alpha_1_depth_0" >
<texture file="4.dds" />
</material>
<actor id="4" model="mdl_bg" material="mtrl_4" />
<material id="mtrl_5" effect="pure_texture_alpha_1_depth_0" >
<texture file="5.dds" />
</material>
<actor id="5" model="mdl_bg" material="mtrl_5" />
<material id="mtrl_6" effect="pure_texture_alpha_1_depth_0" >
<texture file="6.dds" />
</material>
<actor id="6" model="mdl_bg" material="mtrl_6" />
<material id="mtrl_7" effect="pure_texture_alpha_1_depth_0" >
<texture file="7.dds" />
</material>
<actor id="7" model="mdl_bg" material="mtrl_7" />
<material id="mtrl_8" effect="pure_texture_alpha_1_depth_0" >
<texture file="8.dds" />
</material>
<actor id="8" model="mdl_bg" material="mtrl_8" />
<material id="mtrl_9" effect="pure_texture_alpha_1_depth_0" >
<texture file="9.dds" />
</material>
<actor id="9" model="mdl_bg" material="mtrl_9" />
do the same for "coldboot.js"
Code:
var background = new Array(
new Actor("1")
, new Actor("2")
, new Actor("3")
, new Actor("4")
, new Actor("5")
, new Actor("6")
, new Actor("7")
, new Actor("8")
, new Actor("9")
);
after this open Tools>EXE in another window and drag "coldboot.xml" on top of "raf_compiler.exe" a "coldboot.raf" folder will appear in your Coldboot folder if not then you have too many frames or your animation covers too much of the image make changes and try again
when you successfully made a "coldboot.raf" copy it to you console and see how it looks
Hope you could follow this Tutorial if you have questions leave them in the comments
Hit the Button for more Tutorials
Edit: Updated Download LinkHit the Button for more Tutorials
Last edited: