Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 55
  1. #16
    seaplusplus's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    106
    Reputation
    4
    Thanks
    51
    My Mood
    Drunk
    Why not use:
    [php]
    if(GetAsyncKeyState(VK_UP)&1 && tabItem > 1) tabItem--;
    if(GetAsyncKeyState(VK_DOWN)&1 && tabItem < tabMax) tabItem++;
    [/php]

  2. #17
    thahaxanator's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    Omg thanks! worked!

  3. #18
    seaplusplus's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    106
    Reputation
    4
    Thanks
    51
    My Mood
    Drunk
    Credits to Solify... Sigh, your using his hook!

  4. #19
    Sydney's Avatar
    Join Date
    Mar 2010
    Gender
    male
    Location
    Germany...
    Posts
    1,356
    Reputation
    37
    Thanks
    1,144
    My Mood
    Amused
    not bad but thats just solifys base a bit changed. That sux. Create ur own ? :S

    Thanks Cosmos


  5. #20
    seaplusplus's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    106
    Reputation
    4
    Thanks
    51
    My Mood
    Drunk
    I used to use my own Hook, but it got patched. So until I fix it, I'm using Solify's Hook remade!

  6. #21
    kotentopf's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Posts
    602
    Reputation
    26
    Thanks
    251
    the detours not work, have i right? ^^

    EDIT:
    [php]void DrawHealthbar(int x, int y, int w, int h, D3DCOLOR barCol, D3DCOLOR borColor, int hp, int maxhp,IDirect3DDevice9* pDevice )
    {
    FillRGB(x, y, ( hp / (double)maxhp ) * w, h, barCol, pDevice);
    DrawBorder(x, y, w, h, 2, borColor, pDevice);
    }
    void DrawAPbar(int x, int y, int w, int h, D3DCOLOR barCol, D3DCOLOR borColor, int ap, int maxap,IDirect3DDevice9* pDevice )
    {
    FillRGB(x, y, ( ap / (double)maxap ) * w, h, barCol, pDevice);
    DrawBorder(x, y, w, h, 2, borColor, pDevice);
    }[/php]

    why the same function two times? u know that u can use healtbar also for ap and all other value/mavalue functions?
    Last edited by kotentopf; 01-08-2011 at 07:59 PM.
    The Internet SHOULD Be Illegal

    When you say
    "Java is a great programming language because it works on all platforms"
    it is just like
    "anal sex is great because it works on all genders"

    Are YOU a Troll?

  7. #22
    seaplusplus's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    106
    Reputation
    4
    Thanks
    51
    My Mood
    Drunk
    Quote Originally Posted by kotentopf View Post
    the detours not work, have i right? ^^

    EDIT:
    [php]void DrawHealthbar(int x, int y, int w, int h, D3DCOLOR barCol, D3DCOLOR borColor, int hp, int maxhp,IDirect3DDevice9* pDevice )
    {
    FillRGB(x, y, ( hp / (double)maxhp ) * w, h, barCol, pDevice);
    DrawBorder(x, y, w, h, 2, borColor, pDevice);
    }
    void DrawAPbar(int x, int y, int w, int h, D3DCOLOR barCol, D3DCOLOR borColor, int ap, int maxap,IDirect3DDevice9* pDevice )
    {
    FillRGB(x, y, ( ap / (double)maxap ) * w, h, barCol, pDevice);
    DrawBorder(x, y, w, h, 2, borColor, pDevice);
    }[/php]

    why the same function two times? u know that u can use healtbar also for ap and all other value/mavalue functions?
    I know, I was wondering myself...

  8. #23
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Ok too those same functions twice.
    I was just testing those forgot to remove.

    @whoever said just solifys a little changed. I only used his hook

    @ the nice people that said thanks and good comments

    --thanks!!

    Haha read first line I was bored.

    weird tab switching/confusing was because this took merely less than 1 hour

    and for project. I just wanted to give u the d3d. since you may have ur own menus/hooks and don't want to use this one. (gellins base, whits, etc.)

    bye!

    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

  9. #24
    seaplusplus's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Posts
    106
    Reputation
    4
    Thanks
    51
    My Mood
    Drunk
    Quote Originally Posted by Nubzgetkillz View Post
    Ok too those same functions twice.
    I was just testing those forgot to remove.

    @whoever said just solifys a little changed. I only used his hook

    @ the nice people that said thanks and good comments

    --thanks!!

    Haha read first line I was bored.

    weird tab switching/confusing was because this took merely less than 1 hour

    and for project. I just wanted to give u the d3d. since you may have ur own menus/hooks and don't want to use this one. (gellins base, whits, etc.)

    bye!
    @Whoever wrote this message:
    "The hook was not changed at all!"

  10. #25
    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
    ewww, use Primitives to make a 'tick' in the box. something like the DrawBox function(the real one)
    I just like programming, that is all.

    Current Stuff:

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

  11. #26
    Nubzgetkillz's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    hacktown
    Posts
    838
    Reputation
    13
    Thanks
    411
    My Mood
    Amazed
    Quote Originally Posted by seaplusplus View Post
    @Whoever wrote this message:
    "The hook was not changed at all!"
    I never said I changed the HOOOK! READ THE WHOLE DAMN THING I SAID I USED IT YOU ILITERATE C++ FUCKING BITCH!

    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. #27
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by seaplusplus View Post
    Credits to Solify... Sigh, your using his hook!
    Its not solify's hook its Geeko's he released it in a op7 base

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


    Its not solify's hook its Geeko's he released it in a op7 base
    TRUE THAT THIS HOOK WAS USED FOR OP7 THEN SOLIFY DID RELEASE CA BASE WITH IT!
    HI WHIT! LONG TIME NO SEE(TALK)

    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. #29
    whit's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Posts
    7,159
    Reputation
    490
    Thanks
    2,253
    Quote Originally Posted by Nubzgetkillz View Post
    TRUE THAT THIS HOOK WAS USED FOR OP7 THEN SOLIFY DID RELEASE CA BASE WITH IT!
    HI WHIT! LONG TIME NO SEE(TALK)
    Sup my nigga...

  15. #30
    Xlilzoosk8rX's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    the-ville, PA
    Posts
    358
    Reputation
    24
    Thanks
    53
    looks like topblasts <-(I think) old tabbed menu with edited colors dude :/

Page 2 of 4 FirstFirst 1234 LastLast