Search found 25 matches

by Shadow7
28 Sep 2012, 00:08
Forum: pRO
Topic: No SP Teleport [New Chaos]
Replies: 7
Views: 5451

Re: No SP Teleport [New Chaos]

When it stopped working, I hooked on a bot via xKore and had it run a macro whenever i triggered a macro via party chat. bind to alt + 1 or whichever : teIllIIle pseudocode: automacro tele { party /teIllIIle/ call { do tele } } Tada, no sp teleport in-game. At the expense of the resources of running...
by Shadow7
18 Jun 2012, 01:47
Forum: Resolved Questions
Topic: Changing Speed of Execution of Macro Lines or Macro Commands
Replies: 4
Views: 3692

Re: Changing Speed of Execution of Macro Lines or Macro Commands

macro switch1 {
[
do eq leftHand +4 Valkyrja's Shield [Thara Frog] [1]
do eq rightHand + Assassin Dagger
do eq +7 Feather Beret
]
release switch
}

All commands enclosed in square brackets [] will run at the same time.
Try it out :D
by Shadow7
12 Apr 2012, 03:35
Forum: Bug reports
Topic: Pickup party dropped item
Replies: 1
Views: 2116

Re: Pickup party dropped item

What's inside your pickupitems.txt?
by Shadow7
12 Apr 2012, 03:17
Forum: pRO
Topic: disconnect after storaging each equipments
Replies: 4
Views: 2857

Re: disconnect after storaging each equipments

Hi dominic,

That is very unfortunate.
I can't seem to figure out what exactly could be wrong however could you try setting relogAfterStorage to 0 in your config.txt (if it isn't already set to 0) and tell me what happens?
by Shadow7
12 Apr 2012, 03:12
Forum: Private Servers
Topic: Can't figure out how to attack custom monster: Golden Dokebi
Replies: 3
Views: 3766

Re: Can't figure out how to attack custom monster: Golden Dokebi

Dear Deathwish, Please post only the specific parts of the config that you know are problematic otherwise its really painful to read the wall of text. One: Are you sure you have the right ID? Try pressing ml on the console when you encounter the Golden Dokebi and see if there is another ID's you did...
by Shadow7
12 Apr 2012, 01:50
Forum: Macro Plugin
Topic: How to trigger use Bwing when Autobuy?
Replies: 2
Views: 3411

Re: How to trigger use Bwing when Autobuy?

Or you could set saveMap_warpToBuyOrSell to 1 on your config :)
by Shadow7
09 Apr 2012, 00:19
Forum: Macro Plugin
Topic: how to determine kill counts in a quest?
Replies: 6
Views: 5179

Re: how to determine kill counts in a quest?

tikztikz

The quest count itself was bugged for New Chaos for a lot of instances the last time I tried. (It would still work for some though)
I'll try messaging the guy from New Iris that got it to work and see what he did exactly
by Shadow7
09 Apr 2012, 00:06
Forum: Macro Plugin
Topic: about pubm, pm, party, guild
Replies: 1
Views: 3011

Re: about pubm, pm, party, guild

As far as I know you unfortunately can't XD (A complicated condition like that will be difficult to write. Instead you could stick to the simple conditions) What you could do to simplify things is to call a specific macro from each of the four conditions. For example: automacro a { pub /regexp/ call...
by Shadow7
08 Apr 2012, 23:59
Forum: Macro Plugin
Topic: need help abt enrich celermine
Replies: 2
Views: 3148

Re: need help abt enrich celermine

I had a similar problem before but then I used a packet sniffer. Latched on to a GG-less client and recorded the packet. Another is to check out the following options under config.txt http://wiki.openkore.com/index.php/Category:Config.txt Debug DebugDomains DebugPacket exclude DebugPacket include De...
by Shadow7
08 Apr 2012, 23:37
Forum: Macro Plugin
Topic: stop loop when attack
Replies: 4
Views: 4139

Re: stop loop when attack

How are you triggering your macro? or When do you want your character to use first aid? From your conditions in your macro I can see that you want to trigger first aid when: hp < 70% sp > 2% no monsters are attacking you You could try something like this: Note: This is the first time I tried using a...