Thread Tools Display Modes
07-21-11, 12:55 PM   #1
adrianutrilla
A Deviate Faerie Dragon
Join Date: Jul 2011
Posts: 10
Automatic Goblin Therapist.

This addon was deleted a couple days ago. Could anybody help me by uploading a working version of it or could anyone tell me about a similar addon? Thank you very much and sorry for my english.
  Reply With Quote
07-21-11, 01:10 PM   #2
Verttex
Super Monkey
 
Verttex's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 297
English is fine.

What exactly does this add-on do? Is it like Gobling?
__________________
  Reply With Quote
07-21-11, 01:15 PM   #3
adrianutrilla
A Deviate Faerie Dragon
Join Date: Jul 2011
Posts: 10
Originally Posted by Verttex View Post
English is fine.

What exactly does this add-on do? Is it like Gobling?
The addon using keywords answers automaticly whispers, which is really useful. Does Gobling do the same?
  Reply With Quote
07-21-11, 02:54 PM   #4
adrianutrilla
A Deviate Faerie Dragon
Join Date: Jul 2011
Posts: 10
i'm posting again because i've found the addon but it's not working. There are libraries where you insert keywords and their answers, but the addon doesn't let me choose any keyword. let's see if anyone can help.
Here you have the download link: snip

Last edited by Seerah : 07-21-11 at 03:46 PM. Reason: removed download link as per forum rules -Seerah
  Reply With Quote
07-21-11, 03:47 PM   #5
Seerah
Fishing Trainer
 
Seerah's Avatar
WoWInterface Super Mod
Featured
Join Date: Oct 2006
Posts: 10,860
I was not privy to the removal of this addon, but generally if an addon is deleted from our site, it is because the author requested it to be deleted. This usually means that they do not want any old or other copies of it floating around. Also remember that you can only redistribute an addon if its license says that you may do so.
__________________
"You'd be surprised how many people violate this simple principle every day of their lives and try to fit square pegs into round holes, ignoring the clear reality that Things Are As They Are." -Benjamin Hoff, The Tao of Pooh

  Reply With Quote
07-21-11, 03:55 PM   #6
adrianutrilla
A Deviate Faerie Dragon
Join Date: Jul 2011
Posts: 10
Originally Posted by Seerah View Post
I was not privy to the removal of this addon, but generally if an addon is deleted from our site, it is because the author requested it to be deleted. This usually means that they do not want any old or other copies of it floating around. Also remember that you can only redistribute an addon if its license says that you may do so.
The addon poster clarified that he removed the addon because he couldn't update it cause he wasn't playing any more.
  Reply With Quote
07-21-11, 09:39 PM   #7
Verttex
Super Monkey
 
Verttex's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 297
local f = CreateFrame("Frame")

f:RegisterEvent("CHAT_MSG_WHISPER")

f:SetScript("OnEvent", function(self, event, msg, sender)

msg = msg:lower()

if msg:find("Word") then

SendChatMessage('Message", nil, sender)

elseif msg:find("Word") then

SendChatMessage("Message", nil, sender)

elseif msg:find("Word") then

SendChatMessage("Message", nil, sender)


end

end)

Does this work?

Note: How do I do a Lua code syntax highlighting? I have seen it before on here.
__________________
  Reply With Quote
07-21-11, 09:44 PM   #8
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,326
Originally Posted by Verttex View Post
lua Code:
  1. local f = CreateFrame("Frame")
  2. f:RegisterEvent("CHAT_MSG_WHISPER")
  3. f:SetScript("OnEvent", function(self, event, msg, sender)
  4.     msg = msg:lower()
  5.     if msg:find("Word") then
  6.         SendChatMessage("Message", nil, sender)
  7.     elseif msg:find("Word") then
  8.         SendChatMessage("Message", nil, sender)
  9.          elseif msg:find("Word") then
  10.         SendChatMessage("Message", nil, sender)
  11.     end
  12. end)

...

Note: How do I do a Lua code syntax highlighting? I have seen it before on here.
This is what I use:
Code:
[highlight=lua]
-- Lua Code
[/highlight]
Also note, SendChatMessage() needs to know you're sending through the WHISPER channel.
Code:
SendChatMessage("Message","WHISPER",sender);
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)

