Results 1 to 10 of 10
  1. #1
    Slendergo's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    382
    Reputation
    17
    Thanks
    250
    My Mood
    Inspired

    How to make custom option tabs

     

    Thanks to kithio for releasing the source


     







    Step 1:
    In src\_0C_P_\Option.as find
    Code:
            private static const _0D_o:String = "Sound";
    Step 2:
    And Replace With
    Code:
            private static const _0D_o:String = "Sound";
            private static const _Misc:String = "Misc";
    Step 3:
    Then Find
    Code:
            private static const _F_D_:Vector.<String> = new <String>[_2Q_, _A_S_, _uC_, _O_i, _0D_o];
    And Replace With
    Code:
            private static const _F_D_:Vector.<String> = new <String>[_2Q_, _A_S_, _uC_, _O_i, _0D_o, _Misc];
    Step 4:
    Look for
    Code:
                switch (this.selected_.text_)
                {
                    case _2Q_:
                        this._q9();
                        return;
                    case _A_S_:
                        this._wP_();
                        return;
                    case _uC_:
                        this._E_j();
                        return;
                    case _O_i:
                        this._R_E_();
                        return;
                    case _0D_o:
                        this._Y_V_();
                        return
                };
    And Replace With
    Code:
                switch (this.selected_.text_)
                {
                    case _2Q_:
                        this._q9();
                        return;
                    case _A_S_:
                        this._wP_();
                        return;
                    case _uC_:
                        this._E_j();
                        return;
                    case _O_i:
                        this._R_E_();
                        return;
                    case _0D_o:
                        this._Y_V_();
                    case _Misc:
                        this.MiscTab();
                        return
                };
    Step 5:
    Find a
    Code:
            private function _wP_():void{
                this._yZ_(new _G_X_("useInvSlot1", "Use Inventory Slot 1", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot2", "Use Inventory Slot 2", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot3", "Use Inventory Slot 3", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot4", "Use Inventory Slot 4", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot5", "Use Inventory Slot 5", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot6", "Use Inventory Slot 6", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot7", "Use Inventory Slot 7", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot8", "Use Inventory Slot 8", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("miniMapZoomIn", "Mini-Map Zoom In", "This key will zoom in the minimap"));
                this._yZ_(new _G_X_("miniMapZoomOut", "Mini-Map Zoom Out", "This key will zoom out the minimap"));
                this._yZ_(new _G_X_("escapeToNexus", "Escape To Nexus", "This key will instantly escape you to the Nexus"));
                this._yZ_(new _G_X_("options", "Show Options", "This key will bring up the options screen"));
                if (Capabilities.playerType == "Desktop")
                {
                    this._yZ_(new _G_X_("toggleFullscreen", "Toggle Fullscreen Mode", ("Toggle whether the game is " + "run in a window or fullscreen")));
                };
            }
    And replace with
    Code:
            private function _wP_():void{
                this._yZ_(new _G_X_("useInvSlot1", "Use Inventory Slot 1", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot2", "Use Inventory Slot 2", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot3", "Use Inventory Slot 3", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot4", "Use Inventory Slot 4", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot5", "Use Inventory Slot 5", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot6", "Use Inventory Slot 6", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot7", "Use Inventory Slot 7", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("useInvSlot8", "Use Inventory Slot 8", "Use item in inventory slot 1"));
                this._yZ_(new _G_X_("miniMapZoomIn", "Mini-Map Zoom In", "This key will zoom in the minimap"));
                this._yZ_(new _G_X_("miniMapZoomOut", "Mini-Map Zoom Out", "This key will zoom out the minimap"));
                this._yZ_(new _G_X_("escapeToNexus", "Escape To Nexus", "This key will instantly escape you to the Nexus"));
                this._yZ_(new _G_X_("options", "Show Options", "This key will bring up the options screen"));
                if (Capabilities.playerType == "Desktop")
                {
                    this._yZ_(new _G_X_("toggleFullscreen", "Toggle Fullscreen Mode", ("Toggle whether the game is " + "run in a window or fullscreen")));
                };
            }
    
            public function MiscTab():void
            {
                this._yZ_(new _0I_j("One", new <String>["0", "1"], [0, 1, 2], "One", "Description One", null));
                this._yZ_(new _0I_j("Two", new <String>["0", "1", "2"], [0, 1, 2], "Two", "Description Two", null));
            }
    Step 6:
    Now Inside src\com\company\assembleegameclient\parameters\Par ameters.as

    Find
    Code:
                _iw("clickForGold", false);
    And Replace With
    Code:
                _iw("clickForGold", false);
                _iw("One", 0);
                _iw("Two", 0);
    And Finaly Test

  2. The Following 5 Users Say Thank You to Slendergo For This Useful Post:

    [MPGH]Ahl (02-20-2015),Fucking Moron (02-12-2016),lkdjnfoskjednfblksjdfn (12-11-2015),Lxys (02-19-2015),sacredmike (02-19-2015)

  3. #2
    Lxys's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    England.
    Posts
    1,156
    Reputation
    208
    Thanks
    2,235
    My Mood
    Devilish
    Good job Nice tutorial, easy to follow!
    Specs
    Motherboard - Asus Z170-P
    CPU- Intel Core i5 6500
    SSD - Samsung SM951
    Ram - 8 GB (2 x 4 DDR2)
    HDD - Random 500GB One
    GPU - Integrated i5 (Intel HD Graphics 530)
    OS - Win10

  4. The Following User Says Thank You to Lxys For This Useful Post:

    Slendergo (02-19-2015)

  5. #3
    sacredmike's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Uranus ;)
    Posts
    685
    Reputation
    15
    Thanks
    3,255
    My Mood
    Devilish
    Thanks for tut.
    i'm actually just a horny boy

  6. The Following User Says Thank You to sacredmike For This Useful Post:

    Slendergo (02-19-2015)

  7. #4
    Slendergo's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    382
    Reputation
    17
    Thanks
    250
    My Mood
    Inspired
    Quote Originally Posted by sacredmike View Post
    Thanks for tut.
    no problem mike , mabye next ill do something on how 2 put them to use like the toggle mp/hp text i have

  8. #5
            (╭ರ_•)          
    Premium Member
    ~V~'s Avatar
    Join Date
    May 2014
    Gender
    male
    Location
    Posts
    628
    Reputation
    29
    Thanks
    1,478
    this looks like its ripped from SD and changed some stuff

    but it don't need to be
    Last edited by ~V~; 02-19-2015 at 08:28 AM.

  9. #6
    Kithio's Avatar
    Join Date
    May 2014
    Gender
    male
    Posts
    641
    Reputation
    16
    Thanks
    803
    My Mood
    Innocent
    +1 I support this tutorial... Now people just need to find a use for it
    I is pansexual furry and proud

    Server Information:
    Status: Confused

  10. The Following 3 Users Say Thank You to Kithio For This Useful Post:

    [MPGH]Ahl (02-20-2015),BlackRayquaza (02-19-2015),Slendergo (02-19-2015)

  11. #7
    Slendergo's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    382
    Reputation
    17
    Thanks
    250
    My Mood
    Inspired
    Quote Originally Posted by VoOoLoX View Post
    this looks like its ripped from SD and changed some stuff

    but it don't need to be
    how can it be ripped -.- i learnt how to do this myself

  12. #8
            (╭ರ_•)          
    Premium Member
    ~V~'s Avatar
    Join Date
    May 2014
    Gender
    male
    Location
    Posts
    628
    Reputation
    29
    Thanks
    1,478
    Quote Originally Posted by Slendergo View Post
    no problem mike , mabye next ill do something on how 2 put them to use like the toggle mp/hp text i have
    i was thinking on this

  13. #9
    Slendergo's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    382
    Reputation
    17
    Thanks
    250
    My Mood
    Inspired
    Quote Originally Posted by VoOoLoX View Post
    i was thinking on this
    say in english

  14. #10
            (╭ರ_•)          
    Premium Member
    ~V~'s Avatar
    Join Date
    May 2014
    Gender
    male
    Location
    Posts
    628
    Reputation
    29
    Thanks
    1,478
    my english cuckz

Similar Threads

  1. [Tutorial] How to make Custom Scopes
    By black iceee in forum Call of Duty Modern Warfare 2 Texture Requests
    Replies: 407
    Last Post: 05-26-2011, 10:39 AM
  2. How to make Custom Menu
    By FUKO in forum Call of Duty Modern Warfare 2 Texture Requests
    Replies: 20
    Last Post: 02-23-2011, 09:50 PM
  3. [Tutorial] How to make custom kill marks
    By skazany in forum CrossFire Tutorials
    Replies: 8
    Last Post: 01-15-2011, 01:55 PM
  4. How to make custom classes?
    By HeroicSlayr in forum Call of Duty Modern Warfare 2 Help
    Replies: 1
    Last Post: 08-26-2010, 05:46 PM
  5. How to make custom crosshair colors?
    By KarmaStrikes in forum CrossFire Mods & Rez Modding
    Replies: 19
    Last Post: 08-19-2010, 10:07 PM