Toggle Plugin

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » Windower » General » toggle plugin
toggle plugin
Offline
Posts: 12
By yarnox 2021-02-08 00:12:52  
how would i toggle //sb visible in lua to delete key?

Got it ty!
 Bismarck.Xurion
Offline
サーバ: Bismarck
Game: FFXI
user: Xurion
Posts: 693
By Bismarck.Xurion 2021-02-08 13:03:30  
For anyone interested:
Code
//bind delete sb visible


However, the issue with the above is the delete key wont work when you try to delete characters in the chat entry. To get around this, use the percentage sign before the bind:
Code
//bind %delete sb visible


This prevents the bind from taking effect whilst chat entry is open.
[+]
Offline
Posts: 12
By yarnox 2021-02-08 15:37:22  
Good info thanks.

Another thing that has been bugging me.

Each job lua has their own f9-f12 mode (like acc/more acc/ mod/etc) designations.

I tried to change those to personalize my job lua, but it just didnt work.

-- Setup vars that are user-dependent. Can override this function in a sidecar file.
function user_setup()
state.OffenseMode:options('Normal', 'Acc', 'Mod')
state.HybridMode:options('Normal', 'Evasion', 'PDT')
state.RangedMode:options('Normal', 'Acc')
state.WeaponskillMode:options('Normal', 'Acc', 'Mod')
state.PhysicalDefenseMode:options('Evasion', 'PDT')


So when I changed the name in there there was no result. I'm guessing those designations point back to another like "mote.include" file or something.