Windower Macros

Language: JP EN DE FR
New Items
2025-06-12
users online
Forum » Everything Else » Tech Support » windower macros
windower macros
 Shiva.Spathaian
Offline
Server: Shiva
Game: FFXI
user: Spathaian
Posts: 27,982
By Shiva.Spathaian 2011-01-17 19:33:44
Link | Quote | Reply
 
Well then Objective Complete guys your celebratory cookies are in the mail.
 Carbuncle.Scarmiglione
Offline
Server: Carbuncle
Game: FFXI
Posts: 481
By Carbuncle.Scarmiglione 2011-01-17 19:38:42
Link | Quote | Reply
 
wow, thank you everyone, i did not think this was going to work at all. you have my gratitude.
necroskull Necro Bump Detected! [89 days between previous and next post]
 Leviathan.Eloc
Offline
Server: Leviathan
Game: FFXI
user: Eloc
Posts: 55
By Leviathan.Eloc 2011-04-16 13:27:50
Link | Quote | Reply
 
I would love to know how you fixed this, as I am having sort of the same issue.

//exec filename.txt
/console exec filename.txt

Both result in "Could not execute 1 filename.txt - File was not found. -2"

However, I can load the init.txt file the same way. Both files are in the Scripts Folder...

EDIT: Running Windows XP 32 Bit
necroskull Necro Bump Detected! [273 days between previous and next post]
Offline
Posts: 1,285
By mortontony1 2012-01-14 18:05:48
Link | Quote | Reply
 
This nothing directly related to this current topic, just didn't want to make a new topic. I wanted to know if there was a way to make spellcast/windower turn off my sneak/invis as I'm doing spectral jig? I see the little snkea/invis warning at the bottom and I usually just reflexively hit my macro, causing me to have to wait another 30 seconds before casting again.
 Siren.Kalilla
VIP
Offline
Server: Siren
Game: FFXI
user: Kalila
Posts: 14,552
By Siren.Kalilla 2012-01-14 18:19:04
Link | Quote | Reply
 
You'll want to use the cancel plugin morton, and you can make spellcast do this.

Download: http://forums.windower.net/files/file/30-cancel/
Download (Optional): http://code.google.com/p/polutils/downloads/list

Use POLUtils to look up the most recent Buff ID's even after an update. For those who do not wish to spend a few minutes doing that, I've posted the complete list at the bottom of this post.

Part 1 IDs: 0-248
Part 2 IDs: 249-511

Spellcast + Cancel = Spellcancel
With the addition of the cancel plugin to the windower plugin repertoire, some FFXI annoyances can now be fixed by use of SpellCast.
You must have the Cancel plugin loaded in order for these to in fact cancel your buffs. Canceling buffs is not a SpellCast feature itself.

WARNING: The delays used in the following examples have been tested to work in a lag free area. You should test and adjust the delays accordingly for yourself. Anything from lag to planet alignment could delay the canceling to be too late if delay is not set short enough. These suggested delays do not consider equipment that enhances fastcast.

Translation: Be prepared for a misfire of cancel activating too late. These rules are here as a starting point, not a guarantee.

Casting Utsusemi: Ichi does not override Utsusemi: Ni if shadows still remain. If we use Cancel for buff id 66 we can auto-cancel the remaining shadows. Note: Ichi over Ni is the only case this is needed for.
Code xml
<!-- Rule for auto-canceling of shadows during Utsusemi: Ichi cast-->
<if spell="Utsusemi: Ichi">
    <equip when="precast" set="Evasion" />
    <!--Utsusemi:Ichi cast time is 4 sec-->
    <!--This may be conservative and it may not always be enough. I have seen delay 3 work-->
    <!--Find a delay value that YOU are comfortable relying upon-->
    <midcastdelay delay="2.5" />
    <!--Cancel currently active shadows(Buff_Id 66). Technically only need for Ni to Ichi, but no way to tell-->
    <command when="midcast">cancel 66</command>
</if>

Casting Sneak does not override Sneak. If we use Cancel for buff id 71 we can auto-cancel Sneak before the new cast takes effect.
NOTE: The following code does not differentiate between self casting and casting on others. Currently SpellCast is unable to tell who you have targeted with <t>, so this is setup to only work on <me>.
Code xml
<!-- Rule for auto-canceling of sneak for sneak recasting-->
<if spell="Sneak" BuffActive="Sneak" advanced='"%target"="<me>"'>>
    <!--Alternatively you can use precast for this if you don't want to worry about canceling too late-->
    <midcastdelay delay="2.5" />
    <!--Cancel currently active sneak-->
    <command when="MidCast">cancel 71</command>
</if>

Casting Stoneskin does not override Stoneskin. If we use Cancel for buff id 37 we can auto-cancel Stoneskin before the new cast takes effect.
Code xml
<!-- Rule for auto-canceling of stoneskin for recasting-->
<if spell="Stoneskin">
    <!--A delay of 6.5 worked fine on my whm, so atleast .5 sec buffer-->
    <midcastdelay delay="6" />
    <!--Cancel currently active stoneskin-->
    <command when="MidCast">cancel 37</command>
</if>

Using Spectral Jig does not override Sneak. As a result, the entire effect fails, even Invisible! Since Invisible is removed by using Spectral Jig, we only need to cancel Sneak.
Code xml
<!-- Rule for auto-canceling Sneak for Spectral Jig-->
<if spell="Spectral Jig">
    <!--CastDelay isn't necessary here, because the commands are sent in the proper order to the server - cancel sneak,
 then use jig-->
    <command when="PreCast">cancel 71</command>
</if>
 Siren.Kalilla
VIP
Offline
Server: Siren
Game: FFXI
user: Kalila
Posts: 14,552
By Siren.Kalilla 2012-01-14 18:37:51
Link | Quote | Reply
 
Buff ID List
 Siren.Kalilla
VIP
Offline
Server: Siren
Game: FFXI
user: Kalila
Posts: 14,552
By Siren.Kalilla 2012-01-14 18:38:46
Link | Quote | Reply
 
Buff ID List
 Fenrir.Leoheart
Offline
Server: Fenrir
Game: FFXI
user: Leoheart
Posts: 3,012
By Fenrir.Leoheart 2012-01-14 18:41:20
Link | Quote | Reply
 
Totally making a debug rule for my if debug active build >.>;
[+]
Offline
Posts: 1,285
By mortontony1 2012-01-15 01:49:19
Link | Quote | Reply
 
Oh my god Kalilla thank you so much for that I appreciate it so incredibly much!
 Siren.Kalilla
VIP
Offline
Server: Siren
Game: FFXI
user: Kalila
Posts: 14,552
By Siren.Kalilla 2012-01-15 15:23:59
Link | Quote | Reply
 
glad it helped :)
Log in to post.