Results 1 to 9 of 9
  1. #1
    coogle007's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    267
    Reputation
    18
    Thanks
    297
    My Mood
    Aggressive

    Gellin's Menu Help

    Hi Mpgh can you help me with border and background of gellin's base?

  2. #2
    steph777's Avatar
    Join Date
    Aug 2010
    Gender
    female
    Location
    Melbourne, Australia
    Posts
    377
    Reputation
    8
    Thanks
    165
    My Mood
    Amused
    Use Paint?????

  3. The Following User Says Thank You to steph777 For This Useful Post:

    Drake (08-23-2010)

  4. #3
    wassup40's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    I dont know help me
    Posts
    2,238
    Reputation
    28
    Thanks
    790
    My Mood
    Lurking
    Quote Originally Posted by steph777 View Post
    Use Paint?????
    Lool u got no clue.

  5. #4
    coogle007's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    267
    Reputation
    18
    Thanks
    297
    My Mood
    Aggressive
    Ahahha very helpful ._.

  6. #5
    Drake's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Belgium,Oost-Vlaanderen
    Posts
    12,680
    Reputation
    1801
    Thanks
    4,929
    Quote Originally Posted by steph777 View Post
    Use Paint?????
    rofl ure epic ;D .

  7. #6
    SharK_KiLLeR's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    In Sea ..
    Posts
    269
    Reputation
    10
    Thanks
    82
    My Mood
    Devilish
    Quote Originally Posted by steph777 View Post
    Use Paint?????
    hahahahahaha awesome !


    In some form, sharks have been around for about 400 million years.

    Even before dinosaurs roamed the earth!!!
    If u need any help feel free to PM/VM /me

    RESPECT LIST
    Blood [The best coder here ]
    Drake[Always here to help/yea]
    Massive[Good friend and very good MM ]
    Ali[Very good MOD]
    To Do List:

    REGISTER ON MPGH[/yea]
    50 POSTS [/yea]
    100 POSTS [/yea]
    200 POSTS [/yea]
    250 POSTS [/yea]
    300 POSTS []
    If I helped press the [Thanks]button

  8. #7
    azerty54's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Posts
    133
    Reputation
    125
    Thanks
    31
    My Mood
    Happy
    Originally Posted by steph777
    Use Paint?????
    Lool paint !!!! xD
    use c++ coding :\

  9. #8
    deathninjak0's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    1,510
    Reputation
    12
    Thanks
    294
    My Mood
    Cool
    Quote Originally Posted by ac1d_buRn View Post


    Before we start, Make sure you have this in your globals:
    [php]
    LPD3DXFONT pFont;
    LPDIRECT3DDEVICE9 pDevice;
    [/php]



    Draw Box WITH Border

    After Globals:

    [php]
    void FillRGB( int x, int y, int w, int h, D3DCOLOR color, IDirect3DDevice9* pDevice )
    {
    if( w < 0 )w = 1;
    if( h < 0 )h = 1;
    if( x < 0 )x = 1;
    if( y < 0 )y = 1;

    D3DRECT rec = { x, y, x + w, y + h };
    pDevice->Clear( 1, &rec, D3DCLEAR_TARGET, color, 0, 0 );
    }

    void DrawBorder( int x, int y, int w, int h, int px, D3DCOLOR BorderColor, IDirect3DDevice9* pDevice )
    {
    FillRGB( x, (y + h - px), w, px, BorderColor, pDevice );
    FillRGB( x, y, px, h, BorderColor, pDevice );
    FillRGB( x, y, w, px, BorderColor, pDevice );
    FillRGB( (x + w - px), y, px, h, BorderColor, pDevice );
    }

    void DrawBox( int x, int y, int w, int h, D3DCOLOR BoxColor, D3DCOLOR BorderColor, IDirect3DDevice9* pDevice )
    {
    FillRGB( x, y, w, h, BoxColor, pDevice );
    DrawBorder( x, y, w, h, 1, BorderColor, pDevice );
    }
    [/php]

    And to create the box (Endscene):
    [php]
    DrawBox (X,Y,W,H,Back Color,Border Color,pDevice);
    [/php]
    Credits to Ac1d_BuRn

  10. The Following 2 Users Say Thank You to deathninjak0 For This Useful Post:

    azerty54 (09-13-2010),coogle007 (08-23-2010)

  11. #9
    coogle007's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Posts
    267
    Reputation
    18
    Thanks
    297
    My Mood
    Aggressive
    Thx 4 sharing

Similar Threads

  1. [Help Request] D3D menu Help
    By SteamAss in forum CrossFire Help
    Replies: 5
    Last Post: 05-21-2011, 11:36 AM
  2. [Request] Hack Menu Help?
    By SIahtekR in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 06-22-2010, 02:16 AM
  3. Gellins D3D menu work but features crash!
    By Mr.Magicman in forum Combat Arms Help
    Replies: 0
    Last Post: 06-01-2010, 09:24 AM
  4. D3D Menu Help
    By ac1d_buRn in forum C++/C Programming
    Replies: 7
    Last Post: 03-29-2010, 03:28 PM
  5. D3D menu Help Please....
    By ~InsaneWayne~ in forum C++/C Programming
    Replies: 14
    Last Post: 11-08-2009, 09:00 PM