|
Random Thoughts.....What are you thinking?
Administrator
Server: Excalibur
Game: FFXIV
Posts: 688
By Idiot Boy 2016-04-16 21:43:23
Four days of tracking down a bug
Two characters to fix it
Programming is ***, let's go shopping
[Edit: paged!]
By Artemicion 2016-04-16 21:45:27
Four days of tracking down a bug
Two characters to fix it
Programming is ***, let's go shopping
Found out who Rooks moonlights as.
By SpaceAnomaly 2016-04-16 21:48:36
Whoever helps you should pick Oceanhorn. Really cute Zelda-esqe game.
[+]
By Faelar 2016-04-16 21:52:06
Whoever helps you should pick Oceanhorn. Really cute Zelda-esqe game.
It is. It's like Wind Waker, really. xD
My request is very BASIC for those who are good at lua. I've gone over this stuff for a few days now and it's still somewhat over my head despite my being able to do Spellcast back in the day. I've been told look at some example luas and was given what was called the most basic of basic luas, and it was like trying to translate Egyptian Hieroglyphics.
By Jetackuu 2016-04-16 21:53:41
OH SNAP. Got that in pdf? lolno, it is literally a functioning html page.
I do have the paper guide in PDF though, in fact I have them all (or at least most).
Pulled out my very worn out copy of FF9. There was a tip line! .99/min for the US and $1.50/min for Canada. Automated Tips onry If I scrolled more in my PDF I probably would have seen it. My physical copy is in storage.
Asura.Floppyseconds said: »Jet spilled his beans all over me.
Gross.
By Jetackuu 2016-04-16 21:54:39
Ragnarok.Hevans
Server: Ragnarok
Game: FFXI
Posts: 15,273
By Ragnarok.Hevans 2016-04-16 21:57:44
i prefer pescatore, but i like seafood ._.
Administrator
Server: Excalibur
Game: FFXIV
Posts: 688
By Idiot Boy 2016-04-16 21:59:15
Whoever helps you should pick Oceanhorn. Really cute Zelda-esqe game.
It is. It's like Wind Waker, really. xD
My request is very BASIC for those who are good at lua. I've gone over this stuff for a few days now and it's still somewhat over my head despite my being able to do Spellcast back in the day. I've been told look at some example luas and was given what was called the most basic of basic luas, and it was like trying to translate Egyptian Hieroglyphics.
I don't have time to delve into anything right now, but my Gearswap files (and their documentation) are here: https://github.com/kelhor/Gearswap
There's a bunch of documentation on that page that shows how to use it, so if this helps you, feel free. I need to upload my most recent files, but where's there will work.
tl,dr; use the Rooks-Include and you just have to define sets; job specific rules can be added but aren't needed to get started.
[+]
Administrator
Server: Excalibur
Game: FFXIV
Posts: 688
By Idiot Boy 2016-04-16 21:59:40
Just the enclosure? How much are the blades?
By SpaceAnomaly 2016-04-16 22:04:42
> tfw papa Rooks will never help you in FFXI

