Probably Bot don't see masters's status

International

Moderator: Moderators

Message
Author
Sugui
Noob
Noob
Posts: 10
Joined: 10 Dec 2016, 00:13
Noob?: No

Probably Bot don't see masters's status

#1 Post by Sugui »

Hi! English isn't native for me, so im apologise if my solution exists on this forum.
Im use bot for iRo chaos server on win 8.1 in console mode. I have downloaded it from GitHub right now. I was set bot to walking behind me, no looting, no attacking, and buff himself. And he doing these things pretty good. But he(she actually) dont want to buff master character.
I was tried the code like:

Code: Select all

party_skill Kyrie Eleison {
	lvl 10
	sp > 35
	target MyName
	target_whenStatusInactive Kyrie Eleison
	stopWhenHit 1
	notInTown 1
}

party_skill Blessing {
	lvl 10
	sp > 64
	target MyName
	target_whenStatusInactive Blessing
	notInTown 1
	timeout 5
}
But it was useless, he buffs himself and dont buff me. Also I was tried similar code, but without target field. And also I was tried to use status IDs like EFST_STATUSNAME from statusnametable.txt
Also I sight if masters status changes (blessing cancelled for example) i dont see this in my console. I see status change in console only if its status of bot. Please help me with this issue.

Sugui
Noob
Noob
Posts: 10
Joined: 10 Dec 2016, 00:13
Noob?: No

Re: Probably Bot don't see masters's status

#2 Post by Sugui »

I've found error: its wrong syntax :-) Copy-pasting from old forums useful not every time. The right syntax is something like:

Code: Select all

partySkill Kyrie Eleison {
	lvl 10
	sp > 35
	target F.P.
	target_whenStatusInactive Kyrie Eleison
	stopWhenHit 1
	notInTown 1
}

partySkill Blessing {
	lvl 10
	sp > 64
	target F.P.
	target_whenStatusInactive Blessing
	notInTown 1
	timeout 5
}

Post Reply