Close
Page 1 of 6 1 2 3 ... LastLast
Showing results 1 to 10 of 53
  1. #1

    Default NEW Addon: Silent Whisper - v0.1.1

    After seeing alot of people request this I've just released my first copy of "Silent Whisper"

    Its a LUA addon that you can simple place in your addons folder in World of Warcraft, Its purpose is to re-direct all the whispers from your boxers to 1 specified charector.

    The setup is less then 30sec, all you need to do is add your main charectors name to the SilentWhisper.lua file.
    Instructions are included in the Readme.txt

    EXAMPLE
    My main was Kleavage
    My alt was Falkor
    Kleavage also acted as the random person sending a whisper to my alt.

    Kleavage sent a message to Falkor, Falkor recieved a whisper and then directed the contents straight to my designated main - Kleavage.




    I will be upgrading this over the forthcoming weeks to be even more feature rich, any ideas/critacism/constructive comments are welcome

    Falkor.

    ChangeLog
    0.1.1
    Added original sender name to redirected whisper.

    0.1.0
    Original release.

  2. #2

    Default

    New poster, first post, and it's a zip!? I smell crabs! or aids! or just many viruses!

    Some brave soul try it yet?

  3. #3

    Default

    The zip file is virus scanned and contains 3 files, 1x lua 1x toc 1x xml. All standard Addon files you can look at them if you so wish.
    Additionally I'm pretty sure you will retract your previous comment sensenmann when you find out this is actually a very good legit addon I've spent time making But I understand how it looks so I will take it on the head for now.

  4. #4

    Default

    I've had a look over the zip and the Addon Code, it looks clean. Ive not had a chance to use it in game yet but I cant wait to try this out. Many Thanks Falkor

  5. #5

    Default

    Sounds cool. Do I trust it? Not really. But it does sound really cool.
    AKAMA > (The Zerg) > 4x Shamans > FirstRock, SecondRock, ThridRock, FourthRock

  6. #6

    Default

    If your all worried about the zip file I can just post the code here - you can copy and paste it into 3files and save them in your addins folder simple?

  7. #7

    Default

    That would be cool.
    AKAMA > (The Zerg) > 4x Shamans > FirstRock, SecondRock, ThridRock, FourthRock

  8. #8

    Default

    THIS CODE IS NOW OUT-DATED, USE THE DOWNLOAD LINKS AT TOP OF THIS PAGE!

    Copy and paste the below code into the files making sure you name them correct!
    You can make a folder inside your interface/addons folder and name it anything you want.

    SilentWhisper.lua
    Code:
     
    local VERSION="0.1.0" 
    function SilentWhisper_OnLoad() 
    this:RegisterEvent("CHAT_MSG_WHISPER"); 
    end 
    function SilentWhisper_OnEvent(event) 
    if strsub(event,1,16) == "CHAT_MSG_WHISPER" then 
    local msg = arg1; 
    local plr = arg2; 
    Whisper(msg) 
    end 
    end 
    function Whisper(Message) 
    local rname = "ChangeMe"; 
    SendChatMessage(Message , "WHISPER", "Common", rname); 
    end
    SilentWhisper.toc
    Code:
    ## Interface: 333000 
    ## Title: Silent Whisper 
    ## Author: Falkor 
    ## Version: 0.1.0 
    ## Notes: Redirects whispers from your alts to your main 
    ## DefaultState: Enabled 
    ## LoadOnDemand: 0 
    SilentWhisper.xml
    SilentWhisper.xml
    Code:
    <Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/ C:\Projects\WoW\Bin\Interface\FrameXML\UI.xsd"> 
    <Script file="SilentWhisper.lua" /> 
    <Frame name="SilentFrame" parent="UIParent" frameStrata="HIGH" toplevel="true" hidden="true"> 
    <Scripts> 
    <OnLoad> 
    SilentWhisper_OnLoad(); 
    </OnLoad> 
    <OnEvent> 
    SilentWhisper_OnEvent(event); 
    </OnEvent> 
    </Scripts> 
    </Frame> 
    </Ui>

  9. #9

    Default

    Hi, well done for taking the time to make this addon... only issue I can see with this is that the redirected whisper (looking at your screen shots) doesn’t have the name of the original sender in it, so who do you know who to reply to?
    Multi-boxing since 6th March 2008

    EU-Nordrassil (Horde)
    1 Paladin (lvl 70) / 1 Priest / 1 Mage / 1 Druid / 1 Shaman
    1....10....20....30...38.40....50....60.....70

  10. #10

    Default

    as i said in the original post this is just the first version, its idea is to send you a copy of the whisper so you can read it and decide weather to swtich to the other client and reply. Its merely to preview the whisper and save you wasting time for checking a spam whisper or "gimme gold" one.

    I'm currently re-writing some of the code to expand and include "[message],[sender],[time]"

Similar Threads

  1. Silent and performant GPU for boxing?
    By magwo in forum Hardware Tools
    Replies: 3
    Last Post: 01-20-2009, 03:47 PM
  2. New team started - my first whisper
    By shaeman in forum General WoW Discussion
    Replies: 34
    Last Post: 09-06-2008, 12:51 PM
  3. How to NOT duplicate /say, /yell, or any whisper replies?
    By charlieclown in forum New Multi-Boxers & Support
    Replies: 5
    Last Post: 08-10-2008, 02:25 PM
  4. Whisper broadcasting mod
    By Gadaí in forum Software Tools
    Replies: 5
    Last Post: 08-02-2008, 06:10 AM
  5. Replies: 5
    Last Post: 04-26-2008, 03:13 AM

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •