| Updated: | 04-02-10 08:46 AM |
| Created: | unknown |
| Downloads: | 3,884 |
| Favorites: | 42 |
| MD5: |

File Name |
Version |
Size |
Author |
Date |
2.1 |
10kB |
Cargor |
03-08-10 11:44 AM |
|
2.0.5 |
8kB |
Cargor |
08-26-09 06:32 AM |
|
2.0.3 |
8kB |
Cargor |
08-24-09 08:01 AM |
|
2.0 |
8kB |
Cargor |
07-02-09 09:28 AM |
|
r311 |
8kB |
Cargor |
11-20-08 10:55 AM |
![]() |
Comment Options |
|
|
|
|
Well, try it
So far cargoShip has been working with any broker addon.Just make sure you use "SocialState" as the name. |
|
|
|
|
|
|
|
I'd like to add Broker_SocialSlate in your addon... Is it possible ?
http://wow.curse.com/downloads/wow-a...cialstate.aspx |
|
|
|
|
|
|
|
Sometimes the actual names of the dataobjects differ from the name of their containing addons (it's up to the authors) - in your case, you need to use
|cFFFFB366Ara|r SpecSwitcher |cFFFFB366Ara|r Money You can find out the real names of the data objects if you look into the addons' files and search for "NewDataObject".
Last edited by xConStruct : 04-24-10 at 11:17 AM.
|
|
|
|
|
|
|
|
Need help
Hi.
Help me please include addons "Ara_Broker_SpecSwitcher" and "Ara_Broker_Money" into your addon. I wrote next strings, but it doesn`t showed in the game :local spec = cargoShip{ name = "Ara_Broker_SpecSwitcher", } spec:SetPoint("CENTER", UIParent, "CENTER", 0, 0) local money = cargoShip{ name = "Ara_Broker_Money", } money:SetPoint("CENTER", UIParent, "CENTER", 50, 0) |
|
|
|
|
|
|
|
Yep, you can paste the lib in there, but make sure it is also referenced in the toc-file, before LibDataBroker-1.1.lua.
|
|
|
|
|
|
||
|
A Deviate Faerie Dragon
Forum posts: 19
File comments: 174
Uploads: 0
|
I've checked the folder and indeed it is missing callbackhandler-1.0.lua I guess it was accidentally omitted from the pkg? Can I just ..like..paste it in there?:P I will do what you suggested anyway though and post to the original author too. Thanks ![]() edit: Your fix worked in that the lua error doesn't show. I still can't get the plugin to show though. Will keep fiddling with it..
Last edited by zohar101 : 03-09-10 at 02:10 PM.
|
|
|
|
|
|
|
|
That seems to be a problem of Broker_MicroMenu (can't find the addon, so I cannot check it). Seems like it is missing the library CallbackHandler-1.0, which is needed for LibDataBroker-1.1
cargoShip comes bundled with this lib (like all other Broker addons), but because Broker_MicroMenu is loaded first by WoW, the client throws this error. Check if Broker_MicroMenu includes the file CallbackHandler-1.0.lua, otherwise report the problem to the author. As a temporary fix, you can write "## RequiredDeps: cargoShip" into its .toc-file, this should load it after cargoShip, so the libs are present at load time. |
|
|
|
|
|
||
|
A Deviate Faerie Dragon
Forum posts: 19
File comments: 174
Uploads: 0
|
Have no idea how to enable lua error check in the editor I was using. But I'll find out.So I corrected the spelling but still wasn't getting it. Decided to turn off all addons but this and suddenly I got this lua error: Message: ...erface\AddOns\Broker_MicroMenu\LibDataBroker-1.1.lua:3: LibDataBroker-1.1 requires CallbackHandler-1.0 Time: 03/08/10 16:06:50 Count: 1 Stack: [C]: in function `assert' ...erface\AddOns\Broker_MicroMenu\LibDataBroker-1.1.lua:3: in main chunk Locals: (*temporary) = nil (*temporary) = "LibDataBroker-1.1 requires CallbackHandler-1.0" I should add I downloaded and am using your new version 2.1 Is this a problem with the plugin? Should I post it to its author?
Last edited by zohar101 : 03-08-10 at 05:00 PM.
|
|
|
|
|
|
|
|
You're spelling SetPoint() in both Broker-sections with a small 'p', but it should be a capital one
![]() Do you have Lua errors enabled? The typo should normally print an error. Tested it on my client and they are working fine. EDIT: Just saw that I have an unpublished major update to cargoShip lying around here for several months, coming soon! ![]()
Last edited by xConStruct : 03-08-10 at 10:41 AM.
|
|
|
|
|
|
||
|
A Deviate Faerie Dragon
Forum posts: 19
File comments: 174
Uploads: 0
|
--[[ ### IMPORTANT ### Set the value to 'false' to actually ENABLE THE LAYOUT: ]] if false then return end -- We don't want to enable it for Lib-users --[[ I think, the layout is fairly self-explanatory, Here's a list of all available options: noIcon, useLabel, formatting, parent, width, height, scale, alpha fontFamily, fontSize, fontStyle, fontObject, noShadow ]] --local friends = cargoShip("picoFriends") --friends:SetPoint("CENTER") local gmotd = cargoShip("Broker_GuildMOTD") gmotd:Setpoint("CENTER") --local micromenu = cargoShip("Broker_Micromenu") --micromenu:Setpoint("CENTER") Picofriends works just fine but not the broker ones. I had more plugins in there I tested out but it was getting to be cluttered so I erased them. I commented out one at a time every time so they wouldn't overlap.
Last edited by zohar101 : 03-08-10 at 08:14 AM.
|
|
|
|
|
|
|
|
It should be compatible with every broker addon. Could you post your layout code, so that I can have a look at it?
![]() |
|
|
|
|
|
|
|
A Deviate Faerie Dragon
Forum posts: 19
File comments: 174
Uploads: 0
|
So I'm trying this out since I need only 2 plugins to show and this is the simplest setup I could find. I have no programming experience at all but based on what you had in layout, it seemed simple enough so I gave it a try. I can get some plugins to show like picofriends but anything with broker in it like Broker_Daily or Broker_GuildMOTD etc. doesn't work. I'm setting it with no options, displaying dead center to test it out so there's no confusion. I'm probably missing something obvious. Is this not compatible with some plugins?
Thanks in advance, sorry for the noobness:P |
|
|
|
|
|
|
Everything works now, thanks, keep questioning myself why didn't I check .toc myself
![]() |
|
|
|
|
|
|
|
Aww, you're right :/ such a stupid mistake. Thanks for the report, update comes in a few hours.
|
|
|
|
![]() |

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.