Small Script request

Jdnwaco

Active Member
I play a cleric and my conjuration SUCKS! Very few conjuration spells early on and they all have a cooldown on them. I now have Divine Chains which is a root with no cool down, but needless to say it is always resisted because of my very low conjuration skill.

Is it possible to write a very small script that does nothing but spam Root over and over on a target? So I could set it to cast on a very low lvl mob and raise my skill, or duel a friend who also uses ISXVG and just chain cast root?

Any help with this would be appreciated.
 

Amadeus

The Maestro
Staff member
Actually...better would be this:

Code:
function main()
{
    do
    {
        Me.Ability[Spell Name Here]:Use
        do
        {
            wait 2
        }
        while (${Me.Casting.Length} > 0)
    }
    while ${ISXVG(exists)}
}
 

tangeleno

Active Member
This is what I used when My alteration was low

Code:
variable string Spell="Spell Name Here"
variable int SkillMax=${Math.Calc[${Me.Level}*10]}

function main()
{
	while ${Me.Stat[Adventuring,${Me.Ability[${Spell}].School}]} < ${SkillMax} && ${ISXVG(exists)}
	{
		if !${Me.Target(exists)}
		{
			Pawn[AggroNPC,radius,20,levels,1,6]:Target
			waitframe
			Me.Target:Face
			waitframe
		}
		Me.Ability[${Spell}]:Use
		wait 5
		wait 600 ${Me.Ability[${Spell}].IsReady}
	}
}
 

Jdnwaco

Active Member
Well score some extra points Eris and tell me how to end the script ! :p I have it running fine but how do I cut it off or cancel it other than exiting the game?
 
Top Bottom