[Release] Cow Lord! Custom Scripted Raid Boss! menu

Shout-Out

User Tag List

Page 2 of 2 FirstFirst 12
Results 16 to 29 of 29
  1. #16
    Murlock.'s Avatar Knight-Lieutenant
    Reputation
    86
    Join Date
    Oct 2007
    Posts
    271
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WTB More Comments

    [Release] Cow Lord! Custom Scripted Raid Boss!
  2. #17
    roguesownu's Avatar Member
    Reputation
    10
    Join Date
    Nov 2006
    Posts
    189
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    To comment on the earlier comment "There is no cow level"

    1) Was a tip on the WoW loading screen before TBC I believe, and it does refer to the fact that cows in the game didn't have a level

    2) Is a cheat code for Warcraft III (I think it's number 3 anyways)




    Nice release by the way, I'll see if there's room for it in my server
    The following statement is true
    The previous statement is false

  3. #18
    Equ1N0X's Avatar Contributor
    Reputation
    148
    Join Date
    Mar 2007
    Posts
    1,196
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    There is no Secret Cow Level.

    There is on my Server... >.> <,<


  4. #19
    sadgonewild's Avatar Member
    Reputation
    10
    Join Date
    Jun 2007
    Posts
    127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    why imitate goat lord -.-

  5. #20
    Aes's Avatar Former Staff CoreCoins Purchaser
    Reputation
    705
    Join Date
    Dec 2007
    Posts
    1,793
    Thanks G/R
    7/8
    Trade Feedback
    60 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    there is no cow level then aye?

    whats this then

    Wirt's Third Leg = writs leg like in diablo 2 to make the cow level
    (found in tanaris - Lost Rigger Cove (Pirates))

    also heres a video of it
    [ame=http://www.youtube.com/watch?v=gWhr9mJw9oo]YouTube - There is a cow level[/ame]

    try unprove that lol =P

  6. #21
    Bareno's Avatar Contributor
    Reputation
    195
    Join Date
    Sep 2006
    Posts
    477
    Thanks G/R
    5/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Halp, Error in the script while starting up...



    EDIT: Nevermind... I think I fixed it, I knew nothing about lua coding and I can see there is a ) missing apparently :P

    EDIT2: OMIGAWDHALP, Another error! :<



    EDIT3: Okay, this should be the last edit, fixed it... added a " before a register event thing, And no errors poped up during startup... lawl





    And one last thing... After fixing this I tested this on my server, but it seems like all does is his aggro say and his death say. :\
    Last edited by Bareno; 04-04-2008 at 05:31 AM.

  7. #22
    TheSpidey's Avatar Elite User
    Reputation
    365
    Join Date
    Jan 2008
    Posts
    2,200
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You do know Thunder Bluff is the cow level, right :P

  8. #23
    b!atch's Avatar Member
    Reputation
    118
    Join Date
    Oct 2007
    Posts
    726
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Bareno View Post





    And one last thing... After fixing this I tested this on my server, but it seems like all does is his aggro say and his death say. :
    err, post the script, i might be able to fix that:P
    Spectrum-X is win! Rep People That Help You and Candybones Wont Eat Your Brain:>

  9. #24
    Arthas117's Avatar Knight-Champion
    Reputation
    151
    Join Date
    Mar 2007
    Posts
    483
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice boss, and the script looks awesome! Maybe I'll use it for Zofikazz new repack "Return of Sargeras" :P

    World best PvP Paladin=Me? GG ;D


  10. #25
    Bareno's Avatar Contributor
    Reputation
    195
    Join Date
    Sep 2006
    Posts
    477
    Thanks G/R
    5/11
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by b!atch View Post
    err, post the script, i might be able to fix that:P
    Same one as mysterio posted... with two small fixes on line 7 / 4

    Code:
    function CowLord_Phase3(Unit, Event)
    if Unit:GetHealthPct() <20 then
    RemoveEvents()
    Unit:SendChatMessage(12, 0, "YOU HAVE ANGERED ME!!.. MOO!!!")
    Unit:CastSpell(29947)
    Unit:CastSpell(41447)
    Unit:RegisterEvent("CowLord_Stomp",10000,0)
    end
    end
    
    function CowLord_Phase2(Unit, Event)
    if Unit:GetHealthPct() <50 then
    RemoveEvents()
    Unit:SendChatMessage(11, 0, "You think you can win... Moo!?!")
    Unit:CastSpellOnTarget(33061, Unit:GetRandomPlayer(0))
    Unit:RegisterEvent("CowLord_Stomp",15000,0)
    Unit:RegisterEvent("CowLord_Phase3",1000,0)
    end
    end
    
    function CowLord_Stomp(Unit)
    Unit:CastSpellOntarget(34716, Unit:GetRandomPlayer(0))
    end
    
    function CowLord_OnCombat(Unit, Event)
    Unit:SendChatMessage(11, 0, "You will die... Moo!!")
    Unit:CastSpell()
    Unit:CastSpellOnTarget(40370, Unit:GetRandomPlayer(0))
    Unit:RegisterEvent("CowLord_Stomp",20000,0)
    Unit:RegisterEvent("CowLord_Phase2",1000,0)
    end
    
    function CowLord_OnLeaveCombat(Unit, Event)
    Unit:RemoveEvents()
    end
    
    function CowLord_OnKilledTarget(Unit, Event)
    Unit:SendChatMessage(11, 0, "I am victorious... Moo!!")
    end
    
    function CowLord_OnDied(Unit, Event)
    Unit:SendChatMessage(11, 0, "I have failed... Moo..")
    Unit:RemoveEvents()
    end
    
    RegisterUnitEvent(99988, 1, "CowLord_OnCombat")
    RegisterUnitEvent(99988, 2, "CowLord_OnLeaveCombat")
    RegisterUnitEvent(99988, 3, "CowLord_OnKilledTarget")
    RegisterUnitEvent(99988, 4, "CowLord_OnDied")

  11. #26
    Lich King's Avatar Contributor
    Reputation
    100
    Join Date
    May 2007
    Posts
    911
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice boss, looks like a fun script +Rep

  12. #27
    Murlock.'s Avatar Knight-Lieutenant
    Reputation
    86
    Join Date
    Oct 2007
    Posts
    271
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Arthas117 View Post
    Nice boss, and the script looks awesome! Maybe I'll use it for Zofikazz new repack "Return of Sargeras" :P
    Thanks! That would be awsome, I love your repacks!

    Originally Posted by sadgonewild View Post
    why imitate goat lord -.-
    Goat Lord? Wtf lol. I just thought of this like a 6 months ago when I was learning..

  13. #28
    Zordin's Avatar Banned
    Reputation
    21
    Join Date
    Jan 2007
    Posts
    163
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Looks good, i aint hosting a live priv server anymore but ill try it on my local for fun

  14. #29
    Murlock.'s Avatar Knight-Lieutenant
    Reputation
    86
    Join Date
    Oct 2007
    Posts
    271
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Zordin View Post
    Looks good, i aint hosting a live priv server anymore but ill try it on my local for fun
    Hehe, glad you liked it!

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Custom Raid Boss][Scripted][25 man] Kexx <The Creator>
    By uberhak3r in forum World of Warcraft Emulator Servers
    Replies: 8
    Last Post: 06-29-2008, 03:47 PM
  2. [Release] Snowman! Custom scripted raid boss by B!atch ! ;O
    By b!atch in forum World of Warcraft Emulator Servers
    Replies: 22
    Last Post: 06-19-2008, 04:20 AM
  3. [Release] Custom Scripted Boss Fight: Your Mom
    By dude891 in forum World of Warcraft Emulator Servers
    Replies: 11
    Last Post: 04-13-2008, 08:08 PM
  4. [Guide] How to make Custom Raid Bosses + Quest!
    By Drop_Warcrack in forum WoW EMU Guides & Tutorials
    Replies: 18
    Last Post: 02-29-2008, 10:29 PM
  5. [Release] Custom 25 Man Raid Boss / Quest.
    By Drop_Warcrack in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 01-03-2008, 08:00 AM
All times are GMT -5. The time now is 09:03 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search