Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    NoyCohen111's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    105
    My Mood
    Relaxed

    ObjectCreateStruct OCS full struct

    Hello

    Code:
    struct ObjectCreateStruct {
        ObjectCreateStruct() {
            Clear();
        }
    
        void Clear() 
    	{
    
            m_ObjectType		= 0;
            m_ContainerCode		= 0;
            m_Flags				= 0;
            m_Flags2			= 0;
    		m_nRenderGroup		= 0;
    		m_GlobalForceOverride.Init();
            m_Pos.Init();
            m_Scale.Init(1.0f, 1.0f, 1.0f);
            m_Rotation.Init();
            m_UserData			= 0;
            m_hClass			= 0;
            m_Filename[0]		= 0;
    
            uint32 i;
            for (i=0; i < MAX_MODEL_TEXTURES; i++) {
                m_SkinNames[i][0] = 0;
            }
            for (i=0; i < MAX_MODEL_RENDERSTYLES; i++) {
                m_RenderStyleNames[i][0] = 0;
            }
    		
    		for (i=1; i < MAX_CHILD_MODELS ; i++ )
    		{
    			m_Filenames[i][0]= 0;
    		}
    
            m_Name[0]			= 0;
            m_NextUpdate		= 0.0f;
    
    		m_cProperties.Reset();
        }
        uint16 m_ObjectType;
        uint16 m_ContainerCode;
        uint32 m_Flags;
        uint32 m_Flags2;
    	uint8  m_nRenderGroup;
    	LTVector m_GlobalForceOverride;
        LTVector m_Pos;
        LTVector m_Scale;
        LTRotation m_Rotation;
        uint32 m_UserData;
        HCLASS m_hClass;
    	union {
    
        char m_Filename[MAX_CS_FILENAME_LEN+1];  //!
    	char m_Filenames[MAX_CHILD_MODELS][MAX_CS_FILENAME_LEN +1];
    
    	};
    
        union {
            char m_SkinName[MAX_CS_FILENAME_LEN+1];  //!
            char m_SkinNames[MAX_MODEL_TEXTURES][MAX_CS_FILENAME_LEN+1];
        };
    
        union {
            char m_RenderStyleName[MAX_CS_FILENAME_LEN+1];   //!
            char m_RenderStyleNames[MAX_MODEL_RENDERSTYLES][MAX_CS_FILENAME_LEN+1];
        };
    
    //! This object's name.
        char m_Name[MAX_CS_FILENAME_LEN+1];
    
    //! This will be the object's starting NextUpdate.
        float m_NextUpdate;
    
    //! List of properties
    	GenericPropList m_cProperties;
    };
    usefull for https://www.mpgh.net/forum/207-combat...l-spawner.html

    Credits: dcomicboy (idk his name)

  2. #2
    Ch40zz-C0d3r's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Posts
    831
    Reputation
    44
    Thanks
    401
    My Mood
    Twisted
    Wanna troll me?
    1. His name is supercarz
    2. I did this
    3. Much people have this and creds goes only to the NOLF2 source

    Progress with my game - "Disbanded"
    • Fixed FPS lag on spawning entities due to the ent_preload buffer!
    • Edit the AI code to get some better pathfinding
    • Fixed the view bug within the sniper scope view. The mirror entity is invisible now!
    • Added a new silencer for ALL weapons. Also fixed the rotation bugs
    • Added a ton of new weapons and the choice to choose a silencer for every weapon
    • Created a simple AntiCheat, noobs will cry like hell xD
    • The name will be Disbanded, the alpha starts on the 18th august 2014



    Some new physics fun (Serversided, works on every client)



    My new AI
    https://www.youtube.com/watch?v=EMSB1GbBVl8

    And for sure my 8 months old gameplay with 2 friends
    https://www.youtube.com/watch?v=Na2kUdu4d_k

  3. #3
    Flengo's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    /admincp/banning.php
    Posts
    20,591
    Reputation
    5180
    Thanks
    14,178
    My Mood
    Inspired
    About time someone shared this out.

    Now its all complete. Hope someone actually uses it though.
    I Read All Of My PM's & VM's
    If you need help with anything, just let me know.

     


     
    VM | PM | IM
    Staff Administrator Since 10.13.2019
    Publicist Since 04.04.2015
    Middleman Since 04.14.2014
    Global Moderator Since 08.01.2013
    Premium Since 05.29.2013

    Minion+ Since 04.18.2013

    Combat Arms Minion Since 12.26.2012
    Contributor Since 11.16.2012
    Member Since 05.11.2010


  4. #4
    wraithkilla's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    257
    Reputation
    10
    Thanks
    905
    My Mood
    Busy
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Wanna troll me?
    1. His name is supercarz
    2. I did this
    3. Much people have this and creds goes only to the NOLF2 source
    you cannot "do"this.. you can just explore it

  5. The Following User Says Thank You to wraithkilla For This Useful Post:

    matypatty (09-17-2012)

  6. #5
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    i'm supercarz1991 on here bro, and yeah this may be released, but if you don't know what your doing u still get errors with this

    commando: You're probably the best non-coder coder I know LOL


  7. #6
    NoyCohen111's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    105
    My Mood
    Relaxed
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Wanna troll me?
    1. His name is supercarz
    2. I did this
    3. Much people have this and creds goes only to the NOLF2 source
    I just found it, and the name was dcomicboy, I dont know all the names of supercarz

    Quote Originally Posted by supercarz1991 View Post
    i'm supercarz1991 on here bro, and yeah this may be released, but if you don't know what your doing u still get errors with this
    Hi the people who cant fix the errors are leechers... they only c&p

  8. #7
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    Quote Originally Posted by NoyCohen111 View Post
    I just found it, and the name was dcomicboy, I dont know all the names of supercarz



    Hi the people who cant fix the errors are leechers... they only c&p
    i'm the one that found it. and i'm not even a coder, i don't know how to fix them, i've never even gotten it to work

    commando: You're probably the best non-coder coder I know LOL


  9. #8
    NoyCohen111's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    105
    My Mood
    Relaxed
    Quote Originally Posted by supercarz1991 View Post
    i'm the one that found it. and i'm not even a coder, i don't know how to fix them, i've never even gotten it to work
    there are exceptions, and you one of them , you help the society and thats very kind

  10. #9
    supercarz1991's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,285
    Reputation
    435
    Thanks
    3,715
    My Mood
    Doh
    Quote Originally Posted by NoyCohen111 View Post
    there are exceptions, and you one of them , you help the society and thats very kind
    wanna help me make it work? LOL

    commando: You're probably the best non-coder coder I know LOL


  11. #10
    wraithkilla's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Posts
    257
    Reputation
    10
    Thanks
    905
    My Mood
    Busy
    Quote Originally Posted by NoyCohen111 View Post
    there are exceptions, and you one of them , you help the society and thats very kind
    yeah u are a very experienced coder.. XDD

  12. #11
    NoyCohen111's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    105
    My Mood
    Relaxed
    Quote Originally Posted by wraithkilla View Post
    yeah u are a very experienced coder.. XDD
    I never said i was

  13. #12
    Password77's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Canada, ON
    Posts
    179
    Reputation
    10
    Thanks
    181
    My Mood
    Cheerful
    Wanna troll me?
    1) How did you "do" this. I never knew you can do a screen or a code lmaoooo
    2) You are homosexual
    3) GTFO
    4) uMad?
    Quote Originally Posted by Ch40zz-C0d3r View Post
    Wanna troll me?
    1. His name is supercarz
    2. I did this
    3. Much people have this and creds goes only to the NOLF2 source
    Doing more Java and Python
    Need help with your hack? Ask me, I will try to help you with all my might .

  14. #13
    Saltine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    493
    Reputation
    104
    Thanks
    629
    Quote Originally Posted by Password77 View Post
    Wanna troll me?
    1) How did you "do" this. I never knew you can do a screen or a code lmaoooo
    2) You are homosexual
    3) GTFO
    4) uMad?
    Believe it or not, he is one of the more intelligent coders in this section. I have seen his work, and it is rather good. On the other hand, I have seen nothing you have to offer.

    Oh no! Vortex is gay!

  15. The Following 4 Users Say Thank You to Saltine For This Useful Post:

    arun823 (09-18-2012),Ch40zz-C0d3r (09-18-2012),[MPGH]Flengo (09-18-2012),TokolocoSK (09-19-2012)

  16. #14
    Password77's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    Canada, ON
    Posts
    179
    Reputation
    10
    Thanks
    181
    My Mood
    Cheerful
    Cool story bro. I never commented on his coding skills. I never said I was as good as him. I just wanted to know how he can "do" his computer screen? O.o
    Quote Originally Posted by Saltine View Post

    Believe it or not, he is one of the more intelligent coders in this section. I have seen his work, and it is rather good. On the other hand, I have seen nothing you have to offer.
    Doing more Java and Python
    Need help with your hack? Ask me, I will try to help you with all my might .

  17. #15
    NSixx's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    244
    Reputation
    12
    Thanks
    246
    My Mood
    Amused
    Quote Originally Posted by Password77 View Post
    Cool story bro. I never commented on his coding skills. I never said I was as good as him. I just wanted to know how he can "do" his computer screen? O.o
    so ur not as good as him?
    If we don't end war, war will end us.

Page 1 of 2 12 LastLast

Similar Threads

  1. Help me!!!!! DOWNLOAD FULL VERSION !!
    By athenna123 in forum Gunz General
    Replies: 2
    Last Post: 03-15-2009, 12:00 PM
  2. Full Twirlled Signature
    By mostwanted in forum Tutorials
    Replies: 38
    Last Post: 10-29-2008, 09:06 AM
  3. Full Metal alchimist
    By gunot in forum Anime
    Replies: 27
    Last Post: 10-27-2006, 04:01 AM
  4. DOWNLOAD WoW.exe HERE! (Full Client For MPGH Server)
    By RebornAce in forum General Gaming
    Replies: 25
    Last Post: 05-14-2006, 02:54 AM
  5. Full Abstact By UberMan
    By Paolo1993 in forum Tutorials
    Replies: 3
    Last Post: 01-28-2006, 02:53 AM