Page 2 of 10 FirstFirst 1234 ... LastLast
Results 16 to 30 of 138
  1. #16
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by Stephen View Post
    Oh. Im at school. Sooo stay on the comp for like 3 more hours XD
    Still got one more week of break. I can stay on.

  2. #17
    Gordon`'s Avatar
    Join Date
    Dec 2007
    Gender
    male
    Posts
    283
    Reputation
    24
    Thanks
    325
    Credits for FindPattern => d0m1n1k
    Credits for DetourCreate => Azorbix

    And acid takes no credits. I've already seen this years ago and they completely look the same.


  3. The Following 2 Users Say Thank You to Gordon` For This Useful Post:

    ac1d_buRn (08-24-2010),J (08-24-2010)

  4. #18
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    @CodeDemon

    Its Draw Indexed Primitive not Direct Index Primitive.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  5. #19
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    Quote Originally Posted by whatup777 View Post
    @CodeDemon

    Its Draw Indexed Primitive not Direct Index Primitive.
    Wooo big difference XD

  6. #20
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Grammar Nazi in the house.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  7. The Following 2 Users Say Thank You to whatup777 For This Useful Post:

    J (08-24-2010),Yepikiyay (09-07-2010)

  8. #21
    Mr.Mageman's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    87
    Reputation
    11
    Thanks
    17
    Wow how does all be able to hook DIP ._. im missing all the fun.

  9. #22
    whatup777's Avatar
    Join Date
    May 2010
    Gender
    male
    Location
    CA Source Code Section
    Posts
    4,025
    Reputation
    147
    Thanks
    351
    My Mood
    Dead
    Your not the only one.
    Quotes I live by.


    A foolish person learns from his mistakes, I wise person learns from others.
    Quote Originally Posted by AVGN View Post



    mhm

    i live in texas

    i was at the grocery store with my son. He saw a mexican guy, and he said "Look daddy! a mower man!"

    he's 4 yrs old

  10. #23
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Thanks Gordon and Whatup, fixing it now / wrote this up this morning before I had my coffee

  11. #24
    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
    no need to kill the fun but I made the crosshair u have. it is buggy but i still made it.
    I just like programming, that is all.

    Current Stuff:

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

  12. #25
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by topblast View Post
    no need to kill the fun but I made the crosshair u have. it is buggy but i still made it.
    Alright, adding credits to you /

  13. #26
    J's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    East Coast
    Posts
    2,164
    Reputation
    452
    Thanks
    5,900
    My Mood
    In Love
    Quote Originally Posted by topblast View Post
    no need to kill the fun but I made the crosshair u have. it is buggy but i still made it.
    You did not make it.

    [IMG]https://img.photobucke*****m/albums/v394/legbamel/Dont_feed_the_troll.jpg[/IMG]

  14. #27
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Quote Originally Posted by CodeDemon View Post
    Alright, adding credits to you /
    Why credits to him.. I found this on Google where it said :
    "7 posts - 4 authors - Last post: Nov 12, 2008"

    Wtf ?

    It was in DX 8 by the way.

  15. The Following User Says Thank You to Crash For This Useful Post:

    J (08-24-2010)

  16. #28
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Added Ghost & Phantom Chams, credits to Blood.

  17. #29
    Crash's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    JAville
    Posts
    2,881
    Reputation
    163
    Thanks
    3,291
    My Mood
    Sleepy
    Here is what I use for my chams to gen. materials :

    Code:
    D3DMATERIAL9 GenerateMaterial(int r, int g, int b){
    
    	D3DMATERIAL9 myMaterial;
    	D3DCOLORVALUE myColor;
    
    	myColor.a = 255;
    	myColor.r = (float)r / 255;
    	myColor.g = (float)g / 255;
    	myColor.b = (float)b / 255;
    
    	myMaterial.Ambient = myColor;
    	myMaterial.Diffuse = myColor;
    	myMaterial.Emissive = myColor;
    	myMaterial.Specular = myColor;
    
    	return myMaterial;
    
    }

  18. #30
    CodeDemon's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    vagina
    Posts
    1,070
    Reputation
    50
    Thanks
    940
    My Mood
    Fine
    Quote Originally Posted by Crash View Post
    Here is what I use for my chams to gen. materials :

    Code:
    D3DMATERIAL9 GenerateMaterial(int r, int g, int b){
    
    	D3DMATERIAL9 myMaterial;
    	D3DCOLORVALUE myColor;
    
    	myColor.a = 255;
    	myColor.r = (float)r / 255;
    	myColor.g = (float)g / 255;
    	myColor.b = (float)b / 255;
    
    	myMaterial.Ambient = myColor;
    	myMaterial.Diffuse = myColor;
    	myMaterial.Emissive = myColor;
    	myMaterial.Specular = myColor;
    
    	return myMaterial;
    
    }
    Thanks Crash, I'll add it in here

Page 2 of 10 FirstFirst 1234 ... LastLast

Similar Threads

  1. [Release] [LECHEED] -- Ghostmode, glitch hack, chams, speed, and more--
    By mhmnk in forum Combat Arms Hacks & Cheats
    Replies: 8
    Last Post: 09-26-2009, 02:05 PM
  2. want chams,wallhack and more
    By OSCAR496 in forum Combat Arms Discussions
    Replies: 5
    Last Post: 09-07-2009, 11:03 AM
  3. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 75
    Last Post: 07-31-2009, 09:35 AM
  4. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 27
    Last Post: 07-29-2009, 09:57 PM
  5. RE: [ Release] Combat arms:Chams,Nospread and more...
    By eddieg in forum Combat Arms Hacks & Cheats
    Replies: 99
    Last Post: 07-28-2009, 05:49 PM