LUA And Raetic Algol +1 Problems

Eorzea Time
 
 
 
言語: JP EN FR DE
日本語版のFFXIVPRO利用したい場合は、上記の"JP"を設定して、又はjp.ffxivpro.comを直接に利用してもいいです
users online
フォーラム » FFXI » Jobs » Warrior » LUA and Raetic Algol +1 Problems
LUA and Raetic Algol +1 Problems
Offline
Posts: 126
By emerle 2018-03-19 19:16:04  
Crew,
Will anyone please share their working LUA that has Raetic Algol +1 as a weapon option? I have tried to add the logic to the one i currently have but i keep getting very buggy results even though it isn't detecting any problems.

Issues I am having are it wont switch to my PDT set, under certain conditions it will switch to ragnarok if I hit F10 for PDT set, etc.

Thanks.
 Bahamut.Ayasha
Offline
サーバ: Bahamut
Game: FFXI
user: Ayasha
Posts: 87
By Bahamut.Ayasha 2018-03-19 22:59:12  
Erm... it may be helpful if you posted your lua so we could see what it is you're talking about.
 Valefor.Presidente
Offline
サーバ: Valefor
Game: FFXI
user: stalkerz
Posts: 10
By Valefor.Presidente 2018-04-17 17:39:01  
mine says the same user file problem, '=' expected near 'Algol'

sets.engaged.Raetic Algol +1 = { } is how i started my set
 Valefor.Presidente
Offline
サーバ: Valefor
Game: FFXI
user: stalkerz
Posts: 10
By Valefor.Presidente 2018-04-17 17:43:11  
i think i solved the issue

sets.engaged.RaeticAlgol1.AccLow = set_combine(sets.engaged.RaeticAlgol1, { }

basically took out the spaces and the +
 Asura.Cair
VIP
Offline
サーバ: Asura
Game: FFXI
user: Minjo
Posts: 246
By Asura.Cair 2018-04-17 18:44:48  
A word before/after . may start with a letter or underscore, and may contain any combination of numbers, letters, and underscores, aka:

[A-Za-z_][A-Za-z0-9_]*

Valid:

a.a
a._a
a._9a

Not valid:

a. a
a.9
9.!@#@$%#$^$&*()-=

etc.

To include spaces or special characters, you use the [] accessor, which accepts any string. String in lua begin and end with " or ', eg:

a["hi"]
a['hi']
a[' i start with and contain spaces']
[+]