Close
Page 206 of 212 FirstFirst ... 106 156 196 204 205 206 207 208 ... LastLast
Showing results 2051 to 2060 of 2112
  1. #2051

    Default

    Hi,

    is Guild chat forwarding gone ??

    can't find it anywhere in the options
    I don't suffer from Schizophrenia, I enjoy every moment of it !

  2. #2052

    Default

    Quote Originally Posted by Bloodcloud View Post
    Hi,

    is Guild chat forwarding gone ??

    can't find it anywhere in the options
    Yes, it didn't come back for 0.5 when I rewrote. I can add it back in for you. What would you like it to do? Edit: I mean, describe to me what you would like to see happening, what do you mean by "guild chat forwarding"?
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  3. #2053

    Default

    Quote Originally Posted by Jafula View Post
    Yes, it didn't come back for 0.5 when I rewrote. I can add it back in for you. What would you like it to do? Edit: I mean, describe to me what you would like to see happening, what do you mean by "guild chat forwarding"?
    long:
    - I have the toons of my team in 2 guilds (my own (for guildbank) and a Raiding guild
    - Currently my TANK and Priest are in Raiding guild. (Priest is my Raiding character.)
    - the reason for my TANK to be in the Raiding guild was just to follow /g and /o there. I don't raid on tank.
    - I need to remove my TANK, to get own guild XP from instances (4/5 need to be of same guild to get guild xp for instances)
    - Will keep Priest in raiding guild (but it is on a slave window, and unreadable in my normal setup.

    - I looked at guild2guild addon, which worked for a day, and was broke yesterday after and update

    TL : DR

    - How can I display and respond to /g and /o of my slave on my MAIN = Tank.
    Last edited by Bloodcloud : 12-08-2010 at 05:31 AM
    I don't suffer from Schizophrenia, I enjoy every moment of it !

  4. #2054

    Default

    Is there any reason to not autosell soulbound weapons and armor that you can't use? (like a wand on a rogue) I added this to DoMerchantSellPoorItems in Jamba-Sell. As you can see the actual selling is commented out, I am still making sure it doesn't sell something important. See any issues with this?
    Code:
    if quality == AJM.ITEM_QUALITY_POOR then 
    	-- Attempt to sell the item.
    	AJM:SellPoorItemIfNotAnException( name, itemLink, bag, slot )				
    end
    -- My stuff added here:
    if class == "Armor" or class == "Weapon" then
    	-- skip trinkets and rings and stuff like that
    	if subclass ~= "Miscellaneous" then
    		-- skip enchanters because they can DE
    		local prof1, prof2, _, _, _, _ = GetProfessions()
    		local prof1name = ''
    		local prof2name = ''
    		if prof1 then prof1name, _, _, _, _, _, _, _ = GetProfessionInfo(prof1) end
    		if prof2 then prof2name, _, _, _, _, _, _, _ = GetProfessionInfo(prof2) end
    		if prof1name ~= "Enchanting" and prof2name ~= "Enchanting" then
    			local MyScanTt = CreateFrame("GameTooltip", "MyScanTt", nil, "GameTooltipTemplate")
    			MyScanTt:SetOwner(WorldFrame,"ANCHOR_NONE")
    			MyScanTt:SetHyperlink(link)
    			local sb = getglobal("MyScanTtTextLeft2")
    			local sbtext = sb:GetText()
    			local redtome = getglobal("MyScanTtTextRight3")
    			local redtext = redtome:GetText()
    			local rrr, ggg, bbb = redtome:GetTextColor()
    			if sbtext == "Binds when picked up" and math.floor(rrr*256) == 255 and math.floor(ggg*256) == 32 and math.floor(bbb*256) == 32 then
    				AJM:Print(name)
    				-- Attempt to sell the item.
    				-- AJM:SellPoorItemIfNotAnException( name, itemLink, bag, slot )				
    			end
    		end
    	end
    end

  5. #2055

    Default

    I used to have an addon that would automatically accept quests when I right clicked with a shift click as an override. and only time I would require to actually input any commands was when there was an option to choose a quest reward. I believe it may have been either multiboxer or something equivalent to it.

    Would something like this be available in jamba? I find the current quest share / reporting to be kinda buggy.
    Being able to simply right click a quest NPC to accept the quest or turn in the quest would be pretty awesome.

    Or if the feature cannot be added, is there an addon I can find that does this? I have been looking on curse gaming and i havent been able to find anything as of yet.

  6. #2056

    Default

    Quote Originally Posted by Crayonbox View Post
    I used to have an addon that would automatically accept quests when I right clicked with a shift click as an override. and only time I would require to actually input any commands was when there was an option to choose a quest reward. I believe it may have been either multiboxer or something equivalent to it.

    Would something like this be available in jamba?
    Yes, its been in for ages. To replicate what you want, you need these settings.

    /jamba-quest

    First quest screen (Quest).

    "All Auto Select Quests" checked.
    "Accept Quests" checked.
    "All Auto Accept ANY Quest" checked.
    "Hold Shift To Override Auto Select/Auto Complete" checked.

    Second quest screen (Quest: Competion).

    "Enable Auto Quest Completion" checked.
    Under label "Quest Has No Rewards Or One Reward:"
    "All Automatically Complete Quest" checked.
    Under label "Quest Has More Than One Reward:"
    "Toon Must Choose Own Reward" checked.

    If you don't care what green equipment the toons get:

    Choose "Toon Auto Chooses Best Reward" instead of "Toon Must Choose Own Reward". Jamba will try and get the best green for your character, so you don't have to choose. If the reward is a blue or higher, Jamba will not auto choose and you will have to manually select. Please note the auto chooser can be a bit buggy and get the wrong piece (intellect instead of agility for instance), but as they are greens, it usually doesn't matter when levelling up.

    With this setup you just right click NPCs and Jamba does the rest, no need to choose rewards, select quests, etc.

    Please note: the new "in the field" quests that came with Cataclysm have not been tested completely, but the majority work fine.

    Make sure to push settings to all toons (button at the top on the /jamba-quest screen).

    Quote Originally Posted by Crayonbox View Post
    I find the current quest share / reporting to be kinda buggy.
    Being able to simply right click a quest NPC to accept the quest or turn in the quest would be pretty awesome.

    Or if the feature cannot be added, is there an addon I can find that does this? I have been looking on curse gaming and i havent been able to find anything as of yet.
    If you find bugs, please tell me so I can fix them... I haven't been able to play much recently, but if you folk tell me about them, next time I get a spare moment to work on Jamba I can fix them.

    Anyway, I hope Jamba does what you want and happy questing.
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  7. #2057

    Default

    exactly what i was looking for. Just didnt know how to set it up. Thanks a bucnh

  8. #2058

    Default

    I have screwed up your wonderful addon somehow.

    The interface window that comes up from /jamba is too large to fit on my screen to see all the options.

    I don't know how I resized this window? or if it is a conflict with another addon.

    I've tried deleting all the saved data and uninstalling.

    I've tried different screen resolutions, the Jamba window scales with the changes. Still too large.

    I've tried tinkering around with ui scale.

    I can move the window to the upper left corner.
    /jamba
    /run JambaSettingsWindowsFrame:SetPoint("TOPLEFT", 0, 0)

    But still it's larger than the viewport.

    Ideas?
    WoW - Kil'Jaeden: Aerron (Paladin) Legion of Boom
    Warhammer Online - Azazeal server, Erron 25 White Lion, 3x Bright Wizards
    Age of Conan - Wiccana Server "Atmos" 6x Tempest of Set (Sacrafice to Set)
    Vanguard - Xeth Server "Erron" Paladin, Cleric, 3xSorcerers (Followers of Erron)
    Star Wars Galaxies - Bloodfin Server since 2004, Elder Jedi +4 Jedi apprentices

  9. #2059

    Default

    Quote Originally Posted by Erron View Post
    I have screwed up your wonderful addon somehow.

    The interface window that comes up from /jamba is too large to fit on my screen to see all the options.

    I don't know how I resized this window? or if it is a conflict with another addon.

    I've tried deleting all the saved data and uninstalling.

    I've tried different screen resolutions, the Jamba window scales with the changes. Still too large.

    I've tried tinkering around with ui scale.

    I can move the window to the upper left corner.
    /jamba
    /run JambaSettingsWindowsFrame:SetPoint("TOPLEFT", 0, 0)

    But still it's larger than the viewport.

    Ideas?
    Hmmm, not seen that before, try:

    /run JambaSettingsWindowsFrame:SetScale(1.0)

    (You change the number 1.0 to other values to scale appropriately, try 0.5 for 1/2 the current scale.)

    Please let me know if the problem keeps occuring!
    Jafula.
    Jamba - Jafula's Awesome Multi Boxer Assistant. An addon for YOU.

  10. #2060

    Default

    @ Jafula:

    I tried guild2guild, but they changed it now so that the associated guilds NEED to be in the ingame guild info. -> crap (or me needing to modify the code of guild to guild)
    I decided to move my toons into the raid guild, thats fine as well.

    so don't worry about the guild chat forwarding.

    thanks and keep up the good work.
    I don't suffer from Schizophrenia, I enjoy every moment of it !

Similar Threads

  1. Replies: 29
    Last Post: 06-27-2009, 03:09 AM
  2. Replies: 1
    Last Post: 04-23-2009, 05:57 PM
  3. Any idea when we'll see an update for Jamba?
    By Clovis in forum Macros and Addons
    Replies: 2
    Last Post: 04-20-2009, 09:21 AM
  4. Jamba Addon new features suggetion
    By Ivanhalf in forum Macros and Addons
    Replies: 3
    Last Post: 04-01-2009, 04:26 AM
  5. SickOfClickingDailies AddOn - great for multiboxers
    By puppychow in forum Macros and Addons
    Replies: 1
    Last Post: 10-16-2008, 04:14 PM

Posting Rules

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