JA/Windower Script Question

Language: JP EN DE FR
New Items
2023-11-19
users online
Forum » FFXI » General » JA/Windower script question
JA/Windower script question
 Bahamut.Odaru
Offline
Server: Bahamut
Game: FFXI
By Bahamut.Odaru 2017-03-10 15:43:15
Link | Quote | Reply
 
I'm trying to create a script that will activate multiple JAs in succession while Tabula Rasa is active, but I can't get any abilities beyond the first in the script to activate. here's the script I'm attempting to use:

input /jobability "Penury" <me>;
input /wait 1
input /jobability "Celerity" <me>;
input /wait 1
input /jobability "Rapture" <me>;
input /wait 1
input /jobability "Accession" <me>;
input /wait 1
input /jobability "Perpetuance" <me>;

I've tried adjusting the wait times, removing the space between wait and 1, removing /input from the wait commands, and anything else that would seemingly make sense to me but I just can't get it to work. Any input/suggestions on how to fix this would be greatly appreciated.
 Fenrir.Nightfyre
Offline
Server: Fenrir
Game: FFXI
user: Nightfyre
Posts: 11680
By Fenrir.Nightfyre 2017-03-10 15:46:45
Link | Quote | Reply
 
input /jobability "Penury" <me>;
wait 1.3;
input /jobability "Celerity" <me>;
wait 1.3;
input /jobability "Rapture" <me>;
wait 1.3;
input /jobability "Accession" <me>;
wait 1.3;
input /jobability "Perpetuance" <me>;

In your existing script, Windower reads lines after the first like this:
input /wait 1input /jobability "Celerity" <me>;

Which is invalid and thus does nothing.

Adjust the decimal values as needed to avoid latency issues.
[+]
 Bismarck.Phaded
Offline
Server: Bismarck
Game: FFXI
user: Phaded
By Bismarck.Phaded 2017-03-10 15:47:27
Link | Quote | Reply
 
Use "pause 1" instead of "input /wait 1" .
 Bahamut.Odaru
Offline
Server: Bahamut
Game: FFXI
By Bahamut.Odaru 2017-03-10 16:18:43
Link | Quote | Reply
 
thanks, guys :D
Log in to post.