[Release][FrostTeam] Announcer Template - MUST HAVE! menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    Nymphx's Avatar Active Member
    Reputation
    83
    Join Date
    Sep 2008
    Posts
    212
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release][FrostTeam] Announcer Template - MUST HAVE!

    This obviously didn't take long but I find it's a valuable asset in every repack, funserver, blizzlike realm, or mid-rate server.

    Basically - It's an announcer. You control the timer and what it says. You can gain more forum members, you could remind your players to vote or you could give them sneeky tips.

    The code:


    Code:
                    ******************************                              
                    *                            *
                    *   The FrostTeam Project    *                 
                    *                            *
                    ******************************                        
                    
    
            --FrostTeam SVN consists of the latest WotLK
            scripts, both Lua and C++. Some will be our own,
            some will be others with credits attatched. Our
            Svn includes all scripts that you may need
            to help make your server a more fun environment.--
    
    ---------------------------//----------------------------------------------	
    
    
    -- These are the local configs of the script --
    	
    	-- Only change this part of the script unless you want to allow extra announce messages --
    
    	local Timebetweenannounce = TIMEHERE
    	local Npcid = NPCID
    
    	local message1 = "MessageHere"
    	local message2 = "MessageHere"
    	local message3 = "MessageHere"
    	local message4 = "MessageHere"
    	
    
    	-- Local config end --
    
    
    
    function Announcer_Yell(pUnit, Event)
    	Choice=math.random(1, 4)
    	if Choice==1 then
    		pUnit:SendChatMessage(12, 0, message1)
    	if Choice==2 then
    		pUnit:SendChatMessage(12, 0, message2)
    	if Choice==3 then
    		pUnit:SendChatMessage(12, 0, message3)
    	if Choice==4 then
    		pUnit:SendChatMessage(12, 0, message4)
    	end
    end
    
    
    function Announcer_Start(pUnit, Event)
    	pUnit:RegisterEvent("Announcer_Yell", Timebetweenannounce, 0)
    end
    
    	RegisterUnitEvent(Npcid, 6, "Announcer_Start")
    
    
    	-- End --
    NPCID = The ID of the NPC you want this script to be attatched to.
    TIMEHERE = Time between each announce.
    MessageHere = Messages you want the announcer to say.


    This IS untested, so please post all feedback; positive and negative!

    Thanks and enjoy.
    Last edited by Nymphx; 01-17-2009 at 10:55 PM.

    [Release][FrostTeam] Announcer Template - MUST HAVE!
  2. #2
    Tornad0z's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks great.

    Is this a LUA Script? =)

  3. #3
    Nymphx's Avatar Active Member
    Reputation
    83
    Join Date
    Sep 2008
    Posts
    212
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yes it is. It might not look like one because of the locals + the "FrostTeam" heading and maybe because it doesn't view like normal Lua scripts? . Thanks for the quick reply .

  4. #4
    Tornad0z's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cool, i will test now : D

    Will post a feedback in 5-10 minutes ;-)

  5. #5
    Nymphx's Avatar Active Member
    Reputation
    83
    Join Date
    Sep 2008
    Posts
    212
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks alot . Meanwhile I will work on another small project (A boss spawner).

  6. #6
    Tornad0z's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, i started my server, and checked my world.exe for the script to load.

    Sadly it says that it failed to load.
    Last edited by Tornad0z; 01-17-2009 at 11:19 PM.

  7. #7
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nymphx what is frost team??
    Lunar Gaming - Reaching For The Stars

  8. #8
    Tornad0z's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by mager1794 View Post
    Nymphx what is frost team??
    Frost team is a bunch of guys that is making private servers alot more fun for us FOR FREE!

    No, seriously.

    They are a team that are coding both C++ and LUA scripts that you can run with ur server that makes it more fun to play on

  9. #9
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cool do they have a site where i could apply at??
    Lunar Gaming - Reaching For The Stars

  10. #10
    Tornad0z's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Im not sure if they have a website, but i know that they have a SVN running

    If you want to apply for the team, you should send Nymphx a PM i suggest.

  11. #11
    Nymphx's Avatar Active Member
    Reputation
    83
    Join Date
    Sep 2008
    Posts
    212
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Currently we are not hiring. I am just downloading any old repack to test the script Will have it working within 20 minutes hopefully.

  12. #12
    Tornad0z's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for working so hard on your projects Nymphx.

    Let me know when you fix it =)


    EDIT: I'm sorry i couldn't help that much, but im not a coder ;p

  13. #13
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    tornadoz why don't you try to learn its a great hobbie and its fun : )
    Lunar Gaming - Reaching For The Stars

  14. #14
    Tornad0z's Avatar Member
    Reputation
    7
    Join Date
    Aug 2007
    Posts
    154
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Heh Mager.

    I will have to try it sometime, cause next year i will be studying computer science at school

  15. #15
    mager1794's Avatar Member
    Reputation
    356
    Join Date
    Feb 2008
    Posts
    703
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thats a fun lil subject if you ever need help just ask me alright : )
    Lunar Gaming - Reaching For The Stars

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] Legendary Armory!!!!! Must HAVE (EPIC)
    By Tom_2001 in forum World of Warcraft Emulator Servers
    Replies: 24
    Last Post: 02-04-2008, 02:28 AM
  2. OMG !!! A must have gadget !!!
    By Flying Piggy in forum Community Chat
    Replies: 21
    Last Post: 08-11-2007, 09:36 PM
  3. Must have wow template
    By Kegis in forum WoW Scam Prevention
    Replies: 13
    Last Post: 08-07-2007, 09:13 AM
  4. 10 Must have Programs
    By Fault in forum Community Chat
    Replies: 25
    Last Post: 06-25-2007, 05:49 PM
  5. Replies: 16
    Last Post: 06-23-2007, 08:06 PM
All times are GMT -5. The time now is 10:40 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search