Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Ending a custom story?
Dizturbed Offline
Member

Posts: 160
Threads: 39
Joined: Jun 2011
Reputation: 0
#1
Ending a custom story?

How do i end a custom story? i really want to know.. Confused

-Dizturbed

07-22-2011, 09:14 PM
Find
Rapture Offline
Posting Freak

Posts: 1,078
Threads: 79
Joined: May 2011
Reputation: 30
#2
RE: Ending a custom story?

(07-22-2011, 09:14 PM)Dizturbed Wrote: How do i end a custom story? i really want to know.. Confused

-Dizturbed
Well I copied this off another person's map and tweaked it for myself. But it works.

Make a Script area. Call it ENDGAME for now.

Put this somewhere in your code.
void ENDGAME(string &in asParent, string &in asChild, int alState)
{
    FadeOut(3);
    SetPlayerActive(false);    
    AddTimer("Timer", 6, "ENDGAME2");
}

void ENDGAME2(string &in asTimer)
{
    StartCredits("credits", false, "Credits", "Yippie", 3);
}

Now go to your .lang

Put this near the bottem, but above the </LANGUAGE>
    <CATEGORY Name="Credits">
        <Entry Name="Yippie">+Nightmare+[br][br][br]*Created by:[br]Rapture[br][br][br]*Testing and Feedback:[br]Friends[br]Family[br][br][br]Thank you very much for playing this! Even though its my first map and its just purely for testing purposes!</Entry>
     </CATEGORY>

Just change the last text near the bottem. I hope it helps, tell me if I messed up and its not working.



(This post was last modified: 07-22-2011, 11:54 PM by Rapture.)
07-22-2011, 11:53 PM
Find
Dizturbed Offline
Member

Posts: 160
Threads: 39
Joined: Jun 2011
Reputation: 0
#3
RE: Ending a custom story?

I know how to do all of that, but i need it to just go to the startmenu, without the credits..


07-23-2011, 12:00 AM
Find




Users browsing this thread: 1 Guest(s)