-
Posted by tom022 on Mon, 05 Mar 2012 17:56:52
It is my 1st post about scripting. If post is in wrong place pleas remove him. Ahh and my english it's not so good but i think evryone can understand me.
Im starting programing addons. I wont to code addons witch play sound when player whisper to you. For do this i need event's. But i don't know where to code this "function". What i should save code and where declarate fundction and how to include this function when player is writing to You?
So i've got function
in Lua file
function HelloWorld() print("Addon by Possibility zaladowany v1.0"); end ;
in XML
<Script File="HelloWorld.lua"/> <Frame name="HelloWorldFrame"> <Scripts> <OnLoad> HelloWorld(); </OnLoad> </Scripts> </Frame>
and this work correct. Event is called in XML file and its include between
<OnLoad></OnLoad>
where i should save code for this function.function Wr() print("Player is writing to You"); end;
show me where called this function in XML ? in LUA file? i don't know
PS don't tell me how to play song. Firstly this addon must write "Player is writing to You" at chat nothink else.
-
Posted by jnwhiteh on Mon, 05 Mar 2012 22:17:54
If you add the Wr definition to your .lua file, then you can just call it whenever you want. I don't really understand your question.
-
Posted by jnwhiteh on Tue, 06 Mar 2012 08:12:47
I suggest reading the World of Warcraft Programming book. It's very clear about how you can do simple event-based programming.
-
Posted by tom022 on Tue, 06 Mar 2012 15:56:21
Wr definition? what is this?
i cant buy book beacouse i dont have account in bank (i am 17 year old) and i am from poland.
my question is: how to use this <<< this:RegisterEvent("PLAYERTARGETCHANGED")>>> in lua file??
-
Posted by jnwhiteh on Tue, 06 Mar 2012 21:04:26
local addon, addonName = ... local frame = CreateFrame("Frame") local onEvent = function(self, event, ...) if event == "PLAYER_TARGET_CHANGED" then print("Your target changed") end end frame:SetScript("OnEvent", onEvent) frame:RegisterEvent("PLAYER_TARGET_CHANGED")
No XML required, fully working addon.
-
Posted by tom022 on Tue, 06 Mar 2012 21:17:05
Yay thans you so mutch i'am gona to try write new addon