Why even live
[+]
By Jetackuu 2016-04-16 22:05:13
Just the enclosure? How much are the blades? Aye, and depending on the gen dirt cheap or really expensive (also depending on the config).
I really don't have the room for it right now, but I'll be getting one down the road.
By Faelar 2016-04-16 22:18:15
I don't have time to delve into anything right now, but my Gearswap files (and their documentation) are here: https://github.com/kelhor/Gearswap
There's a bunch of documentation on that page that shows how to use it, so if this helps you, feel free. I need to upload my most recent files, but where's there will work.
tl,dr; use the Rooks-Include and you just have to define sets; job specific rules can be added but aren't needed to get started.
Those look a bit complicated, though I might be overthinking it xD
I appreciate you sharing.
What I am trying to do is setup two "templates": one for mages and one for melee/DD jobs. This way, I can copy/paste the templates and just adjust gear for the jobs for myself and Aanja (my roommate) so we can not be those all-in-one set players once we have finished getting our Rhapsodies KI's. All of this stuff goes straight over her head. She looks at the first line and says "Nope! You figure it out!".
I know how to define basic sets so far. I can just copy/paste this into a new file and adjust it to suit another job as needed. My WHM lua should give you an example of my understanding thus far. (Which isn't much)
Code function get_sets()
-- This set will be equipped when idle
sets.Idle = {
main="Owleyes",
sub="Genbu's Shield",
ammo="Incantor Stone",
head="Orison Cap +2",
body="Orison Bliaud +2",
hands="Serpentes Cuffs",
legs="Orsn. Pantaln. +2",
feet="Serpentes Sabots",
waist="Cleric's Belt",
neck="Twilight Torque",
left_ear="Loquac. Earring",
right_ear="Orison Earring",
left_ring="Omega Ring",
right_ring="Sirona's Ring",
}
-- This set will be equipped before magic is cast
sets.FastCast = {
ammo="Incantor Stone",
head="Walahra Turban",
body="Goliard Saio",
hands="Blessed Mitts",
legs="Blessed Trousers",
feet="Orsn. Duckbills +2",
waist="Austerity Belt",
neck="Orison Locket",
left_ear="Loquac. Earring",
right_ear="Orison Earring",
left_ring="Omega Ring",
right_ring="Sirona's Ring",
}
-- This set will be equipped before healing magic is cast
sets.Cure = {
main="Tefnut Wand",
sub="Genbu's Shield",
ammo="Incantor Stone",
head="Orison Cap +2",
body="Facio Bliaut",
hands="Augur's Gloves",
legs="Orsn. Pantaln. +2",
feet="Orsn. Duckbills +2",
waist="Austerity Belt",
neck="Orison Locket",
left_ear="Roundel Earring",
right_ear="Orison Earring",
left_ring="Omega Ring",
right_ring="Sirona's Ring",
}
end
function precast(spell)
if spell.prefix == '/magic' then
-- Magic precast
equip(sets.FastCast)
end
end
function midcast(spell)
if string.find(spell.english,"Cure") or string.find(spell.english,"Cura") then
-- Magic Usage
equip(sets.Cure)
end
end
function aftercast(spell)
if player.status=='Idle' then
equip(sets.Idle)
end
end
This lua does what I want it to:
Idle set when doing nothing
Cure set when casting Cure/Cura/Curagas
Pre-Cast set on all other spells
For my DD template, I'm looking for:
This is all I need for the moment, until I actually get this stuff to *click* completely. It'll take a bit more time, but I want us both to be somewhat useable on our 3 chosen jobs while I learn it so I was hoping to get a barebones set of files setup for us both.
Server: Valefor
Game: FFXI
Posts: 19,647
By Valefor.Prothescar 2016-04-16 22:26:26
By Faelar 2016-04-16 23:05:21
Server: Bismarck
Game: FFXI
Posts: 33,979
By Bismarck.Dracondria 2016-04-16 23:08:58
That font <_<
Ragnarok.Hevans
Server: Ragnarok
Game: FFXI
Posts: 15,273
By Ragnarok.Hevans 2016-04-16 23:10:41
Valefor.Prothescar said: »
what sword?
Server: Excalibur
Game: FFXIV
Posts: 6,427
By Grumpy Cat 2016-04-16 23:19:59
Valefor.Prothescar said: »
Boobs.
I mean, what game is that?
[+]
By Jetackuu 2016-04-16 23:43:30
Bismarck.Dracondria said: »That font <_< What's wrong with the font?
Server: Bismarck
Game: FFXI
Posts: 33,979
By Bismarck.Dracondria 2016-04-16 23:51:37
It's wrong!
Server: Valefor
Game: FFXI
Posts: 19,647
By Valefor.Prothescar 2016-04-16 23:53:45
just a basic primal sword, but it looks fancy as fuq
Boobs.
I mean, what game is that?
blade & soul
Asura.Vyre
Forum Moderator
Server: Asura
Game: FFXI
Posts: 16,263
By Asura.Vyre 2016-04-17 00:38:57
Valefor.Prothescar said: »
just a basic primal sword, but it looks fancy as fuq
Boobs.
I mean, what game is that?
boobs & soul ftfy
[+]
[+]
Server: Bismarck
Game: FFXI
Posts: 33,979
By Bismarck.Dracondria 2016-04-17 02:17:16
7.8 earthquake in Ecuador has killed at least 77 so far
Ragnarok.Hevans
Server: Ragnarok
Game: FFXI
Posts: 15,273
By Ragnarok.Hevans 2016-04-17 02:19:09
[+]
[+]
Bismarck.Zuidar
Server: Bismarck
Game: FFXI
Posts: 1,280
By Bismarck.Zuidar 2016-04-17 04:14:44
add some hot garlic sausage, /toss out the cheese and the spaghetti is so freakin good (with some more sauce)
This is a thread that I found on another website I post at. It can be really really interesting. I thought it deserved a place here.
Post your random thoughts for the day here, or anything else that intrigues you.
For starters, is it possible to give constructive critism to someone who doesn't have a neck? I totally just walked by a girl who didn't. Someone isn't getting a necklace for Valentines day!
And who decided black and white can't be colors? I want to say a racist. I really do.
Inb4thisthreadgetsreallywtf
|
|