Healing Skillup Script SCH/RDM

Eorzea Time
 
 
 
Language: JP EN FR DE
Version 3.1
New Items
users online
Forum » Windower » Spellcast Scripting » Scholar » Healing skillup script SCH/RDM
Healing skillup script SCH/RDM
Offline
Posts: 25
By Checkmeout 2013-01-24 11:48:11
Link | Quote | Reply
 
Kind of new to windower/spellcast and still getting use to using and making scripts... wanted to know if someone could help me with a simple healing skillup script for SCH/RDM that loops...?
 Bismarck.Zagen
Offline
Server: Bismarck
Game: FFXI
user: Zagen
Posts: 395
By Bismarck.Zagen 2013-01-24 13:51:32
Link | Quote | Reply
 
Code
<rules>
        <if spell="Cure">
            <if NotBuffActive="Refresh">
                <command>wait 9; input /ma "Refresh" <me></command>
                <command>wait 18; input /ma "Cure" <me></command>
            </if>
            <elseif BuffActive="Refresh">
                <command>wait 9; input /ma "Cure" <me></command>
            </elseif>
        </if>     
</rules>


The times might need to be adjusted based on your gear but that'll do it. Oh also the < before "me" is supposed to be &lt ; and the > after "me" is supposed to be $gt ; (remove the spaces between the t and ;) but the forum doesn't display them unprocessed .
Offline
Posts: 25
By Checkmeout 2013-01-25 09:44:43
Link | Quote | Reply
 
Bismarck.Zagen said: »
Code
<rules>
        <if spell="Cure">
            <if NotBuffActive="Refresh">
                <command>wait 9; input /ma "Refresh" <me></command>
                <command>wait 18; input /ma "Cure" <me></command>
            </if>
            <elseif BuffActive="Refresh">
                <command>wait 9; input /ma "Cure" <me></command>
            </elseif>
        </if>     
</rules>


The times might need to be adjusted based on your gear but that'll do it. Oh also the < before "me" is supposed to be &lt ; and the > after "me" is supposed to be $gt ; (remove the spaces between the t and ;) but the forum doesn't display them unprocessed .


thanks.
Offline
Posts: 25
By Checkmeout 2013-01-26 16:36:43
Link | Quote | Reply
 
Checkmeout said: »
Bismarck.Zagen said: »
Code
<rules>
        <if spell="Cure">
            <if NotBuffActive="Refresh">
                <command>wait 9; input /ma "Refresh" <me></command>
                <command>wait 18; input /ma "Cure" <me></command>
            </if>
            <elseif BuffActive="Refresh">
                <command>wait 9; input /ma "Cure" <me></command>
            </elseif>
        </if>     
</rules>


The times might need to be adjusted based on your gear but that'll do it. Oh also the < before "me" is supposed to be &lt ; and the > after "me" is supposed to be $gt ; (remove the spaces between the t and ;) but the forum doesn't display them unprocessed .


thanks.

it keeps giving me a command error
 Bismarck.Zagen
Offline
Server: Bismarck
Game: FFXI
user: Zagen
Posts: 395
By Bismarck.Zagen 2013-01-28 13:20:47
Link | Quote | Reply
 
Checkmeout said: »
it keeps giving me a command error
What's the error?