Ogre Transmute

bbrown5

Active Member
as requested putting this in the, I hope, correct section

with the recent changes to Transmute ability the ogre script does not get all the transmutes

the spell has a 2 sec recast now and instant cast.. so it tries to cast when it is not ready and ends up missing those..


Sorry about puttng it in the wrong section
 

Hendrix

Well-Known Member
<Hendrix_Work> Kannkor: Ogre Transmute is broken
<Kannkor> I've heard.
<Kannkor> Busy doing more important things.
<Kannkor> You just have to run it more often atm.
 

Hendrix

Well-Known Member
Going by what you said, in Scripts/EQ2OgreCommon/OgreTransmute/EQ2OgreTransmute.iss change

Code:
function TransmuteIt(int ItemID)
{
	Transmuted:Set[TRUE]
	echo Transmuting.. ${Me.Inventory[id,${ItemID}].Name}.
	Me.Inventory[id,${ItemID}]:Transmute
	wait 20 ${Me.CastingSpell}
	while ${Me.CastingSpell}
		wait 5

	wait 5
}
into

Code:
function TransmuteIt(int ItemID)
{
	Transmuted:Set[TRUE]
	echo Transmuting.. ${Me.Inventory[id,${ItemID}].Name}.
	Me.Inventory[id,${ItemID}]:Transmute
	wait 25
}
 

Hendrix

Well-Known Member
I make no guarantees that it will work. I have never used it and am only going by what you said the problem was.
 
Top Bottom