Have a nice death XD

Topics regarding Scripting with Reality Factory
Post Reply
Lynkyn
Posts: 48
Joined: Sat Jun 21, 2008 2:17 pm

Have a nice death XD

Post by Lynkyn » Thu Aug 14, 2008 1:25 pm

Hello again! now, i'm trying to do that, when you death, the camera goes with the player to the floor, and after that, you can move the camera around (like in half life). So, I want to do that when you death, the screen goes black slowly... (like in nirhis XD). Now, I have a fixed camera and a viewswitch, well, when the player deaths, the camera go with the attached bone BUT it looks weird because sometimes the model of the player goes just at the front of the camera... I would like that the player stop render when death.... Danimita gave me this script:

Spawn [()
{
if(GetAttribute("health","Player") = 0)
{
LowLevel("NoRenderizar");
return 0;
}
}]

NoRenderizar[()
{
PlayerRender(false);
}]


But it doesn't works. :shock:

Well, if some caritative person wants to help me, I will be very grateful :wink:

Total things I want ( :oops: )


The camera goes at the floor (now I am attaching the camera at a bone when the player death, maybe there is another solution?)
The camera can be moved.. with the mouse.. you can look around (I have not idea how to do this)
Stop player's render when death (Maybe the danimita's script have got an error)
The screen goes slolwy black (I tried with a flipbook...It didn't work XD but im really newbie...)

Thanks all you :D

Post Reply