AzzyAI Silent Breeze Autoheal - Homunculus Headquarters - WarpPortal Community Forums

Jump to content


Photo
- - - - -

AzzyAI Silent Breeze Autoheal


  • Please log in to reply
4 replies to this topic

#1 ROCKheir

ROCKheir

    Too Legit To Quit

  • Members
  • 1488 posts
  • Locationhttps://www.artstation.com/rockheir
  • Playing:Nothing

Posted 06 October 2017 - 07:55 PM

Eira doesn't autoheal owner with Silent Breeze even when AzzyAI setup is configured for her to do so ("HealOwnerBreeze: enabled";"HealOwnerHP: 50"; "UseAutoHeal: Always"; "EiraSilentBreezeLevel: 5"; "UseEiraSilentBreeze: True".

 

Eira (Lv148) has max level Silent Breeze and Owner (Lv99) wears Peerless (Marduk-carded) Headgear. Is AzzyAI's Silent Breeze autoheal just bugged or something or is it just impossible for Eira to autoheal like Vanilmirth?


Edited by ROCKheir, 06 October 2017 - 07:58 PM.

  • 0

#2 renouille

renouille

    Too Legit To Quit

  • Public Security Section 9
  • 2448 posts
  • LocationUS
  • Playing:Ragnarok Online
  • Server:retired

Posted 06 October 2017 - 09:22 PM

AzzyUtil.lua

search for:
			if homuntype == EIRA and HealOwnerBreeze == 1 then --Handling for Eira silent breeze
change to:
			if htype == EIRA and HealOwnerBreeze == 1 then --Handling for Eira silent breeze

  • 0

#3 ROCKheir

ROCKheir

    Too Legit To Quit

  • Members
  • 1488 posts
  • Locationhttps://www.artstation.com/rockheir
  • Playing:Nothing

Posted 06 October 2017 - 11:15 PM

AzzyUtil.lua

search for:

			if homuntype == EIRA and HealOwnerBreeze == 1 then --Handling for Eira silent breeze
change to:
			if htype == EIRA and HealOwnerBreeze == 1 then --Handling for Eira silent breeze

Done as instructed; however, this is what pops up when Eira is summoned: "./AI/USER_AI/AzzyUtil.lua:2331: attempt to compare number with nil" 
 


  • 0

#4 renouille

renouille

    Too Legit To Quit

  • Public Security Section 9
  • 2448 posts
  • LocationUS
  • Playing:Ragnarok Online
  • Server:retired

Posted 06 October 2017 - 11:27 PM

Looks like fixing one bug exposed another. I believe the best fix would probably be to replace this section:
			if homuntype == EIRA and HealOwnerBreeze == 1 then --Handling for Eira silent breeze
				skill=MH_SILENT_BREEZE
				if GetTick() < AutoSkillCooldown[skill] then
					level=0
				else
					level=5
				end
				return skill,level
			end
with:
			if htype == EIRA and HealOwnerBreeze == 1 then --Handling for Eira silent breeze
				return MH_SILENT_BREEZE,5
			end

  • 1

#5 ROCKheir

ROCKheir

    Too Legit To Quit

  • Members
  • 1488 posts
  • Locationhttps://www.artstation.com/rockheir
  • Playing:Nothing

Posted 06 October 2017 - 11:32 PM

Looks like fixing one bug exposed another. I believe the best fix would probably be to replace this section:

			if homuntype == EIRA and HealOwnerBreeze == 1 then --Handling for Eira silent breeze
				skill=MH_SILENT_BREEZE
				if GetTick() < AutoSkillCooldown[skill] then
					level=0
				else
					level=5
				end
				return skill,level
			end
with:
			if htype == EIRA and HealOwnerBreeze == 1 then --Handling for Eira silent breeze
				return MH_SILENT_BREEZE,5
			end

Ow thanks! That worked! ^^


  • 0




0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users