Ask Sash

Language: JP EN DE FR
New Items
2023-11-19
users online
Forum » FFXI » Jobs » Monk » Ask Sash
Ask Sash
First Page 2
 Asura.Phinneus
Offline
Server: Asura
Game: FFXI
user: ayer
Posts: 23
By Asura.Phinneus 2020-01-24 20:43:33
Link | Quote | Reply
 
I saw the post on the iPunch Monk Guide about some code used to lock in Ask Sash, but it's not working for me. I'm using Selindrile's lua. Just wondering if anyone else has any updated code.
[+]
 Asura.Phinneus
Offline
Server: Asura
Game: FFXI
user: ayer
Posts: 23
By Asura.Phinneus 2020-01-24 21:16:04
Link | Quote | Reply
 
got it working. never mind.
Offline
Posts: 514
By Aerison 2020-01-24 21:18:51
Link | Quote | Reply
 
awwwyisss, here we go.
Online
Posts: 38
By gunn 2020-01-24 21:30:42
Link | Quote | Reply
 
Never mind found it!
[+]
 Odin.Llewelyn
Offline
Server: Odin
Game: FFXI
user: Llewelyn
Posts: 2254
By Odin.Llewelyn 2020-01-24 22:02:13
Link | Quote | Reply
 
[+]
 Carbuncle.Ziekwalt
Offline
Server: Carbuncle
Game: FFXI
user: Eirza
Posts: 86
By Carbuncle.Ziekwalt 2020-01-25 01:38:16
Link | Quote | Reply
 
Whats this code actually do?
Offline
Posts: 12227
By Pantafernando 2020-01-25 02:05:34
Link | Quote | Reply
 
And I was hoping for Ash's Q&A session...
 Bismarck.Mcdougall
Offline
Server: Bismarck
Game: FFXI
user: Mcdougall
Posts: 11
By Bismarck.Mcdougall 2020-01-25 02:52:11
Link | Quote | Reply
 
Carbuncle.Ziekwalt said: »
Whats this code actually do?

https://www.ffxiah.com/item/26353/ask-sash
 Lakshmi.Buukki
Offline
Server: Lakshmi
Game: FFXI
By Lakshmi.Buukki 2020-01-25 10:07:56
Link | Quote | Reply
 
gunn said: »
Never mind found it!
Best thread ever.
[+]
 Odin.Willster
Offline
Server: Odin
Game: FFXI
user: tallica
Posts: 138
By Odin.Willster 2020-01-25 13:07:42
Link | Quote | Reply
 
Carbuncle.Ziekwalt said: »
Whats this code actually do?
I'm lost too
 Lakshmi.Buukki
Offline
Server: Lakshmi
Game: FFXI
By Lakshmi.Buukki 2020-01-25 14:15:12
Link | Quote | Reply
 
Ask Sash gives MNK a Regain effect while Boost is active. The code is keeps the sash in your set while boost is active, and swap it out when it's not, so you get the full regain effect (you lose regain once the sash is de-equipped)
 Carbuncle.Ziekwalt
Offline
Server: Carbuncle
Game: FFXI
user: Eirza
Posts: 86
By Carbuncle.Ziekwalt 2020-01-25 18:43:11
Link | Quote | Reply
 
Bismarck.Mcdougall said: »
Carbuncle.Ziekwalt said: »
Whats this code actually do?

https://www.ffxiah.com/item/26353/ask-sash
This doesn't tell me what the CODE does period.
Offline
Posts: 665
By kishr 2020-01-25 21:07:28
Link | Quote | Reply
 
//gs disable waist
 Asura.Phinneus
Offline
Server: Asura
Game: FFXI
user: ayer
Posts: 23
By Asura.Phinneus 2020-01-25 22:01:28
Link | Quote | Reply
 
kishr said: »
//gs disable waist
yes, that works, but i wanted to have it automatically enable waist once boost wore off.
 Asura.Barone
Offline
Server: Asura
Game: FFXI
user: Barone
Posts: 32
By Asura.Barone 2020-01-26 04:00:46
Link | Quote | Reply
 
if buff == "Boost" then
if gain then
equip(waist="Ask Sash")
disable('waist')
else
enable('waist')
handle_equipping_gear(player.status)
end

Probably

Edit..
Or;
if buffactive['Boost'] then
equip(waist="Ask Sash")
else handle_equipping_gear(player.status)
end
Offline
Posts: 35422
By fonewear 2020-01-27 17:48:45
Link | Quote | Reply
 
Is monk great now that it has this belt ?
[+]
 Asura.Eiryl
Offline
Server: Asura
Game: FFXI
user: Eiryl
By Asura.Eiryl 2020-01-27 17:49:51
Link | Quote | Reply
 
It's actually to STOP the belt from moving because of all the automation... kind of ironic.

