The following script commands have been added or revised:
- "ovl % [text],[slot],[timer],[wait timer]" — "Text" will be displayed in Speeder's overlay (if active) at "slot" for a duration of "timer." If greater than 0, "wait timer" specifies the number of milliseconds Speeder should wait before displaying "text." Possible "slot" values are 0 through 6, allowing you to display up to 7 overlays at once. Example:
- se0,913|ovl % MELEE CARD,1,1000
- The above example will display "MELEE CARD" in the overlay if you have drawn the Balance card on AST.
- "mom[*][*]" — If your current mouseover target is a mob, the rest of the script line will process. If you do not include an asterisk, Speeder will only check for mouseover targets in the enmity list and target bar. If you include a single asterisk, such as mom*, Speeder will only check for mouseover targets in the game world (i.e. not in the enmity list or target bar). If you include two asterisks, such as mom**, Speeder will check for mouseover targets everywhere. Please see the below "mop" command for an example.
- "mop[*][*]" — If your current mouseover target is a player, the rest of the script line will process. If you do not include an asterisk, Speeder will only check for mouseover targets in the party list and target bar. If you include a single asterisk, such as mop*, Speeder will only check for mouseover targets in the game world (i.e. not in the party list or target bar). If you include two asterisks, such as mop**, Speeder will check for mouseover targets everywhere. Example:
- mop|mo3610|gt5
mom|mo3599|gt5
keys3=it|abl3599|gt5
keys4=abl3610,0
s10 - The above example will cast Benefic II if the current mouseover target is a player. Otherwise, if the current mouseover target is a mob, Combust will be used. If there is no mouseover target, but you are currently targeting something, Combust will be used on the target. If there is no target at all, Benefic II will be used on your own character.
- mop|mo3610|gt5
- "mo[ability_id]" — The ability with an ID of "ability_id" will be used on your current mouseover target. I recommend preceding this command with "mop" or "mom" to check for a valid target, although this is not necessary. See "mop" for example usage.
- “get % ogcd [offset]” — Retrieves the data for the cooldown located at “offset” and populates the following variables: OGCD[offset] (the current timer value), OGCD[offset+4] (the total recast time), and dOGCD[offset] (the difference between total recast time and the current timer value). "Offsets" can be found by using the "get % _ogcd o" command above. Example:
- get % ogcd 1076|cmp(VAR % dOGCD1076),30.0|abl3590,0
- The above example will use the AST Draw ability if there is at least one charge available.
- “get % gcd” — Populates the following variables: *GCD (total GCD timer), GCD (current GCD timer), and dGCD (the difference between total GCD timer and current GCD timer). dGCD is especially useful for determining when to use OGCDs. Example:
- get % gcd|!cmp(VAR % dGCD),0.5|!cmp(VAR % GCD),0.5|call % fCooldowns
- The above example will only activate the fCooldown function if the GCD timer is between 0.5 and (max GCD - 0.5), ensuring you do not clip your GCD.
- “se[target],[status_id],[duration],[applier]” — If “target” currently has a status effect with the ID of “status_id,” and the remaining duration is greater than “duration,” and the mob/player who applied the status effect is “applier,” the rest of the command line will process. “Duration” and “applier” are optional. “Target” can be 0 for your own character; 1 for your current target; 2 for your current mouseover target in the enmity list, party list, or target bar; 3 for your current mouseover target anywhere; or the ID of any mob/player. The same is true for the “applier.” The inverse is possible with “!se” and allows you to check for the absence of a status effect. Example:
- it|!se1,1881,2,0|abl3599|dbg % using combust because duration is less than 2 or it isn’t applied on current target.
- "ia" — If you are currently attacking something (i.e., if there is at least one mob in the enmity list), the rest of the script line will process. The inverse is possible with "!ia." Example:
- !ia|gt4
get % ogcd 1116
eq % OGCD1116,0.000|ovl % EARTHLY STAR,6,1000
s100 - The overlay text "EARTHLY STAR" will only display if you currently attacking.
- !ia|gt4
The script GUI has been improved and will now allow you to resize the window as well as scroll up and down. It should be much easier to see all the commands now.
You can now "lock" a script file to a specific job. Click "Create Job File" to do this. Your current file will not be altered in any way.
Various script commands such as "ch" have been fixed.
These changes require updating Speeder to version 20420.