Search found 96 matches

by kamirie
30 Oct 2018, 02:52
Forum: Private Servers
Topic: Quest List is blank
Replies: 20
Views: 9633

Re: Quest List is blank

If your game client update their server version, ain't you need to update your serverType too? Yes , I updated it . I can connect normally , use skills normally , see npc's correctly aside from custom items. I didn't notice that there were some issues until I tried to do the quest list version 54 m...
by kamirie
29 Oct 2018, 20:38
Forum: Private Servers
Topic: Quest List is blank
Replies: 20
Views: 9633

Quest List is blank

Good Day, background : Im using kore to do some repeatable quests and it was working fine before. But the server I'm playing at updated server/client version. And now when I try to do the quests again, my quest lisrt is blank, I now I have quests because I was doing some manual quests earlier and le...
by kamirie
30 Sep 2018, 21:36
Forum: Macro Plugin
Topic: check if the bot is stuck macro
Replies: 17
Views: 12187

Re: check if the bot is stuck macro

Hmm, that's not what I mean by checking that link xD Hahaha.. Welp, nvm. At least you tried. That $x = @eval($::char->{pos}{x}) is for getting X or Y value. But the way you are using it, it's the same as $.pos How about like this? It's ugly.. automacro Test { location not <map> timeout 60 call { :S...
by kamirie
26 Sep 2018, 22:26
Forum: Macro Plugin
Topic: check if the bot is stuck macro
Replies: 17
Views: 12187

Re: check if the bot is stuck macro

Can I do this ? Or can I simplify this into a single macro/eventMacro block? automacro antiidle3 { location not $savesp call { $x = @eval($::char->{pos}{x}) $y = @eval($::char->{pos}{y}) $oldpos = $x,$y log $oldpos } timeout 320 } automacro antiidle4 { location not $savesp call { $x = @eval($::char-...
by kamirie
26 Sep 2018, 16:02
Forum: Macro Plugin
Topic: check if the bot is stuck macro
Replies: 17
Views: 12187

Re: check if the bot is stuck macro

Just to make sure; You did enable attackCheckLOS right? And attackUseSkills range is exactly as that certain skill has? Yes I set it correctly . Check this out. http://forums.openkore.com/viewtopic.php?f=32&t=15913 There's useuful stuff you might wanna try. Ok I'll check this Normally regarding stu...
by kamirie
25 Sep 2018, 22:39
Forum: Macro Plugin
Topic: check if the bot is stuck macro
Replies: 17
Views: 12187

Re: check if the bot is stuck macro

Good Day, I always encounter the issue of being stuck while handling ranged monsters. The bot will try to attack but stay's in the same spot then after some time it will be stuck and cannot use any skill. I want to create a macro to check it's position every 5 secs and if the position is the same 5...
by kamirie
25 Sep 2018, 03:46
Forum: Macro Plugin
Topic: check if the bot is stuck macro
Replies: 17
Views: 12187

Re: check if the bot is stuck macro

Thanks fadreus i'll stick with the macro first to test :D
by kamirie
25 Sep 2018, 02:37
Forum: Macro Plugin
Topic: check if the bot is stuck macro
Replies: 17
Views: 12187

Re: check if the bot is stuck macro

I think I know why my bot is getting stuck. It's when being mobbed and casting teleport skill , it will initialize the casting but "figuratively" sticks at finishing the teleport , like having the teleport prompt waiting to press enter in-game. Simply use macro warp cancel for that. Like this? auto...
by kamirie
25 Sep 2018, 02:13
Forum: Macro Plugin
Topic: check if the bot is stuck macro
Replies: 17
Views: 12187

Re: check if the bot is stuck macro

I think I know why my bot is getting stuck. It's when being mobbed and casting teleport skill , it will initialize the casting but "figuratively" sticks at finishing the teleport , like having the teleport prompt waiting to press enter in-game.
by kamirie
24 Sep 2018, 22:04
Forum: Macro Plugin
Topic: check if the bot is stuck macro
Replies: 17
Views: 12187

Re: check if the bot is stuck macro

fadreus wrote:eventMacro just like macro.
eventMacro is rework of macro.
Most of it is similar.
Yes, Yes ,
eval $char->{isIdle} < where do i insert this line with 5 secs check?

Code: Select all

automacro idle {
InLockMap 1
call { 
commands
}
timeout 5
}