Last edited by SDPhantom : 07-21-11 at 09:52 PM.
  Reply With Quote
07-21-11, 09:49 PM   #9
Verttex
Super Monkey
 
Verttex's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 297
Thank you very much, I will remember that.
__________________
  Reply With Quote
07-22-11, 01:26 AM   #10
adrianutrilla
A Deviate Faerie Dragon
Join Date: Jul 2011
Posts: 10
Originally Posted by SDPhantom View Post
This is what I use:
Code:
[highlight=lua]
-- Lua Code
[/highlight]
Also note, SendChatMessage() needs to know you're sending through the WHISPER channel.
Code:
SendChatMessage("Message","WHISPER",sender);
let's make it better, where can I learn LUA for wow programing?
  Reply With Quote
07-22-11, 11:01 AM   #11
SDPhantom
A Pyroguard Emberseer
 
SDPhantom's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2006
Posts: 2,326
You can start looking here.
WoWPedia HOWTOs

To get a grasp of the Lua language, follow the link below.
Lua 5.1 Reference Manual
__________________
WoWInterface AddOns
"All I want is a pretty girl, a decent meal, and the right to shoot lightning at fools."
-Anders (Dragon Age: Origins - Awakening)
  Reply With Quote
07-22-11, 11:21 AM   #12
adrianutrilla
A Deviate Faerie Dragon
Join Date: Jul 2011
Posts: 10
Originally Posted by SDPhantom View Post
You can start looking here.
WoWPedia HOWTOs

To get a grasp of the Lua language, follow the link below.
Lua 5.1 Reference Manual
Thanks a lot, i'm going to see it and see if I can handle
  Reply With Quote
08-27-11, 08:41 PM   #13
siddharthaa
A Defias Bandit
Join Date: Sep 2007
Posts: 3
This addon apparently is based on/has some connection to Eliza.

Lots of info in the Wiki and its notes:
http://en.wikipedia.org/wiki/ELIZA

I've also been looking to reinstall this, and was very grateful to see this thread
  Reply With Quote
09-08-11, 11:38 AM   #14
Seoryn
A Kobold Labourer
Join Date: Jun 2009
Posts: 1
I'm glad I didn't delete this addon as I had intended since it appears to be no longer working. I would also love to see this addon picked up and updated, it's been the source of countless laughs for as long as I've had it. I'll also try my own hand at repairing it and if I can get it to work I'll copy my Lua changes here.
  Reply With Quote
08-26-12, 08:37 PM   #15
siddharthaa
A Defias Bandit
Join Date: Sep 2007
Posts: 3
Sorry to resuscitate this thread after so much time , but wanted to mention that I was able to dig up a copy of this addon in case anyone can/wants to update it.
  Reply With Quote
08-26-12, 09:13 PM   #16
Seerah
Fishing Trainer
 
Seerah's Avatar
WoWInterface Super Mod
Featured
Join Date: Oct 2006
Posts: 10,860
Originally Posted by Seerah View Post
I was not privy to the removal of this addon, but generally if an addon is deleted from our site, it is because the author requested it to be deleted. This usually means that they do not want any old or other copies of it floating around. Also remember that you can only redistribute an addon if its license says that you may do so.
I'll just requote myself. I don't know what the license of AGT actually is.
__________________
"You'd be surprised how many people violate this simple principle every day of their lives and try to fit square pegs into round holes, ignoring the clear reality that Things Are As They Are." -Benjamin Hoff, The Tao of Pooh

  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Automatic Goblin Therapist.


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off