Poll: Best VIP Menu every seen?

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

Page 42 of 81 FirstFirst ... 32404142434452 ... LastLast
Results 616 to 630 of 1206
  1. #616
    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


    where did u put it... TestEnviroment. CA, or a D3D enviroment u made.
    the famous test9

    Quote Originally Posted by CA_ View Post
    um sorry i just used the code fk127 gave me and it worked i just put that code in wrong place so it messed up the menu
    Listen to the pros.
    Don't go off thinking you know everything.
    I know you don't but you soon will.
    kthxbaii

    bic boiiiiiiI

    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

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

    NOOB (06-19-2011)

  3. #617
    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
    the famous test9
    well then I dont kno.. where did u draw..? How did u draw.. What was the color u choose...Send me the Function u called.
    I just like programming, that is all.

    Current Stuff:

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

  4. The Following User Says Thank You to topblast For This Useful Post:

    NOOB (06-19-2011)

  5. #618
    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


    well then I dont kno.. where did u draw..? How did u draw.. What was the color u choose...Send me the Function u called.
    DrawSquare(pDevice,100,10,40,20,Yellow);

    struct sVertex
    {
    float x, y, z, ht;
    DWORD color;

    enum FVF
    {
    FVF_Flags = (D3DFVF_XYZRHW | D3DFVF_DIFFUSE)
    };
    };

    void DrawSquare(LPDIRECT3DDEVICE9 pDevice,int x,int y,int w,int h,DWORD color1)
    {
    sVertex Veri[6] =
    {
    {(float)x ,(float)y , 0.0f, 0.0f, (color1-0x00888888)},
    {(float)(x+w) ,(float)y , 0.0f, 0.0f, (color1-0x00888888)},
    {(float)x ,(float)(y+(h/2)) , 0.0f, 0.0f, (color1)},
    {(float)(x+w) ,(float)(y+(h/2)) , 0.0f, 0.0f, (color1)},
    {(float)x ,(float)(y+h) , 0.0f, 0.0f, (color1+0x00555555)},
    {(float)(x+w) ,(float)(y+h) , 0.0f, 0.0f, (color1+0x00555555)},
    };


    pDevice->SetTexture( 0, NULL );

    pDevice->SetRenderState( D3DRS_LIGHTING, FALSE);
    pDevice->SetRenderState( D3DRS_CULLMODE, D3DCULL_CCW);
    pDevice->SetRenderState( D3DRS_ALPHABLENDENABLE, TRUE );
    pDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA );
    pDevice->SetRenderState( D3DRS_ZENABLE, D3DZB_FALSE );
    pDevice->SetRenderState( D3DRS_FOGENABLE, false );

    pDevice->SetFVF( sVertex::FVF_Flags );
    pDevice->DrawPrimitiveUP(D3DPT_TRIANGLESTRIP,4,Veri,size of (sVertex));
    }

    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

  6. #619
    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 CA_ View Post
    um sorry i just used the code fk127 gave me and it worked i just put that code in wrong place so it messed up the menu
    If ur needing on someone to tell you where to put ur hacks even that u have a base u should not code from here.. Start with a hotkey.. I started with a hotkey. My first menu and anything d3d was Blast Hack v2.0 send fire god 1.0 and from their my Menus just changed look them up
    fire god v1.0 to v2.0


    Ps v1.3 was leaked and I updated to v1.3.5 and added groups and Stuff.(I rock)

    FUCK YOU GOD601


    Quote Originally Posted by Nubzgetkillz View Post
    DrawSquare(pDevice,100,10,40,20,Yellow);

    struct sVertex
    {
    float x, y, z, ht;
    DWORD color;

    enum FVF
    {
    FVF_Flags = (D3DFVF_XYZRHW | D3DFVF_DIFFUSE)
    };
    };

    void DrawSquare(LPDIRECT3DDEVICE9 pDevice,int x,int y,int w,int h,DWORD color1)
    {
    sVertex Veri[6] =
    {
    {(float)x ,(float)y , 0.0f, 0.0f, (color1-0x00888888)},
    {(float)(x+w) ,(float)y , 0.0f, 0.0f, (color1-0x00888888)},
    {(float)x ,(float)(y+(h/2)) , 0.0f, 0.0f, (color1)},
    {(float)(x+w) ,(float)(y+(h/2)) , 0.0f, 0.0f, (color1)},
    {(float)x ,(float)(y+h) , 0.0f, 0.0f, (color1+0x00555555)},
    {(float)(x+w) ,(float)(y+h) , 0.0f, 0.0f, (color1+0x00555555)},
    };


    pDevice->SetTexture( 0, NULL );

    pDevice->SetRenderState( D3DRS_LIGHTING, FALSE);
    pDevice->SetRenderState( D3DRS_CULLMODE, D3DCULL_CCW);
    pDevice->SetRenderState( D3DRS_ALPHABLENDENABLE, TRUE );
    pDevice->SetRenderState( D3DRS_DESTBLEND, D3DBLEND_INVSRCALPHA );
    pDevice->SetRenderState( D3DRS_ZENABLE, D3DZB_FALSE );
    pDevice->SetRenderState( D3DRS_FOGENABLE, false );

    pDevice->SetFVF( sVertex::FVF_Flags );
    pDevice->DrawPrimitiveUP(D3DPT_TRIANGLESTRIP,4,Veri,size of (sVertex));
    }
    I think i forgot something in that function..

    ok As u read the structure.. U will notice in the Defining of Veri

    it is in the same order.. Ok I want you to change 'HT' which will be the Forth thing in float in every Vertex of Veri.

    change from 0.0f to 1.0f
    Last edited by topblast; 01-25-2011 at 09:41 PM.
    I just like programming, that is all.

    Current Stuff:

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

  7. The Following User Says Thank You to topblast For This Useful Post:

    NOOB (06-19-2011)

  8. #620
    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 whit View Post
    Release and put me in creds
    Credit him for Being a pain in the ass and noob and he just wanted credit ..

    Advice : Next time ask for good credit
    I just like programming, that is all.

    Current Stuff:

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

  9. #621
    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
    [FONT="Fixedsys"][COLOR="Green"][SIZE="3"]


    I think i forgot something in that function..

    ok As u read the structure.. U will notice in the Defining of Veri

    it is in the same order.. Ok I want you to change 'HT' which will be the Forth thing in float in every Vertex of Veri.

    change from 0.0f to 1.0f
    ok it worked thanks

    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

  10. #622
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by topblast View Post


    Credit him for Being a pain in the ass and noob and he just wanted credit ..

    Advice : Next time ask for good credit
    Uhh Toppy if you wanted to have sex just ask..

  11. #623
    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
    ok it worked thanks
    Your welcome
    I just like programming, that is all.

    Current Stuff:

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

  12. #624
    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 whit View Post


    Uhh Toppy if you wanted to have sex just ask..
    Ahh i will pass....... For ever.
    I just like programming, that is all.

    Current Stuff:

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

  13. #625
    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


    Your welcome
    Time to change up some effects

    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. The Following User Says Thank You to Nubzgetkillz For This Useful Post:

    NOOB (06-19-2011)

  15. #626
    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
    Time to change up some effects
    lol....
    Just dont over do it.


    add my
    finish101@hotmail.com
    Last edited by topblast; 01-25-2011 at 09:59 PM.
    I just like programming, that is all.

    Current Stuff:

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

  16. #627
    -xGhost-'s Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    C:\Sytem32
    Posts
    344
    Reputation
    9
    Thanks
    57
    My Mood
    Relaxed
    Quote Originally Posted by topblast View Post


    Ahh i will pass....... For ever.
    Are you gay or you've seen how Whit looks?
    [IMG]https://i714.photobucke*****m/albums/ww144/sandro911/ProXtremeSignature.png[/IMG]

    [IMG]https://i714.photobucke*****m/albums/ww144/sandro911/Signature.png[/IMG]

  17. The Following User Says Thank You to -xGhost- For This Useful Post:

    NOOB (06-19-2011)

  18. #628
    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


    lol....
    Just dont over do it.


    add my
    finish101@hotmail.com
    done and you do same: meleewins@live.com

    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

  19. #629
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by -xGhost- View Post
    Are you gay or you've seen how Whit looks?
    Everyone has..

    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

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

    NOOB (06-19-2011)

  21. #630
    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 -xGhost- View Post
    Are you gay or you've seen how Whit looks?
    Whit really is a girl???


    even if i dont pick girls by how hot they are.
    Last edited by topblast; 01-25-2011 at 10:35 PM.
    I just like programming, that is all.

    Current Stuff:

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

Page 42 of 81 FirstFirst ... 32404142434452 ... 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