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


Schmup.exe - possible standalone ?
Sha Offline
Junior Member

Posts: 16
Threads: 3
Joined: Mar 2009
Reputation: 0
#1
Schmup.exe - possible standalone ?

Well, everyone are talking about this mini game at some place of the forum, and I was wondering is there a secret to play this game directly by not loading any level ? Like a standalone run for the person who own the game or a key to press to play the game from the game menu, if not, is there someone who have a save to share near that computer or a script mod to play it from any computers, like put the schmup.exe appearing on every computer screens Tongue

That would be great to take a break on this game every times you find a computer lol.

If nobody up for it, i will see if I can make this mod

(please, only if you finished the game first and found the code to play that game, else it's not funny D: )
03-27-2009, 05:20 PM
Find
Thomas Offline
Frictional Games

Posts: 2,634
Threads: 184
Joined: Apr 2006
Reputation: 68
#2
RE: Schmup.exe - possible standalone ?

There is a varaible in the settings file for it...

But I cannot remember it right now, will see if my memory clears up Wink
03-27-2009, 06:58 PM
Find
Sha Offline
Junior Member

Posts: 16
Threads: 3
Joined: Mar 2009
Reputation: 0
#3
RE: Schmup.exe - possible standalone ?

(03-27-2009, 06:58 PM)Thomas Wrote: There is a varaible in the settings file for it...

But I cannot remember it right now, will see if my memory clears up Wink

found in 18_terminal_gui.hps and 18_terminal_gui.gui

void ClickSchmupImage(string asName, string asMessage, int alVal)
{
    SetWidgetBool("PasswordWindow","Visible",true);
    SetWidgetBool("PasswordWindow","Enabled",true);
    SetAttentionWidget("PasswordWindow");
    
    SetWidgetString("PasswordText","Text","");
    
    PlayGuiSound("gui_open_icon", 0.4f);
}

void PasswordWindowOKPressed(string asName, string asMessage, int alVal)
{
    SetWidgetBool("PasswordWindow","Visible",false);
    SetWidgetBool("PasswordWindow","Enabled",false);
    SetAttentionWidget("");    
    
    
    if(StartSchmup(GetWidgetString("PasswordText","Text"))==false)
    {
        CreateGuiPopUp(    "Error",
                "Incorrect Password!",
                "OK",
                "",
                "PressOK");
        
        PlayGuiSound("gui_button_off", 1);
    }
}

void PressOK(int xButton)
{
    PlayGuiSound("gui_button_ok", 1);
}

void ClosePasswordWindow(string asName, string asMessage, int alVal)
{
    SetWidgetBool("PasswordWindow","Visible",false);
    SetWidgetBool("PasswordWindow","Enabled",false);
    SetAttentionWidget("");    

    PlayGuiSound("gui_close_icon", 0.4f);    
}

but i don't see what it start actually, i need to sneak a bit more, though, this part can be add to all other terminal_gui.hps/txt to get the game on every computer, not let see if i can change the menu screen "tutorial" by "play schmup"
Well, actually, I can create a new map, instead of playing the tutorial, it's send your character on a lil room with a computer, and on that computer, you can play schmup
(This post was last modified: 03-27-2009, 07:11 PM by epicrelic.)
03-27-2009, 07:09 PM
Find




Users browsing this thread: 1 Guest(s)