Search found 41 matches

by Agripa
Thu Mar 15, 2007 1:32 pm
Forum: MQ2::Macros::Requests
Topic: Trading Orum and other coins
Replies: 5
Views: 4404

I actually did update that code to handle coin as well as crystals and to turn in DoN faction tokens but never posted the updates. Does anybody have any interest in it?

I do not have any accounts with the current expansions so working with the new currencies would be difficult.
by Agripa
Fri Jul 07, 2006 7:05 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

Should be relatively easy to add and test. I will try to get to it this weekend.
by Agripa
Fri Jul 07, 2006 4:56 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

StackSize will tell me how many items can fit in a stack. I also know how many items are in a stack so for any given stack I know how many items can be added before it is full. So comparing every stack to every other stack before the actual sort and knowing when I can move items is not a problem. I ...
by Agripa
Fri Jul 07, 2006 12:49 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

CSORT uses a comb sort so there is no guaranty that every item is compaired to every other item. Any combine function would probably work best before the sort routine itself and after the item slot array is created so it knows what items to work with and where they are. What exactly would you want i...
by Agripa
Thu Jul 06, 2006 10:55 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

Re: Sort items into stacks?

This macro is awesome.. But it doesn't seem to sort items into stacks. If I have 3 or 4 singles around, they don't get sorted into stacks (even with the stack option). Should it? Also, assuming that it should.. Does it know how to deal with the new 100 stacks for ammo? It keeps all stacks seperate ...
by Agripa
Mon May 15, 2006 10:44 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

I have had issues with comments causing problems in mq2 so once I found something that worked I kept using it. It also makes it easier for my editor to assign color.
by Agripa
Wed Apr 19, 2006 5:33 pm
Forum: Other::General
Topic: Looking for advice
Replies: 8
Views: 5646

It is difficult to quantify power supplies because so many of the relevant specifications are unlisted or nebulous making them difficult to gauge. Luckily, they do not cost very much to replace anymore. Beyond that barring some specific issue with a component, sticking to name brands and being prepa...
by Agripa
Fri Apr 14, 2006 3:34 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

I do not have any PoR accounts so I have no way to verify the PoR bank slot numbers or the slot numbers inside bags in the PoR slots. I already changed the numbers so it should work IF the slot numbers are continuous but without a PoR account I can not verify it. The BankWnd and BigBankWnd changes a...
by Agripa
Mon Apr 10, 2006 12:45 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

Try using ebs2002's change. There are some issues with PoR.
by Agripa
Fri Mar 24, 2006 7:07 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

That looks like the problem I fixed today when I posted version 1.11. BigBankWnd got changed to BankWnd. What version was that on?
by Agripa
Fri Mar 24, 2006 2:25 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

I am going over this today.

Looks like BigBankWnd was replaced with BankWnd.

I tested it on pre-PoR but someone else will have to verify it works with PoR installed.
by Agripa
Wed Mar 15, 2006 2:20 am
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

I used a comb sort because it is more predictable and it is easy to prevent pathological sort times. I am going over the changes now but I need to figure out how to detect if a player has PoR or not. If I do not find a way, I will add a user settable bool. It has been a while since I have had to mak...
by Agripa
Wed Mar 08, 2006 4:02 pm
Forum: MQ2::Macros::Macro Depot v3.0
Topic: CSORT - Sort items inside bags
Replies: 75
Views: 16882

If someone could verify the new bank slot IDs in PoR for me I can update this to handle them. |* bank1 2000 2031-2040 |* bank2 2001 2041-2050 |* bank3 2002 2051-2060 |* bank4 2003 2061-2070 |* bank5 2004 2071-2080 |* bank6 2005 2081-2090 |* bank7 2006 2091-2100 |* bank8 2007 2101-2110 |* bank9 2008 ...
by Agripa
Mon Feb 27, 2006 7:05 pm
Forum: MQ2::Macros::Help
Topic: ini file deletion?
Replies: 35
Views: 3562

The patch in this thread will allow you to delete keys and sections:

http://www.macroquest2.com/phpBB2/viewt ... ght=delete
by Agripa
Tue Jan 03, 2006 7:57 am
Forum: MQ2::Macros::Snippets
Topic: Ninjadvloot.inc v1.3
Replies: 56
Views: 42908

If I understand the issue correctly, it would skip the delay if the window was open but if not, it would still always wait the entire 1 second which defeats the purpose of having an early exit from the delay itself.