• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Question - issue with kiss ( you are out of money)

Warlock88

Member
Joined
May 4, 2013
RedCents
257¢
Was doing my kissassist thing with my guys and noticed that my guy stopped pulling and the macro ended.. the phrase of " you are out of money " came up and it ended the kiss assist macro. Any idea as of why this happened? this could be the reason why i been dieing a lot when i am around the house doing my errands and i come back and i am dead...

thanks in advance for your help
 
What version of kissassist? I don't see this anywhere in the versions I have.

The only reason I could think this would matter is if you are using mercenaries and don't have upkeep money.
 
i use 6.5 ( all the ones higher i find do not work as well).. as for money for merc i have right now 1.7million so that isnt an issue either.. and this si the first time i have actually seen this message .. but like i said i have been dieing alot lately and maybe this is the reason
 
Interesting - I also went back and stayed with 6.5 - I'm eagerly awaiting Maskoi's new version though.

If that message is correct, it doesn't exist anywhere in KA itself. So it would be coming from a plugin it uses I suppose. I can't imagine which.

- - - Updated - - -

I searched a bit more and found:
./Macros/Buy.inc: /echo You are out of money!
./Macros/Buy.inc: /echo You are out of money!

this is a function from Buy.inc, but I don't see this function used directly in KissAssist at all either.

Wish we had stack traces.
 
Its part of ninjadvloot.inc. its an event that activates on the words "you can't afford". I need to filter it a little better so it only works when the vendor window is open.

Rich (BB code):
#Event Broke            "#*#you cannot afford#*#" 
#Event Broke            "#*#you can't afford#*#"

So if you were cybering and sent the tell You can't afford it the macro would end or some idiot shouted or ooc'd it same thing.
 
Also exists in Ninjadvloot.mac, but still don't see where this would be related to kissassist.

All of these are also events based on an actual event of "You can't afford" etc.

and beaten.

Is it just triggering on any random person saying it in a channel?
 
Kissassist uses ninjadvloot for looting. Yes it will trigger if it sees that phrase anywhere.
 
line 376 ish in ninjadvloot.inc find
Rich (BB code):
| **************** Broke Event ******************** 
Sub Event_Broke 
    /echo You are out of money! 
    /endmacro 
/return
Add the bold line in red.
Rich (BB code):
| **************** Broke Event ******************** 
Sub Event_Broke 
    /if (!${Window[MerchantWnd].Open}) /return
    /echo You are out of money! 
    /endmacro 
/return
will stop that from happening again.
 
This is very interesting is there anyway to block this so that it does not stop the macro...
 
You mean like the fix i just posted thats above your post.
 
Question - issue with kiss ( you are out of money)

Users who are viewing this thread

Back
Top
Cart