Quantcast
Channel: WoWInterface - Latest list
Viewing all articles
Browse latest Browse all 49815

IfThen (1.7.9)

$
0
0
Change Log:
--------------------
Version1.7.9(2013-02-07)-Wow patch 5.1.0

General:

Search-results in the edit window are now clickable. You will then be taken to the documentation page for the function or variable you selected.
You can now click on a function listed under the "See also" section of the documentation to jump directly to that function.
Parser errors are now clickable. It will take you directly to the page and line number in question.
Parser will now output page and linenumber for lines that fail to parse properly. The parser will also output all errors under a single error-header.
Added a new 'LineNumber' feature. When enabled it will show linenumbers in the editor.
'Search & Highlight' now displays number of matches found in a better positioned label.
Parsing of the raw text will now be suspended until after combat ends. This is to prevent "Script ran too long"-errors with large volumes of text.
Addon now supports resolving battlepets-hyperlinks like .

New functions:

IsHostile() -Is your current target hostile towards you

Updated functions:

RaidMessage() -Function will now only color the string you input and not the whole RaidMessageFrame.
Report() -Friendship reputations will now output the localized name for the current rank.

Updated events:

"Chat" event now also supports "system" to trigger on system messages (requested by Delvai).

Code optimizations:

Internal tooltip scanning code will now cache its results for faster lookup of items.

BugFix:

Report() will now calculate the correct itemlevel if you only got offhand equipped or 2 weapons.
When resolving achievement-hyperlinks the addon will now also try to lookup the achievement using the name specified and not just the ID.
When resolving currency-hyperlinks, the addon will first try any ID specifed bef...

Description:
--------------------
Allows you to create your own IF THEN statements that will dynamically change the function of a button.
This addon is intended for people that have a basic understanding of programming. Specifically conditional If-Then statements.
The addon allows you to write your own if-then statements that will be evaluated and run whenever you press a button, or they can trigger on certain events ingame.
It provides a simple text editor, a fully documented API and some simple If-Then syntax so that you can string together almost anything you want to react to.

Examples:

IF HasOpenQuest("My daily fishing quest") AND InZone("Stormwind")
THEN Cast("Fishing");


OnEvent("GroupInvite") AND InLFGQueue()
THEN DeclineInvite() AND Reply("Sorry, I am already in the LFG queue");


Look at the FAQ page for the most asked questions, and the Examples page for examples.

Viewing all articles
Browse latest Browse all 49815

Trending Articles