Page 1 of 3

macro kill count error

Posted: 26 Jun 2017, 07:35
by genskull
server: iro chaos

Code: Select all

automacro checkQuest {
timeout 15
exclusive 1
call {
$temp1 = @eval($::questList->{62567}->{missions}->{1060}->{count})
if ($temp1 == 150) call Bigfoot
}
}

macro Bigfoot {
do is Butterfly Wing 
pause 3
do move payon 151 92
pause 1
do talknpc 148 93 c c r0 c r0 c r0 n
pause 2
do talknpc 148 93 c c r1 c r0 c r0 n
pause 2
}
the count doesnt work/failed/error. any idea?
i think one of the problem is the kill count for quest is not showing/appear in my console. its should appear like this:
[Bounty Board Bigfoot] Quest - defeated [Bigfoot] progress (59/150)
pls see the picture attached. thank you in advance.

Re: macro kill count error

Posted: 27 Jun 2017, 04:10
by genskull
i did some research here in forum too.
i try put *parse_quest_update_mission_hunt = *Network::Receive::ServerType0::parse_quest_update_mission_hunt_v2;
*reconstruct_quest_update_mission_hunt = *Network::Receive::ServerType0::reconstruct_quest_update_mission_hunt_v2;

at src/network/iRO.pm but still my bot is not counting every progress of my quest. pls help me.
i downloaded my openkore at github. this is new version.
i also copy the quests_killcount.txt from killcount plugin to my tables but still the same.

Re: macro kill count error

Posted: 27 Jun 2017, 06:11
by genskull
up

Re: macro kill count error

Posted: 27 Jun 2017, 12:09
by Mortimal
call{} sequence is buggy use

Code: Select all

...
call macroname
....
macro macroname{}
...
instead

Re: macro kill count error

Posted: 27 Jun 2017, 22:36
by genskull
i try this sir but still error

Code: Select all

automacro QuestCheck {
hook packet/quest_update_mission_hunt
# hook target_died
exclusive 1
call counter
}

macro counter {
    $temp1 = @eval($::questList->{62645}->{missions}->{1013}->{count})
    if ($temp1 == 150) call CollectBounty
call CollectBounty
}

Re: macro kill count error

Posted: 28 Jun 2017, 03:59
by genskull
up

Re: macro kill count error

Posted: 28 Jun 2017, 06:57
by genskull
up

Re: macro kill count error

Posted: 28 Jun 2017, 10:02
by genskull
up

Re: macro kill count error

Posted: 29 Jun 2017, 04:05
by genskull
up

Re: macro kill count error

Posted: 29 Jun 2017, 10:37
by genskull
up