Init
This commit is contained in:
commit
2be68f8d6e
|
@ -0,0 +1,22 @@
|
||||||
|
HelloWorld_Text = {}
|
||||||
|
local channel = "SAY"
|
||||||
|
|
||||||
|
SLASH_HELLO_WORLD_ADD1 = "/hwadd"
|
||||||
|
SLASH_HELLO_WORLD_ADD2 = "/helloworldadd"
|
||||||
|
|
||||||
|
SlashCmdList["HELLO_WORLD_ADD"] = function(msg)
|
||||||
|
local id, text = msg:match("(%S+)%s+(.+)")
|
||||||
|
if id and text then
|
||||||
|
HelloWorld_Text[id:lower()] = text
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
SLASH_HELLO_WORLD_SHOW1 = "/hwshow"
|
||||||
|
SLASH_HELLO_WORLD_SHOW2 = "/helloworldshow"
|
||||||
|
|
||||||
|
SlashCmdList["HELLO_WORLD_SHOW"] = function(msg)
|
||||||
|
local text = HelloWorld_Text[msg:lower()]
|
||||||
|
if text then
|
||||||
|
print(text)
|
||||||
|
end
|
||||||
|
end
|
|
@ -0,0 +1,8 @@
|
||||||
|
## Interface: 11403
|
||||||
|
## Title: HelloWorld
|
||||||
|
## Notes: Say Hello World to Chat
|
||||||
|
## Author: Rinma
|
||||||
|
## Version: 0.0.1
|
||||||
|
## SavedVariables: HelloWorld_Text
|
||||||
|
|
||||||
|
HelloWorld.lua
|
Loading…
Reference in New Issue