Results 1 to 3 of 3

Threaded View

  1. #1
    zerobrium's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    613
    Reputation
    13
    Thanks
    823

    Lightbulb Making your own AQWorlds Trainer: Advance Menu

    Hello Everyone, as promised I have a new video! and in this video, I explain in great detail howto make a Advanced menu similar to the ones in ZeroLight and other semi-popular trainers. I sounded pretty homo in this video due to a lack of a 'good' microphone, so please don't flame me.



    Code:
    Code:
    Another reminder!
    Be sure to change the code of the shop loader to this:
            this.Game.world.sendLoadShopRequest(this.ItemMenu.  shoptext.text);
     
    This is the actual code:
     
    //Menus:
    this.ItemMenu.visible = false
    //Show Menus:
    btn_Menu.addEventListener(MouseEvent.CLICK, mainmenu);
    //Menu Buttons:
    this.ItemMenu.btn_Hair.addEventListener(MouseEvent  .CLICK, hairshop);
    this.ItemMenu.btn_Badges.addEventListener(MouseEve  nt.CLICK, Loadbadges);
    //Functions
    function mainmenu(e:MouseEvent){
            if(this.ItemMenu.visible == true){
                    this.ItemMenu.visible = false;
            }else if(this.ItemMenu.visible == false){
                    this.ItemMenu.visible = true;
            }
    }
    function hairshop(e:MouseEvent){
            this.Game.world.sendLoadHairShopRequest(this.ItemM  enu.hairtxt.text);
    }
    function Loadbadges(e:MouseEvent):void{
            this.ItemMenu.cb1.removeAll();
            badgeList();
    }
    function badgeList():void{
        this.ItemMenu.cb1.addItem({label:"FridayThe13th Badge", data:"%xt%zm%setAchievement%79%ia0%0%1%"});
            this.ItemMenu.cb1.addItem({label:"KungFood Badge", data:"%xt%zm%setAchievement%79%ia0%1%1%"});
            this.ItemMenu.cb1.addItem({label:"MoglinPunter Badge", data:"%xt%zm%setAchievement%79%ia0%2%1%"});
            this.ItemMenu.cb1.addItem({label:"EyeWasThere Badge", data:"%xt%zm%setAchievement%79%ia0%5%1%"});
            this.ItemMenu.cbt.addItem({label:"Stubborn Badge", data:"%xt%zm%setAchievement%79%ia0%7%1%"});
            this.ItemMenu.cb1.addItem({label:"Unicorn Commander Badge", data:"%xt%zm%setAchievement%79%ia0%12%1%"});
            this.ItemMenu.cb1.addItem({label:"Cornelis Badge", data:"%xt%zm%setAchievement%79%ia0%13%1%"});
            this.ItemMenu.cb1.addItem({label:"Reinforced Badge", data:"%xt%zm%setAchievement%9773%ia0%8%1%"});
            this.ItemMenu.cb1.addItem({label:"Sky Pirate Badge", data:"%xt%zm%setAchievement%9773%ia0%9%1%"});
    }
     
    //Keybinds:
    stage.addEventListener(KeyboardEvent.KEY_DOWN,keyP  ressed);
     
    function keyPressed(keyEvent:KeyboardEvent){
            if(keyEvent.keyCode ==38){
            menu2();
            }else if(keyEvent.keyCode ==40){
                    trace("Down Arrow pressed");
                   
            }
    }
     
    function menu2():void{
                    if(this.ItemMenu.visible == true){
                    this.ItemMenu.visible = false;
            }else if(this.ItemMenu.visible == false){
                    this.ItemMenu.visible = true;
            }
    }
    Need any more help? Reply to this thread below.
    Visit my channel:
    Zerobrium - YouTube

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

    Oliboli8769 (03-23-2013),Rance-Sama (03-20-2013)

Similar Threads

  1. [Tutorial] Making your own AQWorlds Trainer: Exporting as an .exe
    By zerobrium in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 2
    Last Post: 03-18-2013, 09:49 PM
  2. [Tutorial] Making your own AQWorlds Trainer: Making an intro
    By zerobrium in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 0
    Last Post: 02-21-2013, 08:22 PM
  3. [Tutorial] Making your own AQWorlds Trainer Part 2
    By zerobrium in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 24
    Last Post: 01-31-2013, 06:48 PM
  4. [Outdated] (Video)How to make your own AQWorlds Trainer: Setting up & the basics
    By zerobrium in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 4
    Last Post: 01-19-2013, 01:15 AM
  5. (TUT)how to make your own warrock menu
    By aprill27 in forum WarRock - International Hacks
    Replies: 0
    Last Post: 09-21-2007, 03:46 PM