Is there some start up key or something im missing? i have both files in the data folder, , load lua and nothing happens, i tried the macros to see if maybe the hud just wasn't showing but nothing is working
Is there some start up key or something im missing? i have both files in the data folder, , load lua and nothing happens, i tried the macros to see if maybe the hud just wasn't showing but nothing is working
The HUD should show up by default. Maybe its out of your screen resolution.
Try changing the 1400 value and 200 value in the gearset file to both 0 and 0 and you should see the HUD in the TOP left corner. Then you can drag it around.
Code
hud_x_pos = 1400 --important to update these if you have a smaller screen
hud_y_pos = 200 --important to update these if you have a smaller screen
Let me know if that helps.
The LUAwont output things thta are in the HUD in the chat to avoid spam, but its possible the HUD is off screen if your FFXI resolution is smaller than the 1400 wide default setup I put in, that's why I added the value up there for you to change it for what works for you.
I don't know what you mean by not working, you say the lua is loading. There is only 2 file, it's working for everyone else. Do you have any errors in your console? Do you get the "Welcome back to your GEO.lua" message in your chat?
All you are saying is its not working, but you aren't helping me help you much here. I have not much to go on trying to figure out where your problem is.
I'm pretty sure that's not my Lua then. Unless you renamed the files. It's should just be named GEO.lua and you should be loading typing //gs load GEO.lua in your chat box.
You probably have some old luas in your data folder up there. Make a back up of your data folder and clean that stuff up. Its probably loading the wrong file on job change.
I'm pretty sure that's not my Lua then. Unless you renamed the files. It's should just be named GEO.lua and you should be loading typing //gs load GEO.lua in your chat box.
You probably have some old luas in your data folder up there. Make a back up of your data folder and clean that stuff up. Its probably loading the wrong file on job change.
i thought i could rename the geo gearsets lua, let me try it.
You need to add a precast set most importantly for impact. I was just making an example of the syntax with the midcast set. I guess I should have used the precast set for an example given that you need the precast set to equip the cloak for impact to work.
I found why the catch all isn't working for impact specifically. Blame it on me for not having a cloak... There was a bug with all Black Magic trying to be called by name were defaulting to regular black magic casting sets, which wouldn't work for impact likely unnoticed for normal nuking.
So you shouldn't need to add any rules to the functions now just adding the sets in the gearset files should work no problem. Let me know how it goes since I don't have the cloak to test it.
Something like this should work with the updated GEO.lua.
Hello and thank you for the amazing Gearswap. I am having a problem with the cycles though. Oddly enough GEOCycleDown is the only one that works, all the other three return an error in chat
From the looks of the error, it looks like you trying to use them in a macro, and you are missing the geo command argument.
i.e. It LOOKS LIKE your macro is "/console gs c indicyle" when it should be "/console gs c geo indicycle"
Are the default binds that comes in the _Gearsets file working?
Code
windower.send_command('bind home gs c geo geocycle') -- home Cycles Geomancy Spell
windower.send_command('bind end gs c geo geocycledown') -- end Cycles Geomancy Spell in reverse order
windower.send_command('bind PAGEUP gs c geo indicycle') -- PgUP Cycles IndiColure Spell
windower.send_command('bind PAGEDOWN gs c geo indicycledown') -- PgDown Cycles IndiColure Spell in reverse order
windower.send_command('bind f9 gs c toggle runspeed') -- F9 toggles locking on / off Herald's Gaiters
I copy pasted the macros as they were in the opening post. But the keybinds are working, so I swapped PageDown into the Element cycle, and have been able to use those. Actually I think I prefer those over the macros anyway, so I will just use those.
But thanks again for all the hard work I'm sure you put into this, this is awesome!
If the keybinds are working then it's definitely a case of the macro having a typo or missing stuff in the way the macro was written. Glad you're enjoying it though!
ive tried your gearswap but I cant get the hud to show up?
ive tried changing to pos of x and y to 0 like you suggested but it just doesn't appear when I re load gear swap?
any idea what the problem is? is there a command to get the hud to show? im playing on a laptop, ive tried random numbers as well as 0 btw
the gearswap has loaded because when I type /console gs c geo indi
Do you see any text in the chat log when you use one of the cycles function? If you do, that means the use_UI variable is either missing or set to false at the top of your gearset file.
That variable controls if the UI shows or not, it's set to default false in the GEO.lua but after it gets overwritten by the value set in your GEO_Gearsets.lua file. So it won't bug out of you accidentally snipped the variable.
You should have this just on top of where you set the positions:
use_UI = true