The 'Show Off' topic

Page 29 of 94 FirstFirst ... 1921222324252627282930313233343536373979 ... LastLast
Results 421 to 435 of 1396
  1. #421
    Good Guy George qet123 is offline
    MemberRank
    Apr 2009 Join Date
    DesertLocation
    1,432Posts

    Re: The 'Show Off' thread - Part 2

    Hmm, this is my latest job










  2. #422
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: The 'Show Off' thread - Part 2

    nothing.special.

  3. #423
    Slothstronaut Justice For All is offline
    MemberRank
    Aug 2011 Join Date
    Almost thereLocation
    3,254Posts

    Re: The 'Show Off' thread - Part 2

    Should I finish and release this? It's nothing special and obviously not finished yet, (<-- read this before you feel the need to say it's empty or plain) I just got bored and started making a Town remake out of my head.






    Here are some screenshots using my Blank Mesh texture (not archtype);
    Spoiler:






    Last edited by Justice For All; 15-05-12 at 08:06 PM.

  4. #424
    Doggie And Rice. Military is offline
    MemberRank
    Jun 2009 Join Date
    Here and AboutLocation
    3,301Posts

    Re: The 'Show Off' thread - Part 2

    It would be better if you didn't have the archtype enabled.

  5. #425
    Intelligent DoucheBag jur13n is offline
    MemberRank
    Jan 2008 Join Date
    Zwolle,Location
    1,946Posts

    Re: The 'Show Off' thread - Part 2

    Quote Originally Posted by Justice For All View Post
    Should I finish and release this? It's nothing special and obviously not finished yet, I just got bored and started making a Town remake out of my head.
    I really don't like that map..
    Just like one of another town based map
    besides, I have seen better from you..
    and it looks really empty to me.

  6. #426
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: The 'Show Off' thread - Part 2

    Code:
    <?php
    class dbhandler
    {
    	var $host	= "OMAR-PC\SQLEXPRESS";
    	var $user	= "sa";
    	var $pass	= "mazemania1";
    	var $dbn	= "GunzDB";
    	var $con;
    	
    	public function __construct()
    	{
    		$this->con = mssql_connect($this->host, $this->user, $this->pass) or die("Errors have occured while trying to connect to the MSSQL server, please come back some other time. <br /> If you remain to get this message, please contact an Administrator.");
    		
    		$this->selectDatabase($this->dbn);
    		
    	}
    	
    	public function selectDatabase($dbn)
    	{
    		mssql_select_db($dbn);
    	}
    	
    	public function query($rows, $table, $conditions = "")
    	{
    		$q = mssql_query("SELECT ".((is_array($rows)) ? implode(", ", $rows) : $rows)." FROM ".$table." ".$conditions."");
    		
    		if(mssql_num_rows($q) < 1)
    			return false;
    			
    		$return = array();
    			
    		for($i = 0; $fetch = mssql_fetch_array($q); $i++)
    			array_push($return, $fetch[$rows[$i]]);
    
    		return $return;
    	}
    }
    
    // $db->query("AID", "Account", "WHERE AID IN (SELECT AID FROM Character WHERE Name = 'Vusion' AND DeleteFlag != 1) ");
    
    $db = new dbhandler();
    ?>
    I might finish this class later on if I have time.
    Last edited by Vusion; 15-05-12 at 09:55 PM.

  7. #427
    Valued Member DelPa is offline
    MemberRank
    May 2010 Join Date
    JapanLocation
    100Posts

    Re: The 'Show Off' thread - Part 2

    I'm newcomer to the source code. and first failure here.
    I've tried to create moving login screen (like HGG).
    but now, It is like Windows 98's maze screen saver.

    http://www.youtube.com/watch?v=pM8UKGs4xl4

    p.s. :Animation remake, and Character selection screen.
    http://www.youtube.com/watch?v=3Itwj5zdeUE
    Last edited by DelPa; 17-05-12 at 11:59 AM.

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

    Re: The 'Show Off' thread - Part 2

    Quote Originally Posted by DelPa View Post
    I'm newcomer to the source code. and first failure here.
    I've tried to create moving login screen (like HGG).
    but now, It is like Windows 98's maze screen saver.

    gunz 2012-05-17 10-09-00-810.avi - YouTube
    I laughed ^^

  9. #429
    Hi, I'm Omar! Vusion is offline
    MemberRank
    Jan 2011 Join Date
    HereLocation
    1,658Posts

    Re: The 'Show Off' thread - Part 2

    Quote Originally Posted by DelPa View Post
    I'm newcomer to the source code. and first failure here.
    I've tried to create moving login screen (like HGG).
    but now, It is like Windows 98's maze screen saver.

    gunz 2012-05-17 10-09-00-810.avi - YouTube
    It's like driving a car with bad handling haha, well done, though.

  10. #430
    What year is this? pluke001 is offline
    MemberRank
    Nov 2008 Join Date
    LithuaniaLocation
    941Posts

    Re: The 'Show Off' thread - Part 2

    Quote Originally Posted by DelPa View Post
    I'm newcomer to the source code. and first failure here.
    I've tried to create moving login screen (like HGG).
    but now, It is like Windows 98's maze screen saver.

    gunz 2012-05-17 10-09-00-810.avi - YouTube

    p.s. :Animation remake, and Character selection screen.
    gunzd 2012-05-17 18-40-12-861.avi - YouTube
    It is realy nice outcome :)
    Though I am sure HGG used diffrent method for it when I see your video. Lambda even posted basic formula they used for it if I remember corectly.

  11. #431
    (。◕‿‿◕。) Nobody666 is offline
    MemberRank
    Oct 2008 Join Date
    1,773Posts

    Re: The 'Show Off' thread - Part 2

    Quote Originally Posted by pluke001 View Post
    It is realy nice outcome :)
    Though I am sure HGG used diffrent method for it when I see your video. Lambda even posted basic formula they used for it if I remember corectly.
    B-spline - Wikipedia, the free encyclopedia

    oh the fun

    doest matter though, Delpas way works to even if it is different, just need to change it a little

  12. #432
    What year is this? pluke001 is offline
    MemberRank
    Nov 2008 Join Date
    LithuaniaLocation
    941Posts

    Re: The 'Show Off' thread - Part 2

    Quote Originally Posted by Nobody666 View Post
    B-spline - Wikipedia, the free encyclopedia

    oh the fun

    doest matter though, Delpas way works to even if it is different, just need to change it a little
    Oh yeah now I remember. I didnt say Delpas work isnt good, it is realy good and well done. Not manby people can acomplish this much. Just in my opinion with b-spline you could get advanced movement and view angle rotaniocs easier. Though every method is unique and outcome can be done very well. :)

  13. #433
    Valued Member DelPa is offline
    MemberRank
    May 2010 Join Date
    JapanLocation
    100Posts

    Re: The 'Show Off' thread - Part 2

    I hate math. It is very hard and incomprehensible.

    I've rewrote everything. Eventually it is not looks like HGG.
    but I think it is good than old one...?

    gunzd 2012-05-19 02-18-23-415.avi - YouTube

  14. #434
    Member Miguelbkn is offline
    MemberRank
    Feb 2010 Join Date
    Santiago, ChileLocation
    95Posts

    Re: The 'Show Off' thread - Part 2

    Quote Originally Posted by DelPa View Post
    I hate math. It is very hard and incomprehensible.

    I've rewrote everything. Eventually it is not looks like HGG.
    but I think it is good than old one...?

    gunzd 2012-05-19 02-18-23-415.avi - YouTube
    Looks better thank others.

    GJ<3

  15. #435
    Hakuna Matata bulli10 is offline
    MemberRank
    Feb 2011 Join Date
    697Posts

    Re: The 'Show Off' thread - Part 2

    Quote Originally Posted by DelPa View Post
    I hate math. It is very hard and incomprehensible.

    I've rewrote everything. Eventually it is not looks like HGG.
    but I think it is good than old one...?

    gunzd 2012-05-19 02-18-23-415.avi - YouTube
    Hhhh so cool !!@



Advertisement