Poll: Best VIP Menu every seen?

Be advised that this is a public poll: other users can see the choice(s) you selected.

Page 39 of 81 FirstFirst ... 29373839404149 ... LastLast
Results 571 to 585 of 1206
  1. #571
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by _Fk127_ View Post
    u only need
    Code:
    pDevice->SetRenderState( D3DRS_ZENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_FOGENABLE, FALSE );
    actually.
    remove the rest.
    so.. U want to disable Z buffer and Fog..

    Do u really kno what these things DO?? dont just post code if u dont kno what it does... really done.
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  2. #572
    TEN.HGPM's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    317
    Reputation
    31
    Thanks
    34
    My Mood
    Lurking
    Quote Originally Posted by CA_ View Post
    lol

    uh oh now look wat happened:



    dont you gotta recreate the text or some shit
    Quote Originally Posted by Viibez View Post
    MPGH = Brainwash! Dave why you started this [MPGH]?
    Quote Originally Posted by Dave84311 View Post
    Simple answer, mindfuck, I wanted to create a new breed of super assholes. This breed of super assholes will soon take over the world and do my bidding. We will infect all levels of society and spread pain and injustice. Now that you know my plan, project Blackwar is in full commencement. I shall release Darkwar as well.

  3. #573
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    Make bubbles that fly around and pop when you click them. Ill thank every post you have ever made all 478 mhmmz



    Put this image in your signature if you support HTML5 development!

  4. #574
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by TEN.HGPM View Post
    dont you gotta recreate the text or some shit
    I think it did like that because of all those render states.
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  5. #575
    jidabug23's Avatar
    Join Date
    Oct 2010
    Gender
    female
    Posts
    39
    Reputation
    10
    Thanks
    1
    I want to download it when it's Finished. Where Can I find it?

  6. #576
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    Quote Originally Posted by topblast View Post


    so.. U want to disable Z buffer and Fog..

    Do u really kno what these things DO?? dont just post code if u dont kno what it does... really done.
    I know enough to know that both of these end up drawing over menus. Which is the problem that needs to be solved.



    Put this image in your signature if you support HTML5 development!

  7. #577
    CA_'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Earth
    Posts
    170
    Reputation
    10
    Thanks
    49
    My Mood
    Hungover
    Quote Originally Posted by jidabug23 View Post
    I want to download it when it's Finished. Where Can I find it?
    im going to release it when ive tested it and its finished.
    Capitals letters are the difference between
    "I helped my uncle Jack off a horse."
    and
    "I helped my uncle jack off a horse."
    See the difference?




    So pro...^^^

  8. #578
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    pDevice->SetRenderState( D3DRS_SRCBLEND, D3DBLEND_SRCALPHA );
    pDevice->SetRenderState( D3DRS_BLENDOP, D3DBLENDOP_ADD );
    pDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA );
    pDevice->SetRenderState( D3DRS_ALPHATESTENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_SEPARATEALPHABLENDENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_STENCILENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_ALPHABLENDENABLE, TRUE );
    pDevice->SetRenderState( D3DRS_VERTEXBLEND, D3DVBF_DISABLE );
    pDevice->SetRenderState( D3DRS_INDEXEDVERTEXBLENDENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_COLORWRITEENABLE, D3DCOLORWRITEENABLE_ALPHA | D3DCOLORWRITEENABLE_BLUE |D3DCOLORWRITEENABLE_GREEN | D3DCOLORWRITEENABLE_RED );
    pDevice->SetRenderState( D3DRS_SHADEMODE, D3DSHADE_GOURAUD );
    pDevice->SetRenderState( D3DRS_FOGENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_SPECULARENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_LIGHTING, FALSE );
    pDevice->SetRenderState( D3DRS_CULLMODE, D3DCULL_NONE );
    pDevice->SetRenderState( D3DRS_ZWRITEENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_ZENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_FILLMODE, D3DFILL_SOLID );



    LOL WHAT DO U REALLY WANT WITH THIS????????????????????????????????

    You are turning things off then to turn them back on. your even turning the same things off twice.

    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  9. #579
    _Fk127_'s Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    720
    Reputation
    16
    Thanks
    208
    My Mood
    Bitchy
    Quote Originally Posted by topblast View Post
    pDevice->SetRenderState( D3DRS_SRCBLEND, D3DBLEND_SRCALPHA );
    pDevice->SetRenderState( D3DRS_BLENDOP, D3DBLENDOP_ADD );
    pDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA );
    pDevice->SetRenderState( D3DRS_ALPHATESTENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_SEPARATEALPHABLENDENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_STENCILENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_ALPHABLENDENABLE, TRUE );
    pDevice->SetRenderState( D3DRS_VERTEXBLEND, D3DVBF_DISABLE );
    pDevice->SetRenderState( D3DRS_INDEXEDVERTEXBLENDENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_COLORWRITEENABLE, D3DCOLORWRITEENABLE_ALPHA | D3DCOLORWRITEENABLE_BLUE |D3DCOLORWRITEENABLE_GREEN | D3DCOLORWRITEENABLE_RED );
    pDevice->SetRenderState( D3DRS_SHADEMODE, D3DSHADE_GOURAUD );
    pDevice->SetRenderState( D3DRS_FOGENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_SPECULARENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_LIGHTING, FALSE );
    pDevice->SetRenderState( D3DRS_CULLMODE, D3DCULL_NONE );
    pDevice->SetRenderState( D3DRS_ZWRITEENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_ZENABLE, FALSE );
    pDevice->SetRenderState( D3DRS_FILLMODE, D3DFILL_SOLID );



    LOL WHAT DO U REALLY WANT WITH THIS????????????????????????????????

    You are turning things off then to turn them back on. your even turning the same things off twice.

    LOL i just grabbed it from wicho's post



    Put this image in your signature if you support HTML5 development!

  10. #580
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by _Fk127_ View Post
    I know enough to know that both of these end up drawing over menus. Which is the problem that needs to be solved.
    Are you sure??? Really. Fog and Z buffer.

    Tell be what those are u get respected (not that i dont already but u get more) Tell me what they have to do with drawing 2D font... I kiss ur ass, blow you and give u my computer.
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  11. #581
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by topblast View Post


    Are you sure??? Really. Fog and Z buffer.

    Tell be what those are u get respected (not that i dont already but u get more) Tell me what they have to do with drawing 2D font... I kiss ur ass, blow you and give u my computer.
    They have literally nothing to do with drawing 2D Font.
    The reason why your font is disappearing is because it is getting drawn over.
    Easy many refont/recreate functions released that you can use.
    Problem solved.
    BIC BOIIII

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  12. The Following User Says Thank You to Nubzgetkillz For This Useful Post:

    topblast (01-25-2011)

  13. #582
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by _Fk127_ View Post
    Make bubbles that fly around and pop when you click them. Ill thank every post you have ever made all 478 mhmmz
    No thank you.


    Everyone should I released menu with these incredibly stable bubbles?(lol little off but its ok )

    Haha

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  14. #583
    topblast's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Far from around you Programmer: C++ | VB | C# | JAVA
    Posts
    3,607
    Reputation
    149
    Thanks
    5,052
    My Mood
    Cool
    Quote Originally Posted by Nubzgetkillz View Post
    They have literally nothing to do with drawing 2D Font.
    The reason why your font is disappearing is because it is getting drawn over.
    Easy many refont/recreate functions released that you can use.
    Problem solved.
    BIC BOIIII
    thankyou but i meant KY..

    Zbuffer is used to buffer the Third Dimension. Fog is makes things hard to see in the third dimension.
    You are only using 2 dimensions for the font. which is Stuck on to the inside of ur screen.
    I just like programming, that is all.

    Current Stuff:

    • GPU Programmer (Cuda)
    • Client/Server (Cloud Server)
    • Mobile App Development

  15. #584
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by topblast View Post


    thankyou but i meant KY..

    Zbuffer is used to buffer the Third Dimension. Fog is makes things hard to see in the third dimension.
    You are only using 2 dimensions for the font. which is Stuck on to the inside of ur screen.
    Bravo
    bIC BoiIII

    Member since September 25, 2010

    Current Objectives:
    • Graduate college with a degree in Computer Science
    • Find a decent job in the Computer Science Field
    • Learn more programming languages

    Looking for Elo Boosting Job - League of Legends
    Looking for Bronze -> Gold Jobs


    Skype: whatthedream

  16. #585
    CA_'s Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Earth
    Posts
    170
    Reputation
    10
    Thanks
    49
    My Mood
    Hungover
    fk127 wat u did was make it so the menu stays open forever
    Capitals letters are the difference between
    "I helped my uncle Jack off a horse."
    and
    "I helped my uncle jack off a horse."
    See the difference?




    So pro...^^^

Page 39 of 81 FirstFirst ... 29373839404149 ... LastLast

Similar Threads

  1. Menu/Nomenu Showoff Thread!
    By Xmagz in forum WarRock Discussions
    Replies: 12
    Last Post: 01-23-2012, 11:38 AM
  2. [Discussion] My hack - Screenshots / showoff thread for others :)
    By ~FALLEN~ in forum CrossFire Discussions
    Replies: 29
    Last Post: 09-07-2011, 05:26 AM
  3. Hack Screenshots Thread
    By silentrunner2 in forum Combat Arms Europe Hacks
    Replies: 34
    Last Post: 03-12-2009, 08:57 AM
  4. Ingame Menu Hack (C++)
    By PabloTortilla in forum Programming Tutorial Requests
    Replies: 6
    Last Post: 09-08-2008, 04:09 PM
  5. [HACK IDEA THREAD] For all you hacking idea
    By warrick983 in forum Combat Arms Hacks & Cheats
    Replies: 15
    Last Post: 08-29-2008, 11:07 AM

Tags for this Thread