Quoted from "shoestring;15332"
Bez -
What im looking for is not the Scroll Text ( which is pushed out the way now - thanks ) but the Big Red Error Text ie... You dont have the skill to use this, Cant use this skill at this time, etc... I remember in WoW 3 years old when i played i was able to move that text to the chat or make it smaller to the side.

|
|
Source code |
1 |
/run SendWarningMsg("testing 123.");
|
|
|
Source code |
1 2 |
/script WarningFrame:ClearAllAnchors(); WarningFrame:SetAnchor("TOPLEFT", "TOPLEFT", WorldFrame, 950, 4);
/script WarningFrame:SetScale(0.60);
|
|
|
Source code |
1 2 |
/script WarningFrame:Hide(); /script WarningFrame:Show(); |
Quoted from "naqaden;17137"
The examples throughout this thread are nice, but where can I find a complete list of functions? How does anyone make anything original?
The first post mentions "LUA Functions in the RoM API" and I would like to see them all. Then we get a link to a WoW wiki with tons of details about the WoW API and such... but err, what about Runes of Magic?
Again it's a nice start for beginners, but I want more!
Quoted from "Jake;16383"
it doesn't even allow me to go the registering forms..
Quoted from "BuffaloBadAss;16784"
you wrote it almost
/cast (the spell name as spelled in game)
/wait (if instant cast use .75)(if it has a cast tiem of say 4 secs use 4.75...)
ex if all are instant cast spells
/cast Premedtiation
/wait .75
/cast Shadow Step
/wait .75
/cast Blind spot
|
|
Source code |
1 2 3 4 5 6 7 |
/cast Intensification /wait 1.5 /cast Fireball /wait 1.5 /cast Lightning /wait 1.5 /cast Galaxy |
|
|
Source code |
1 2 3 4 5 |
/cast Electric Bolt /wait 2.5 /cast Lightning /wait 1.5 /cast Galaxy |