Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 37
  1. #16
    devilscorner's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Ohh you almost got me
    Posts
    332
    Reputation
    10
    Thanks
    71
    My Mood
    Lurking
    Quote Originally Posted by Oliboli8769 View Post
    Thanks... but no thanks xD
    You should have seen what it looked like before... I thought it looked nice O.o
    Just tested Ballyhoo, it works. Just tried complete quest, it works. and All the bots are identical to AQWPois0n Black's, and no one had any complaints there...
    Oh well... I will have to update it soon then :P
    what kind of quest did you try to complete and im not kidding other temp items for other rep quest changed already for example "fairy tears" doesn't drop anymore from minx fairy in chronospan rep quest "You Don't Want To Know..."


    Oh yeah, sure, I forgot about that xD

    Glad you like it.

    No Problem

    Thanks man
    what kind of quest did you try to complete and im not kidding other temp items for other rep quest changed already for example "fairy tears" doesn't drop anymore from minx fairy in chronospan rep quest "You Don't Want To Know..." and there are more but im lazy to type it. And really the ballyhoo workd??? dang it won't work for me idk why.

  2. #17
    Oliboli8769's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Boliworlds
    Posts
    2,333
    Reputation
    523
    Thanks
    5,239
    Quote Originally Posted by devilscorner View Post
    what kind of quest did you try to complete and im not kidding other temp items for other rep quest changed already for example "fairy tears" doesn't drop anymore from minx fairy in chronospan rep quest "You Don't Want To Know..." and there are more but im lazy to type it. And really the ballyhoo workd??? dang it won't work for me idk why.
    I tried quest id "1" lol xD
    I dunno about the bot thing... I'll have to work hard to fix that.
    Yeah the ballyhoo works its just that you have to be in ballyhoo with "/join ballyhoo"

  3. #18
    devilscorner's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Ohh you almost got me
    Posts
    332
    Reputation
    10
    Thanks
    71
    My Mood
    Lurking
    Quote Originally Posted by Oliboli8769 View Post
    I tried quest id "1" lol xD
    I dunno about the bot thing... I'll have to work hard to fix that.
    Yeah the ballyhoo works its just that you have to be in ballyhoo with "/join ballyhoo"
    ohh i see my bad i didn't know that i should be in ballyhoo map, and i also tried the quest id 1 before i read your reply and yeah it works but if you use it on a true quest it would always say quest complete failed

  4. #19
    Oliboli8769's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Boliworlds
    Posts
    2,333
    Reputation
    523
    Thanks
    5,239
    Quote Originally Posted by devilscorner View Post
    ohh i see my bad i didn't know that i should be in ballyhoo map, and i also tried the quest id 1 before i read your reply and yeah it works but if you use it on a true quest it would always say quest complete failed
    Haha ok I'm glad that it's working now.
    Well yeah, that function is just meant to hand in the quest, it doesn't actually get any of the required items for you or anything xD

  5. #20
    Renzzios's Avatar
    Join Date
    Jul 2013
    Gender
    female
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Cheerful
    Very nice

  6. #21
    Oliboli8769's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Boliworlds
    Posts
    2,333
    Reputation
    523
    Thanks
    5,239
    Quote Originally Posted by Renzzios View Post
    Very nice
    Thanks ;D
    /msg2shrt

  7. #22
    zerobrium's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Posts
    613
    Reputation
    13
    Thanks
    823
    Quote Originally Posted by Oliboli8769 View Post
    I tried quest id "1" lol xD
    I dunno about the bot thing... I'll have to work hard to fix that.
    Yeah the ballyhoo works its just that you have to be in ballyhoo with "/join ballyhoo"
    Here is what I did on my zerolight. It auto-joins ballyhoo and waits 5 seconds till it starts.

    Code:
    var sendAd:Timer = new Timer(5000);//
    sendAd.addEventListener(TimerEvent.TIMER, sendAdrequest);
    
    function sendAdr()
    {
    	sendAd.start();
    }
    ////////////////
    mainPanel.ballyhoo.addEventListener(MouseEvent.CLICK, ballyhoo);
    function ballyhooAds(e:MouseEvent):void
    {
    	//joinRoom("Ballyhoo", "Enter", "Spawn");
    	if (Game.world.myAvatar.objData.iDailyAds == Game.world.myAvatar.objData.iDailyAdCap)
    	{
    		Game.chatF.pushMsg("moderator", "Zerobrium: You have reached your Daily Ballyhoo limit, please try again later.", "SERVER", "", 0);
    		return;
    	}
    	else if (Game.world.strMapName != "ballyhoo")
    	{
    		joinRoom("Ballyhoo", "Enter", "Spawn");
    		Game.chatF.pushMsg("moderator", "Zerobrium: Please wait for 5 seconds as we send your request. If nothing happens, please retry.", "SERVER", "", 0);
    		sendAdr();
    		return;
    	}
    	for (var i:int = 0; i < Game.world.myAvatar.objData.iDailyAdCap; i++)
    			{
    				Game.world.sendGetAdRewardRequest(); 
    			}
    }
    function sendAdrequest(event:TimerEvent):void
    {
    		for (var i:int = 0; i < Game.world.myAvatar.objData.iDailyAdCap; i++)
    			{
    				Game.world.sendGetAdRewardRequest(); 
    			}
    		sendAd.stop()
    }
    ///////////////

  8. #23
    devilscorner's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Ohh you almost got me
    Posts
    332
    Reputation
    10
    Thanks
    71
    My Mood
    Lurking
    yeah just use zerobrium auto join ballyhoo, i mean what is the point of using a button for ballyhoo if it won't automatically join the map

  9. #24
    Oliboli8769's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Boliworlds
    Posts
    2,333
    Reputation
    523
    Thanks
    5,239
    Quote Originally Posted by devilscorner View Post
    yeah just use zerobrium auto join ballyhoo, i mean what is the point of using a button for ballyhoo if it won't automatically join the map
    Seriously? Lol it's not that big of a deal.
    Maybe people should be a little less lazy
    Quote Originally Posted by zerobrium View Post
    Here is what I did on my zerolight. It auto-joins ballyhoo and waits 5 seconds till it starts.

    Code:
    var sendAd:Timer = new Timer(5000);//
    sendAd.addEventListener(TimerEvent.TIMER, sendAdrequest);
    
    function sendAdr()
    {
    	sendAd.start();
    }
    ////////////////
    mainPanel.ballyhoo.addEventListener(MouseEvent.CLICK, ballyhoo);
    function ballyhooAds(e:MouseEvent):void
    {
    	//joinRoom("Ballyhoo", "Enter", "Spawn");
    	if (Game.world.myAvatar.objData.iDailyAds == Game.world.myAvatar.objData.iDailyAdCap)
    	{
    		Game.chatF.pushMsg("moderator", "Zerobrium: You have reached your Daily Ballyhoo limit, please try again later.", "SERVER", "", 0);
    		return;
    	}
    	else if (Game.world.strMapName != "ballyhoo")
    	{
    		joinRoom("Ballyhoo", "Enter", "Spawn");
    		Game.chatF.pushMsg("moderator", "Zerobrium: Please wait for 5 seconds as we send your request. If nothing happens, please retry.", "SERVER", "", 0);
    		sendAdr();
    		return;
    	}
    	for (var i:int = 0; i < Game.world.myAvatar.objData.iDailyAdCap; i++)
    			{
    				Game.world.sendGetAdRewardRequest(); 
    			}
    }
    function sendAdrequest(event:TimerEvent):void
    {
    		for (var i:int = 0; i < Game.world.myAvatar.objData.iDailyAdCap; i++)
    			{
    				Game.world.sendGetAdRewardRequest(); 
    			}
    		sendAd.stop()
    }
    ///////////////
    OK awesome thanks man

  10. #25
    devilscorner's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Location
    Ohh you almost got me
    Posts
    332
    Reputation
    10
    Thanks
    71
    My Mood
    Lurking
    hey oli do you have a plan to update the rep quest

  11. #26
    akang99's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    cat etc/passwd
    Posts
    1,112
    Reputation
    10
    Thanks
    1,917
    My Mood
    Bored
    great release dude
    You have to learn the rules of the game. And then you have to play better than anyone else
    Albert Einstein
    ================================================== =================

    My Bots :

    1. Angry Zombie Skull Bot (AQWorlds War Z Bot)
    2. Dage's Endurance Test Quest Bot and Dage's Black Box Quest Bot
    3. Fastest Mana Golem Bot (outdated)
    4. Swordhaven Reputation Bot
    5. Black Voucher Bot
    6. Tinsel's Gift Quest Bot
    7. Mana Golem Bot [updated]

  12. #27
    Oliboli8769's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Location
    Boliworlds
    Posts
    2,333
    Reputation
    523
    Thanks
    5,239
    Quote Originally Posted by akang99 View Post
    great release dude
    Thanks a lot

    Quote Originally Posted by devilscorner View Post
    hey oli do you have a plan to update the rep quest
    Yes.

  13. #28
    Delacroix21's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    1
    My Mood
    Sleepy
    You should take of the Banished Xp and gold option as it has been patch to be done only once nonetheless great trainer!

  14. #29
    TheFrikinAsian's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Failing College
    Posts
    1,622
    Reputation
    48
    Thanks
    344
    My Mood
    Tired
    I do like the interface. Though, I do not care for the sword icon for the mouse pointer. Thank you for providing a setting to change it. I did notice that scrolling over the plus symbol in the upper left hand corner changed the mouse pointer to a text select icon and so does going over the items in the menu provided by the menu. I have not tested any of the bots. Also, I am guessing "Change Gender" is completely client based?

  15. #30
    xkingko's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    172
    Reputation
    10
    Thanks
    111
    My Mood
    Doh
    i would thank you a 100 times.. but.. cant :/

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [Release] AQWBoli Trainer (MAC AND WINDOWS)
    By Oliboli8769 in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 22
    Last Post: 06-30-2013, 07:35 AM
  2. (SEARCHING)WarRock Trainer
    By User Namem in forum Hack Requests
    Replies: 11
    Last Post: 02-02-2006, 07:48 PM
  3. C++ Trainer Skeleton
    By Dave84311 in forum C++/C Programming
    Replies: 40
    Last Post: 01-27-2006, 09:23 PM
  4. Trainer?
    By outrage20 in forum Gate To Heaven Hacks
    Replies: 1
    Last Post: 01-17-2006, 05:52 AM
  5. MPGH Warrock Trainer v1.010206
    By Dave84311 in forum WarRock - International Hacks
    Replies: 21
    Last Post: 01-10-2006, 06:41 PM