Default Lock Style

Eorzea Time
 
 
 
Language: JP EN FR DE
users online
Forum » Windower » Support » default lock style
default lock style
Offline
Posts: 131
By starfish 2017-02-12 13:36:08
Link | Quote | Reply
 
hello, just wondering, is there any addon that lets you set default lock style once you change a job? i have 3 lua files for gear swap and they do a good job of putting my gear, swaping it when needed, and also setting the default macro to use. however, how do i let it set the default lockstyle?

thanks in advance!
 Shiva.Spynx
Offline
Server: Shiva
Game: FFXI
user: auron86
Posts: 371
By Shiva.Spynx 2017-02-12 18:16:35
Link | Quote | Reply
 
At the end of your user_setup function put this:
Code
send_command('wait 2; input /lockstyleset #')


Where # is the set number(or just replace with "/lockstyle on" if you don't care about the set but just want to enable it)
[+]
Offline
Posts: 131
By starfish 2017-02-13 14:12:36
Link | Quote | Reply
 
thanks !
 Asura.Thorva
Offline
Server: Asura
Game: FFXI
user: Thorva
By Asura.Thorva 2017-02-13 14:58:16
Link | Quote | Reply
 
Is there a way to automatically force the command in cases where you get gear stripped or by chance will this already apply?
necroskull Necro Bump Detected! [1524 days between previous and next post]
 Asura.Iamarealgirl
Offline
Server: Asura
Game: FFXI
user: Latravant
Posts: 79
By Asura.Iamarealgirl 2021-04-17 18:50:31
Link | Quote | Reply
 
any way to add this to my init.txt file so it automatically loads on each of my jobs?
 Fenrir.Jinxs
Offline
Server: Fenrir
Game: FFXI
user: Jinxs
Posts: 535
By Fenrir.Jinxs 2021-04-17 19:03:35
Link | Quote | Reply
 
Anything in init.txt might run to early, before you login.
input /lockstyleset #
You would need a delay and it only runs once.

Adding this to all your gearswaps:
send_command('wait 2; input /lockstyleset #')

Makes it run each time a gearswap file is "swapped" or reloaded.
 Asura.Iamarealgirl
Offline
Server: Asura
Game: FFXI
user: Latravant
Posts: 79
By Asura.Iamarealgirl 2021-04-17 19:14:52
Link | Quote | Reply
 
ok thanks