Coded my very first loader/patcher for Tantra.

Page 2 of 2 FirstFirst 12
Results 16 to 28 of 28
  1. #16
    Apprentice Oreon Zenfinix is offline
    MemberRank
    May 2014 Join Date
    5Posts

    Re: Coded my very first loader/patcher for Tantra.

    Guys can u make me a Loader/patcher for my Tantra Beast ??!

  2. #17
    www.m.me/ExcelsiorSoftLLC master_unknown is offline
    MemberRank
    Oct 2004 Join Date
    HellLocation
    1,242Posts

    Re: Coded my very first loader/patcher for Tantra.

    Use Thor Patcher. Google it.

  3. #18
    Member dTantra is offline
    MemberRank
    Jul 2013 Join Date
    94Posts

    Re: Coded my very first loader/patcher for Tantra.

    Just some quick code for those who want to do a settings program.


    This will query all the video modes the users computer supports and add them to a struct. You can then show them to the user and let them select whichever one they want. This guarentees the persons game will not stop working because they selected an incorrect size.
    Code:
    
    struct Resolution
    {
    	DWORD X;
    	DWORD Y;
    	DWORD Bit;
    };
    
    
    for( int iModeNum = 0; EnumDisplaySettings( NULL, iModeNum, &dm ) != 0; iModeNum++ ) 
    {
    	if(dm.dmDisplayFrequency == 60 && dm.dmDefaultSource == 0 && dm.dmBitsPerPel != 8)
    	{
    		resolutions[j].Bit = dm.dmBitsPerPel;
    		resolutions[j].X = dm.dmPelsWidth;
    		resolutions[j].Y = dm.dmPelsHeight;
    		j++;
    	}
    }

  4. #19
    Ronin Dev John is offline
    MemberRank
    Mar 2011 Join Date
    /dev/nullLocation
    382Posts

    Re: Coded my very first loader/patcher for Tantra.

    Quote Originally Posted by jbeitz107 View Post
    My custom webtool created in C# programming. This is my first trial so I hope you guys like the looks.
    ¿Webpage coded in C#? WTF?

  5. #20
    Apprentice Oreon Zenfinix is offline
    MemberRank
    May 2014 Join Date
    5Posts

    Re: Coded my very first loader/patcher for Tantra.

    Can u make me loader patcher too for my Tantra Beast k4

    - - - Updated - - -

    Guys can u make some video how to make loader/patcher for tantra

  6. #21
    Tantra Freelancer A v a r a is offline
    MemberRank
    Apr 2014 Join Date
    In Your HeadLocation
    554Posts

    Re: Coded my very first loader/patcher for Tantra.

    What version of STTantra.exe did you use for that?

  7. #22
    Developer Terrified is offline
    MemberRank
    Dec 2013 Join Date
    Six MountainsLocation
    229Posts

    Re: Coded my very first loader/patcher for Tantra.

    How about figure out how to run Tantra on MAC and LINUX? MySQL is way better than MSSQL in my opinion. So Patcher and Loader would be available in all kinds of Operating System... Anyone has this idea too?

  8. #23
    Ronin Dev John is offline
    MemberRank
    Mar 2011 Join Date
    /dev/nullLocation
    382Posts

    Re: Coded my very first loader/patcher for Tantra.

    Quote Originally Posted by Terrified View Post
    How about figure out how to run Tantra on MAC and LINUX? MySQL is way better than MSSQL in my opinion. So Patcher and Loader would be available in all kinds of Operating System... Anyone has this idea too?
    It's so difficult, however, mysql is available to install on Windows.
    To play Tantra on GNU/Linux it's very different, it's somewhat easy.

  9. #24
    Developer Terrified is offline
    MemberRank
    Dec 2013 Join Date
    Six MountainsLocation
    229Posts

    Re: Coded my very first loader/patcher for Tantra.

    i tried a bootcamp on MAC but the loaded/patcher isn't working. i also tried wine on linux (centos) but connection to mysql is a bit problem, due to odbc connection hard to locate in linux.

  10. #25
    www.m.me/ExcelsiorSoftLLC master_unknown is offline
    MemberRank
    Oct 2004 Join Date
    HellLocation
    1,242Posts

    Re: Coded my very first loader/patcher for Tantra.

    Quote Originally Posted by dTantra View Post
    Just some quick code for those who want to do a settings program.



    Code:
    
    struct Resolution
    {
    	DWORD X;
    	DWORD Y;
    	DWORD Bit;
    };
    
    
    for( int iModeNum = 0; EnumDisplaySettings( NULL, iModeNum, &dm ) != 0; iModeNum++ ) 
    {
    	if(dm.dmDisplayFrequency == 60 && dm.dmDefaultSource == 0 && dm.dmBitsPerPel != 8)
    	{
    		resolutions[j].Bit = dm.dmBitsPerPel;
    		resolutions[j].X = dm.dmPelsWidth;
    		resolutions[j].Y = dm.dmPelsHeight;
    		j++;
    	}
    }
    Thats why I asked that "OP Guy" why not try to load the "resolution" for ease of access and for easier to code instead of "putting all the resolution" he knows. Ugly coding imo. But meh, his probably close minded. ^^
    Good luck with pushing your ideas to him tho.

  11. #26
    Apprentice smasherss is offline
    MemberRank
    Jan 2013 Join Date
    6Posts

    Re: Coded my very first loader/patcher for Tantra.

    Please share this file to me ...

  12. #27
    Tantra/Web Development jbeitz107 is offline
    MemberRank
    Mar 2012 Join Date
    USALocation
    1,471Posts

    Re: Coded my very first loader/patcher for Tantra.

    Figured I would share with you guys a bit of code for a launcher created in C# 2010. Just my way to contribute to everyone here. Enjoy! BTW I used my resolution tool here and have misplaced the source for it but, it will work for any K6 server
    Resolution tool goes in folder with launcher - https://www.mediafire.com/?zk0wse95e1rd9t3
    Source for the launcher - https://www.mediafire.com/?b34s0ileqhvzzq4

  13. #28
    Apprentice Oreon Zenfinix is offline
    MemberRank
    May 2014 Join Date
    5Posts

    Re: Coded my very first loader/patcher for Tantra.

    the link of the Source for the launcher is dead :"(




Page 2 of 2 FirstFirst 12

Advertisement