Stuck and console starts to flood "any work in progress etc"

International

Moderator: Moderators

zerokel17
Noob
Noob
Posts: 4
Joined: 22 Jan 2013, 01:00
Noob?: Yes

Stuck and console starts to flood "any work in progress etc"

#1 Post by zerokel17 »

Whenever my character teleports or use skills,sometimes this happened and it cant recover unless it dies! help please! the words in console "any work in progress (NPC dialog, manufacturing..." starts to appear and flood the whole console!

this is the code for tele:
teleportAuto_hp 10
teleportAuto_sp 0
teleportAuto_idle 0
teleportAuto_portal 1
teleportAuto_search 0
teleportAuto_minAggressives 5
teleportAuto_minAggressivesInLock 5
teleportAuto_onlyWhenSafe 0
teleportAuto_maxDmg 1500
teleportAuto_maxDmgInLock 1500
teleportAuto_deadly 1
teleportAuto_useSkill 1
teleportAuto_useChatCommand
teleportAuto_allPlayers 0
teleportAuto_notPlayers
teleportAuto_atkCount 0
teleportAuto_atkMiss 10
teleportAuto_unstuck 1
teleportAuto_lostTarget 0
teleportAuto_dropTarget 0
teleportAuto_dropTargetKS 0
teleportAuto_attackedWhenSitting 0
teleportAuto_totalDmg 0
teleportAuto_totalDmgInLock 0
teleportAuto_equip_leftAccessory
teleportAuto_equip_rightAccessory
teleportAuto_lostHomunculus
teleportAuto_useItemForRespawn

for attack and self skills
attackSkillSlot Mammonite {
lvl 10
dist 1.2
maxCastTime 2.5
minCastTime 1
hp
sp > 20%
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing
spirit
aggressives
previousDamage
stopWhenHit 0
inLockOnly 1
notInTown 0
timeout 0
disabled 0
monsters Dragon Tail, Pest, Spring Rabbit, Petite Ground, Ground Petite, Petite (Ground)
notMonsters
monstersCount
maxAttempts 5
maxUses 3
target_whenStatusActive
target_whenStatusInactive
target_deltaHp
inInventory
isSelfSkill 0
equip_topHead
equip_midHead
equip_lowHead
equip_leftHand
equip_rightHand
equip_leftAccessory
equip_rightAccessory
equip_robe
equip_armor
equip_shoes
equip_arrow
manualAI 0
}

and here

useSelf_skill Crazy Uproar {
lvl 1
maxCastTime 0
minCastTime 0
hp
sp > 10%
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive Crazy Uproar
whenFollowing
spirit
aggressives
monsters
notMonsters
monstersCount
stopWhenHit 0
inLockOnly 1
notWhileSitting 0
notInTown 0
timeout 0
disabled 0
inInventory
manualAI 0
}

useSelf_skill Aid Potion {
lvl 4
maxCastTime 0
minCastTime 0
hp < 40%
sp > 10%
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive
whenFollowing
spirit
aggressives
monsters
notMonsters
monstersCount
stopWhenHit 0
inLockOnly 1
notWhileSitting 0
notInTown 0
timeout 0
disabled 0
inInventory
manualAI 0
}



help!!! Im new here in iRO and the last time i used openkore was 6 or 7 years ago... please help me about this.. thanksss, by the way, the latest openkore here in this site http://collectskin.com/openkore/ is the one im using... thanks for d help in advance!
pl4y8oy
Human
Human
Posts: 48
Joined: 21 Dec 2012, 07:48
Noob?: Yes

Re: Stuck and console starts to flood "any work in progress etc"

#2 Post by pl4y8oy »

I had the same issue. Seem the "teleport window" is still opened and kore try to open again or use another skill.
the manual correction is to type:
warp cancel
did you change you timeout.txt configuration?
zerokel17
Noob
Noob
Posts: 4
Joined: 22 Jan 2013, 01:00
Noob?: Yes

Re: Stuck and console starts to flood "any work in progress etc"

#3 Post by zerokel17 »

I dont know how to configure d timeout.txt xD and where should i put the warp cancel? is it in config?
thanks!
pl4y8oy
Human
Human
Posts: 48
Joined: 21 Dec 2012, 07:48
Noob?: Yes

Re: Stuck and console starts to flood "any work in progress etc"

#4 Post by pl4y8oy »

"warp cancel" is only manual correction. you type it in your OpenKore window.

I haven't found a perfect configuration for this issue. what I did is to play around with:
http://www.openkore.com/index.php/Timeouts.txt

try to play around with ai_teleport

I changed to below value, but sometimes I still see the issue:

ai_teleport 0.5
ai_teleport_away 3
ai_teleport_idle 0.6
ai_teleport_portal 2
ai_teleport_hp 0.5
ai_teleport_retry 0.5
ai_teleport_delay 0.5


PS: this value depends on your connection speed, hence use with caution :)
handspoof
Plain Yogurt
Plain Yogurt
Posts: 59
Joined: 23 Dec 2012, 23:11
Noob?: Yes

Re: Stuck and console starts to flood "any work in progress etc"

#5 Post by handspoof »

how about this in config

doCommand warp cancel{
timeout xxx --> fill it yourself
}

works for me...
pl4y8oy
Human
Human
Posts: 48
Joined: 21 Dec 2012, 07:48
Noob?: Yes

Re: Stuck and console starts to flood "any work in progress etc"

#6 Post by pl4y8oy »

another workarund is to use automacro

Code: Select all

automacro cancelWarp {
        console /any work in progress.*/
        delay 2
        timeout 5
        call {
                do warp cancel
        }
}
kay
Human
Human
Posts: 20
Joined: 13 Jan 2013, 20:16
Noob?: Yes

Re: Stuck and console starts to flood "any work in progress etc"

#7 Post by kay »

pl4y8oy wrote:another workarund is to use automacro

Code: Select all

automacro cancelWarp {
        console /any work in progress.*/
        delay 2
        timeout 5
        call {
                do warp cancel
        }
}
how do you get this automacro to work?
pl4y8oy
Human
Human
Posts: 48
Joined: 21 Dec 2012, 07:48
Noob?: Yes

Re: Stuck and console starts to flood "any work in progress etc"

#8 Post by pl4y8oy »