Results 1 to 4 of 4

Threaded View

  1. #1
    Jorndel's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    Norway
    Posts
    8,676
    Reputation
    905
    Thanks
    19,113
    My Mood
    Angelic

    Camo Selection (All Classes)

    Well, just looked and found a boring pattern, if anyone else want to make Camo Selection Tools.

    You multiply the value with 4 or 64.
    To see the simple pattern:

    Primary Weapons:
    Class 1: *4
    Class 2: *64
    Class 3: *4
    Class 4: *64
    Class 5: *4

    Secondary Weapons:
    Class 1: *2
    Class 2: *32
    Class 3: *2
    Class 4: *32
    Class 5: *2

    Better, made a function for you guys: (C#)
    Code:
    int Camo_Primary(int Class, int Camo)
            {
                if (Class % 2 == 0)
                    return Camo * 64;
                else return Camo * 4;
            }
    
    int Camo_Secondary(int Class, int Camo)
            {
                if (Class % 2 == 0)
                    return Camo * 32;
                else return Camo * 2;
            }
    Good Luck
    Last edited by Jorndel; 12-30-2012 at 03:47 PM.

     
    Contributor 01.27.2012 - N/A
    Donator 07-17-2012 - Current
    Editor/Manager 12-16-12 - N/A
    Minion 01-10-2013 - 07.17.13
    Former Staff 09-20-2012 - 01-10-2013 / 07-17-2013 - Current
    Cocksucker 20-04-2013 - N/A

Similar Threads

  1. [Help] Select all items in a ListBox [solved]
    By alvaritos in forum Visual Basic Programming
    Replies: 4
    Last Post: 04-13-2011, 10:02 AM
  2. [Release] First Camo OF ALL!!!!
    By ♪~ ᕕ(ᐛ)ᕗ in forum Call of Duty Modern Warfare 2 Texture Modding
    Replies: 14
    Last Post: 03-28-2011, 02:38 PM
  3. [Release] [gMS V.87 The Nullz Pyramid PQ v2 (For All Versions + All Class)
    By jonniiee in forum MapleStory Hacks, Cheats & Trainers
    Replies: 8
    Last Post: 08-05-2010, 06:45 PM
  4. [Release]Advanced Aimbot - Toggle on/off - Select all possible aimbones -
    By kaf073 in forum Call of Duty Modern Warfare 2 Private Servers
    Replies: 37
    Last Post: 06-22-2010, 11:18 PM
  5. how to make a select all button for checkboxes
    By ac1d_buRn in forum Visual Basic Programming
    Replies: 5
    Last Post: 10-23-2009, 09:36 PM