Thread: Add More Than One Colour To Models That Need It

Results 1 to 6 of 6
  1. #1 Add More Than One Colour To Models That Need It 
    Renown Programmer

    Sean's Avatar
    Join Date
    May 2007
    Age
    29
    Posts
    2,758
    Thanks given
    264
    Thanks received
    1,089
    Rep Power
    4393
    Ok i beena sked to post this

    well most of your codes for colours are like this

    Code:
    class8.anIntArray156 = new int[1];
            class8.anIntArray160 = new int [1];
            class8.anIntArray156[0] = 926;
           class8.anIntArray160[0] = 200;

    and if you want to add more colours, u change the 1 to 2 ro higher (how many models colour it needs)

    and where it says 0 you change the 0 to 1 or higher (how many models colours it needs)

    so it should look like this

    Code:
    class8.anIntArray156 = new int[2];
            class8.anIntArray160 = new int [2];
            class8.anIntArray156[0] = Origianal Model Colour;
           class8.anIntArray160[0] = Changed Model Colour;	
    
    class8.anIntArray156[1] = Origianal Model Colour 1;
           class8.anIntArray160[1] = Changed Model Colour 1;
    and their your finished
    Reply With Quote  
     

  2. #2  
    Azn Ix
    Guest
    Does this really work?
    Reply With Quote  
     

  3. #3  
    Super Donator


    Join Date
    Jun 2007
    Age
    28
    Posts
    2,158
    Thanks given
    316
    Thanks received
    282
    Discord
    View profile
    Rep Power
    779
    Quote Originally Posted by Azn Ix View Post
    Does this really work?
    Of course it works

    class8.anIntArray156 = new int[1];
    class8.anIntArray160 = new int [1];
    The bold numbers must equal the number of colors you are changing...

    class8.anIntArray156[0] = 926;
    class8.anIntArray160[0] = 200;
    class8.anIntArray156[1] = 926;
    class8.anIntArray160[1] = 200;
    class8.anIntArray156[2] = 926;
    class8.anIntArray160[2] = 200;
    that would be 3 color changes, so the bold numbers above would be 3.
    Reply With Quote  
     

  4. #4  
    Azn Ix
    Guest
    Okay, I'm just making sure.
    Reply With Quote  
     

  5. #5  
    Brandon™
    Guest
    nice lol
    Reply With Quote  
     

  6. #6  
    1nf4m0us
    Guest
    i like it.r3p++for u.but this is made for ultra newbies in java. i could figure this out ma self.but nice.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •