The port manager NPC now asks a fairly easy security question which involves the minimap and the 3 ships in Alberta...
In which by anychance the player gave a wrong answer, it will automatically finish and close the quest for that day...
Whenever a player speaks with the port manager, this window appears...

On the mini-map, I've encircled the blue crosses on the 3 ships...
And for added info, here's what appears on the console...

Now, the coordinates of these 3 crosses are constant no matter how many times you speak with the NPC..
Those are -194,217- , -194,168- and -265,88-...
The only difference is that the number of crosses that appear is randomized from 1 to 3..
I was able to make automacros and corresponding macros...
The problem is whenever the NPC gives either 2 or 3 coordinates, the first automacro kicks in giving a wrong answer...
I was just wondering if there's anything we can do to provide the right answer to the NPC thus continuing the quest...
Thanks...
And by the way, I am currently using metalmarine's macro --->> http://forums.openkore.com/viewtopic.php?f=55&t=15699
Here's the automacro/macro I've created...
automacro capcha-a {
console /location 194, 217/i
exclusive 1
priority 3
call solved-a
}
automacro capcha-b {
console /location 194, 168/i
exclusive 1
priority 2
call solved-b
}
automacro capcha-c {
console /location 265, 88/i
exclusive 1
priority 1
call solved-c
}
macro solved-a {
pause 2
do talk text 1
release capcha-a
}
macro solved-b {
pause 2
do talk text 2
release capcha-b
}
macro solved-c {
pause 2
do talk text 3
release capcha-c
}