Default Lock Style

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » Windower » Support » default lock style
default lock style
Offline
Posts: 131
By starfish 2017-02-12 13:36:08  
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
サーバ: Shiva
Game: FFXI
user: auron86
Posts: 371
By Shiva.Spynx 2017-02-12 18:16:35  
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  
thanks !
 Asura.Thorva
Offline
サーバ: Asura
Game: FFXI
user: Thorva
By Asura.Thorva 2017-02-13 14:58:16  
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
サーバ: Asura
Game: FFXI
user: Latravant
Posts: 79
By Asura.Iamarealgirl 2021-04-17 18:50:31  
any way to add this to my init.txt file so it automatically loads on each of my jobs?
 Fenrir.Jinxs
Offline
サーバ: Fenrir
Game: FFXI
user: Jinxs
Posts: 535
By Fenrir.Jinxs 2021-04-17 19:03:35  
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
サーバ: Asura
Game: FFXI
user: Latravant
Posts: 79
By Asura.Iamarealgirl 2021-04-17 19:14:52  
ok thanks