The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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
Multiple Issues Help Blank screen instead of credit scroll
serbusfish Offline
Member

Posts: 211
Threads: 75
Joined: Aug 2012
Reputation: 0
#1
Blank screen instead of credit scroll

For some reason my credits wont display, the music plays but I just get a black screen. Ive gone through what ive done and cant see any problems, any ideas? Here is my script + lang file (basically whats supposed to happen is you use a key on a door, the screen fades to black, you hear the door open, then the credits start):

void UnlockDoor(string &in asItem, string &in asEntity)
                    
            {
                SetPlayerMoveSpeedMul(0);
                SetPlayerRunSpeedMul(0);
                SetPlayerLookSpeedMul(0);
                FadeOut(6);
                PlaySoundAtEntity("", "lock_door", "castle_gate_arched01_1", 0, false);
                
                AddTimer("OPEN", 8, "OPEN");
            }
            
    void OPEN(string &in asTimer)
    
    {
            SetPlayerActive(false);
            PlaySoundAtEntity("", "door_large_castle_open.snt", "castle_gate_arched01_1", 0, false);
            AddTimer("ENDCREDITS", 4, "ENDCREDITS");
    }
        
    void ENDCREDITS(string &in asTimer)
    {
            FadeIn(0);
            StartCredits("ending_agrippa.ogg", false, "Ending", "MainCreds", 4);
    }

<CATEGORY Name="Ending">

<Entry Name="MainCreds">Escape from Brackenburg[br][br]

(snip)

Thank you for playing!</Entry>


</CATEGORY>

06-01-2013, 02:13 PM
Find


Messages In This Thread
Blank screen instead of credit scroll - by serbusfish - 06-01-2013, 02:13 PM



Users browsing this thread: 1 Guest(s)