Video on login screen

Results 1 to 7 of 7
  1. #1
    Valued Member gaspartx is offline
    MemberRank
    Apr 2009 Join Date
    BrazilLocation
    102Posts

    Video on login screen

    It would be possible, I put a video instead of an image on the login screen?


  2. #2
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: Video on login screen

    You can put *.gif if you want ? moving background ? if you want that reply and quote me.

  3. #3
    2D > 3D Wucas is offline
    MemberRank
    Dec 2008 Join Date
    In your bed :3Location
    2,523Posts

    Re: Video on login screen

    Quote Originally Posted by qet123 View Post
    You can put *.gif if you want ? moving background ? if you want that reply and quote me.
    RealSpace2 Doesnt support gif...
    You can have bmp, tga, dds, jpg, and png, animated images are created via template.xml in default.mrs

    @OP, the better option would probably to run a replay or something like that... it would be simpler and take quite a bit less memory as well.

  4. #4
    Valued Member gaspartx is offline
    MemberRank
    Apr 2009 Join Date
    BrazilLocation
    102Posts

    Re: Video on login screen

    Quote Originally Posted by Wucas View Post
    RealSpace2 Doesnt support gif...
    You can have bmp, tga, dds, jpg, and png, animated images are created via template.xml in default.mrs

    @OP, the better option would probably to run a replay or something like that... it would be simpler and take quite a bit less memory as well.
    I like to put an animation in the background. A replay would be perfect ..

    Quote Originally Posted by qet123 View Post
    You can put *.gif if you want ? moving background ? if you want that reply and quote me.
    I tried putting a replay of background on the login screen, but not getting much success ..
    m_pBackground->SetScene( CreateReplayGame("test.gzr") );
    Last edited by gaspartx; 03-08-12 at 07:14 PM.

  5. #5
    Enthusiast Eagle2012 is offline
    MemberRank
    Aug 2012 Join Date
    27Posts

    Re: Video on login screen

    Ye. Me too.
    gaspartx mean that anyone knows how to make the Login Screen (from Login - ID and Password ingame)?
    Like what HeroGunz before, The login screen they have is not an image, but a map... Ruin Map.

  6. #6
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: Video on login screen

    Quote Originally Posted by gaspartx View Post
    I tried putting a replay of background on the login screen, but not getting much success ..
    m_pBackground->SetScene( CreateReplayGame("test.gzr") );
    Code:
    bool CreateReplayGame(char *filename)
    {
    	static char szLastFile[256] = "";
    	char szBuf[256];
    	if (filename != NULL) strcpy(szBuf, filename);
    	else strcpy(szBuf, szLastFile);
    
    	if (filename != NULL) strcpy(szLastFile, filename);
    
    	ZReplayLoader loader;
    	if (!loader.Load(szBuf)) return false;
    	ZGetGame()->OnLoadReplay(&loader);
    	
    	return true;
    }
    Code:
    	if( m_pBackground!=0)
    	{
    		m_pBackground->SetScene( CreateReplayGame("DM_RavenGunz_20120804_215112.gzr") );
    		//m_pBackground->SetScene( LOGIN_SCENE_FALLDOWN);
    		m_pBackground->LoadMesh();
    		m_pBackground->Draw();
    	}
    Result of the codes: Impossible.

    Try to make it:

    Code:
    ZApplication::GetGameInterface()->OnLoadReplay(&loader);
    Last edited by qet123; 04-08-12 at 09:06 PM.

  7. #7
    Die() Secured is offline
    MemberRank
    Sep 2011 Join Date
    /home/SDev/Location
    555Posts



Advertisement