Search found 59 matches

by Liposo
12 Jul 2016, 07:09
Forum: Other OpenKore support
Topic: doCommand question
Replies: 0
Views: 2292

doCommand question

How can we do more than one command at a time?

example:
doCommand north 30; east 15 {
hp < 5%
inMap prontera
}
by Liposo
04 Jul 2016, 10:55
Forum: Resolved Questions
Topic: using unknown item in macro
Replies: 1
Views: 4057

using unknown item in macro

How can I use Unknown #12345 with Macro plugin?
It gives me error when I tried @invamount (Unknown #12345).

The "#" sign breaks the Macro plugin. How to work around this?
by Liposo
10 Jun 2016, 11:22
Forum: Other OpenKore support
Topic: Reducing RAM used by openkore
Replies: 4
Views: 4344

Reducing RAM used by openkore

Currently an OpenKore process will take up approximately 50MB of RAM.
Is there a way to reduce it? Except disabling plugins.
by Liposo
10 Jun 2016, 11:17
Forum: Resolved Questions
Topic: Check reason Why i was died ?
Replies: 2
Views: 4729

Re: Check reason Why i was died ?

deca2708 wrote:activate your death log in config
logDead will only tell when did you die. Not how.
by Liposo
10 Jun 2016, 11:16
Forum: Other OpenKore support
Topic: Can bot change config folder?
Replies: 6
Views: 4728

Re: Can bot change config folder?

deca2708 wrote:do conf works with plugin.
use search and find plugin. an admin made it.
what exactly the name of the plugin you're referring to?
by Liposo
10 Jun 2016, 11:16
Forum: Other OpenKore support
Topic: Can bot change config folder?
Replies: 6
Views: 4728

Re: Can bot change config folder?

c4c1n6kr3m1 wrote:use macro for all your question
can you give some example?
by Liposo
04 Jun 2016, 05:52
Forum: Macro Plugin
Topic: [guide/help] Macro usefulls
Replies: 23
Views: 108995

Re: [guide/help] Macro usefulls

Mortimal wrote: 3. Check if cell is Walkable (and castable)

Code: Select all

$i = @eval($::field->isWalkable(<any x>, <any y>))
$i - bool
How about additionally check if cell is occupied by monster/npc/player?
by Liposo
31 May 2016, 14:07
Forum: Other OpenKore support
Topic: Can bot change config folder?
Replies: 6
Views: 4728

Re: Can bot change config folder?

http://wiki.openkore.com/index.php/Conf

conf command only change config value in config.txt.
I want to switch the entire config folder which includes mon_control, pickupitems, macros, etc as well.
by Liposo
30 May 2016, 01:46
Forum: Other OpenKore support
Topic: Can bot change config folder?
Replies: 6
Views: 4728

Can bot change config folder?

How to make bot changes config folder when certain criteria met, eg from macros?
by Liposo
15 Sep 2015, 02:52
Forum: Resolved Questions
Topic: Hook when HP or SP changed
Replies: 6
Views: 5975

Re: Hook when HP or SP changed

vitriol wrote:Plugins::addHooks(['packet/hp_sp_changed', \&doHookSubroutine]);
I'm aware that I could add hook in line of code.

But if a simple code like

Code: Select all

message("this line is working\n");
is not printing any message in the console, that means the sub is never called therefore the hook shouldn't work either?