I'm not having any luck doing this. I tried adding a ShieldMode and the sets but then I just get errors. Anyone able to show me what I need to put in? =/
I'm not having any luck doing this. I tried adding a ShieldMode and the sets but then I just get errors. Anyone able to show me what I need to put in? =/
You'd need to give us some info like are you usin Motes thingies? if not post your file on pastebin and linkie here. I know how to make a simple toggle for shields as I have that myself but all mine are self created files. Motes are way overboard than what I need personally so someone else would have to help you with that.
Ok. Yes, it uses Mote's thingies.^^ It's from Kinematics gearswap page. Could I possibly take a look at your gs, Trumpy?
Is there a way to list the jobs of your party members? Trying to add a hint if a rdm is in the party, haste is haste2.
Is there a way to have gear swap detect you have hit a certain point of HP left? like if i wanted to have it equip Damage taken gear when I hit 50% HP or cure effect gear. I know how to do it if I have done another action like magic or JA but between those times that wont help. Other than autoexec?
Where can i find info about event control that a total noob might understand it?
http://dev.windower.net/doku.php?id=...i:events:start
the events are
hp change
hpp change
incoming chunk
prerender
postrender
OK thanks Dlsmd! Think I got it doin what I wants it to!
If I'm using motes, how might I get my lua to equip a piece of gear for a single spell? Like say I want to equip Gishdubar Sash when I refresh?
sets.midcast.Refresh ={head="Amalric Coif",back="Grapevine Cape",waist="Gishdubar Sash"}
I wanted to ask for help with my moonshade rule putting on the ishvara earing regardless of my TP threshold and not the moonshade below 2800, but everytime I try to post just that line with or without code tags it says I am blocked for trying attack the site lol.
are you using the [ CODE][/ CODE] tags?
it happens with those tags as well
for instance i cant post this http://pastebin.com/76x8pQmN and im not sure why
I figured I would have to do that too :/
http://pastebin.com/JWWXAYCi
So the issue im having is my moonshade rule always puts on ishvara regardless of wanting moonshade on before 2750.
The other is casting any enhancing magic is putting on the .battery set for amalric +1 effect and any other enhancing magic is using the same set instead of the enhancing skill set.
Those are basic things. I imagine I will never be able to do what I want with mdt and pdt sets to get them out of the tp toggle if I can't get this stuff right.
EDIT: Now my CDC is equipping my batterycharge set too. wtf? Figured WS damage was weird, and then i put show swaps on and... yeah... I don't WS in amalric coif and carmine greaves.![]()
first battery you cant do this
because 'Refresh' will always be true do thisCode:if spell.english == 'Battery Charge' or 'Refresh' then equipSet = equip(sets.BlueMagic.Battery) elseif spell.skill == 'Enhancing Magic' then equipSet = equip(sets.Enhancing) end
as for moonshade issue im betting its for Expiacion (i hope im correct)Code:if spell.english == 'Battery Charge' or spell.english == 'Refresh' then equipSet = equip(sets.BlueMagic.Battery) elseif spell.skill == 'Enhancing Magic' then equipSet = equip(sets.Enhancing) end
do this
endCode:elseif spell.english == 'Expiacion' then if player.tp >= 2750 then equip(set_combine(sets.Expiacion[sets.Expiacion.index[Expiacion_ind]], {ear1="Ishvara Earring"})) else equip(sets.Expiacion[sets.Expiacion.index[Expiacion_ind]]) end
Thanks a lot. Moonshade works, and I felt like a dope for that refresh mistake.
Im trying to cast impact but having issues.
my precast and midcast work great no problems... the thing is.. GS tosses me into idle after the spell is only 30% cast.
Help please!