Page 2 of 7 FirstFirst 1234 ... LastLast
Results 11 to 20 of 68

Thread: Rumor 10th class

  1. #11
    Half-Duplex's Avatar



    Join Date
    Apr 27, 2008
    Last Online
    Jun 29, 2013
    Posts
    480
    Threads
    15




    Heh....didn't know Sunday school was in session...muwahaha

  2. #12
    Drunken F00l's Avatar



    Join Date
    Dec 11, 2004
    Last Online
    Jun 11, 2019
    Posts
    5,874
    Threads
    182
    Reputation
    SourceOP Thread


        
    Steam: 76561197968459473 
    Steam join date: Aug 23, 2004
    Steam Level: 56
    Profile Status: Public



    Quote Originally Posted by Zeitgeist
    but the objective could be killed
    And the objective was a player playing the civilian class.

  3. #13
    Zeitgeist's Avatar



    Join Date
    Sep 28, 2008
    Last Online
    Dec 14, 2009
    Posts
    956
    Threads
    26




    Quote Originally Posted by Drunken_F00l
    Quote Originally Posted by Zeitgeist
    but the objective could be killed
    And the objective was a player playing the civilian class.
    oh, thats where i missed the train, so to speak, i assumed it was always a bot.


    but even so, did it ever have the fundamentals of another class like weapons, etc?

  4. #14
    Drunken F00l's Avatar



    Join Date
    Dec 11, 2004
    Last Online
    Jun 11, 2019
    Posts
    5,874
    Threads
    182
    Reputation
    SourceOP Thread


        
    Steam: 76561197968459473 
    Steam join date: Aug 23, 2004
    Steam Level: 56
    Profile Status: Public



    He had 50hp and an umbrella for to beat down people.

    He wasn't meant to be a formidable opponent.

  5. #15
    OmegaZero_Alpha's Avatar



    Join Date
    Jan 02, 2005
    Last Online
    Jul 16, 2019
    Posts
    4,880
    Threads
    253
    Reputation
    SourceOP Thread


        
    Steam: 76561197979925166 
    Steam join date: Dec 24, 2005
    Steam Level: 44
    Profile Status: Public



    it would be cool to make him a really melee class, like, give him a katana that does 75 damage (maybe right click can block all other melee weapons, the way that pyro blocks physics-based ones) and make him faster than the scout. Take away a shit load of health, You know, a severely skill-based class.

    maybe we can mod it so.
    /sarcasm

  6. #16
    Hell-met's Avatar



    Join Date
    Feb 15, 2008
    Last Online
    Jul 17, 2014
    Posts
    4,310
    Threads
    64




    Rockets aren't "physics-based", and by your logic the syringues should also be reflected.

    and I lol'd at the "we can mod it"

  7. #17
    Zeitgeist's Avatar



    Join Date
    Sep 28, 2008
    Last Online
    Dec 14, 2009
    Posts
    956
    Threads
    26




    if we mod it
    they will come

  8. #18
    OmegaZero_Alpha's Avatar



    Join Date
    Jan 02, 2005
    Last Online
    Jul 16, 2019
    Posts
    4,880
    Threads
    253
    Reputation
    SourceOP Thread


        
    Steam: 76561197979925166 
    Steam join date: Dec 24, 2005
    Steam Level: 44
    Profile Status: Public



    I am pretty sure rockets are actually considered into the physics engine, even though they go straight forward. there are even some types of floors that can redirect rockets (some surf maps if you shoot down they won't collide but will slide away slowly, or they hold them in place as mines).

    Syringes should be deflectable, but they really aren't physics-based (notice if you shoot them straight up than they will continue into the sky instead of coming back down, even on infinitely tall maps). plus, physics-based syringes would be an abominable lag-fest.
    /sarcasm

  9. #19
    Hell-met's Avatar



    Join Date
    Feb 15, 2008
    Last Online
    Jul 17, 2014
    Posts
    4,310
    Threads
    64




    Quote Originally Posted by OmegaZero_Alpha
    they will continue into the sky instead of coming back down, even on infinitely tall maps)
    Wrong!

  10. #20
    Drunken F00l's Avatar



    Join Date
    Dec 11, 2004
    Last Online
    Jun 11, 2019
    Posts
    5,874
    Threads
    182
    Reputation
    SourceOP Thread


        
    Steam: 76561197968459473 
    Steam join date: Aug 23, 2004
    Steam Level: 56
    Profile Status: Public



    In source engine, there are several different move types (listed below). Only one of them is VPHYSICS (which you have come to know as physics-based). I haven't checked, but I'd be pretty sure rockets are MOVETYPE_FLY.

    Code:
    enum MoveType_t
    {
    	MOVETYPE_NONE		= 0,	// never moves
    	MOVETYPE_ISOMETRIC,			// For players -- in TF2 commander view, etc.
    	MOVETYPE_WALK,				// Player only - moving on the ground
    	MOVETYPE_STEP,				// gravity, special edge handling -- monsters use this
    	MOVETYPE_FLY,				// No gravity, but still collides with stuff
    	MOVETYPE_FLYGRAVITY,		// flies through the air + is affected by gravity
    	MOVETYPE_VPHYSICS,			// uses VPHYSICS for simulation
    	MOVETYPE_PUSH,				// no clip to world, push and crush
    	MOVETYPE_NOCLIP,			// No gravity, no collisions, still do velocity/avelocity
    	MOVETYPE_LADDER,			// Used by players only when going onto a ladder
    	MOVETYPE_OBSERVER,			// Observer movement, depends on player's observer mode
    	MOVETYPE_CUSTOM,			// Allows the entity to describe its own physics
    
    	// should always be defined as the last item in the list
    	MOVETYPE_LAST		= MOVETYPE_CUSTOM,
    
    	MOVETYPE_MAX_BITS	= 4
    };

Page 2 of 7 FirstFirst 1234 ... LastLast

Tags for this Thread