and you edited your post, I dont care, I'm leaving it
Offline
Posts: 35422
By fonewear 2020-01-27 17:51:23
Link | Quote | Reply
 
Asura.Eiryl said: »
It's actually to STOP the belt from moving because of all the automation... kind of ironic.

and you edited your post, I dont care, I'm leaving it

Thank you for being an *** on the internet. We need more of them !
Offline
By Nekseus 2020-01-27 17:58:15
Link | Quote | Reply
 
Asura.Phinneus said: »
I'm using Selindrile's lua

there's your problem (sorry sel)

edit: ftr

as if gearswap isnt overly written and a bit of a clusterfuck already. mote's system needed to die not turned into a maze of code that would make him shun.
 Phoenix.Oyama
Offline
Server: Phoenix
Game: FFXI
user: oyama
Posts: 103
By Phoenix.Oyama 2020-01-27 19:41:22
Link | Quote | Reply
 
Hopefully that new series encourages and enables players to start writing their own. It really doesn't take very much to get a good and simple one working.
Offline
By Nekseus 2020-01-27 20:14:41
Link | Quote | Reply
 
no it doesnt. gearswap user files use pretty simple lua for the most part. a lot of custom fuctions that circulate are written in a way that is inefficient, dated, or unnecessary. never mind most of all those "rule" functions in most peoples files arent even used or understood by the user anyways...


then theres the subject of all the stuff people write in gearswap that doesnt belong in gearswap. lol
Offline
Posts: 8
By zinonffxi 2020-01-28 12:14:02
Link | Quote | Reply
 
hey dude, can u pls explain more like, where in lua mnk exactly set this command?
thanks
best regards.
 Quetzalcoatl.Xilkk
Offline
Server: Quetzalcoatl
Game: FFXI
user: Xilk
Posts: 1403
By Quetzalcoatl.Xilkk 2020-01-28 13:15:27
Link | Quote | Reply
 
Nekseus said: »
no it doesnt. gearswap user files use pretty simple lua for the most part. a lot of custom fuctions that circulate are written in a way that is inefficient, dated, or unnecessary. never mind most of all those "rule" functions in most peoples files arent even used or understood by the user anyways...


then theres the subject of all the stuff people write in gearswap that doesnt belong in gearswap. lol
lots of trash talk
no substance
 Phoenix.Oyama
Offline
Server: Phoenix
Game: FFXI
user: oyama
Posts: 103
By Phoenix.Oyama 2020-01-28 13:40:08
Link | Quote | Reply
 
I'll put up a pastebin of my MNK lua when I get home. Pretty simple and straightforward for the most part, includes the Ask Sash logic I showed in the other thread.
Offline
Posts: 8
By zinonffxi 2020-01-29 12:28:57
Link | Quote | Reply
 
hey bro. did u test boost included ask sash yet?
pls keep us posted, and if it worked mind show us how we edit the lua.
thanks
best regards.
 Phoenix.Oyama
Offline
Server: Phoenix
Game: FFXI
user: oyama
Posts: 103
By Phoenix.Oyama 2020-01-31 10:02:52
Link | Quote | Reply
 
https://pastebin.com/BEMxPpLy
[+]
necroskull Necro Bump Detected! [194 days between previous and next post]
 Ragnarok.Galiber
Offline
Server: Ragnarok
Game: FFXI
user: Galiber
Posts: 228
By Ragnarok.Galiber 2020-08-12 08:03:46
Link | Quote | Reply
 
Guys honestly I'm a scrub and I can't get the ask sash to stay locked with GS.

I don't know how I got the impetus thing working, but can't seem to do the same with boost and ask sash.

Mind sharing your pieces of code in the MNK.lua and if I eventually have to do something in globals or whatever?

Thanks.

Much love,
Scrub.
 Ragnarok.Soyven
Offline
Server: Ragnarok
Game: FFXI
user: Soyven
Posts: 86
By Ragnarok.Soyven 2020-08-12 09:35:04
Link | Quote | Reply
 
I'm honestly surprised the code isnt in this thread already, might be the ipunch guide somewhere but thatd be a hard find lol. If my GS wasnt so different I'd just post mine (also at work)
Offline
Posts: 813
By Seun 2020-08-12 10:16:04
Link | Quote | Reply
 
Sorry if the formatting comes out poorly, my code is pretty sloppy.

Declare a set with the sash. You can call it whatever you wish, just be sure the above set matches the code in the function below...
Code
sets.YourAskSashSetname  =  {waist="Ask Sash"}



Code
function job_buff_change(buff, gain)
    if buff == 'Boost' then
        if gain then
            equip(sets.YourAskSashSetname)
            disable('waist')
        else
            enable('waist')
        end
    end
end 


If you already have the same function to control your body for Impetus, you can nestle this part into that. Copy from "if buff ==" to "end" and paste that into the function you might already have.

Hope that works
First Page 2
Log in to post.