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

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 29
  1. #1
    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)

    [Release] Cow Lord! Custom Scripted Raid Boss!

    Here is a little raid boss I made for fun a long time ago... Thought I should share it with the community since I don't use it anymore. If I remember correctly he is a 20 man raid, GOOD GEARED. Has 3 phases, phase 2 starts at 50% and phase 3 at 20%. He does a stomp through out the fight that stuns and deals damage. He also does several spells depending on the phase you are in. Well, here's the script!


    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")

    SQL Query:


    Delete from creature_names where entry = '99988';
    Delete from creature_proto where entry = '99988';
    INSERT INTO creature_names (`entry`, `name`, `subname`, `info_str`, `Flags1`, `type`, `family`, `rank`, `unk4`, `spelldataid`, `male_displayid`, `female_displayid`, `male_displayid2`, `female_displayid2`, `unknown_float1`, `unknown_float2`, `civilian`, `leader`)
    VALUES (99988, 'Cow Lord', '', '0', 0, 7, 0, 2, 0, 0, 1060, 1060, 1, 1, 1, 0, 0, 1);
    INSERT INTO creature_proto (`entry`, `minlevel`, `maxlevel`, `faction`, `minhealth`, `maxhealth`, `mana`, `scale`, `npcflags`, `attacktime`, `mindamage`, `maxdamage`, `rangedattacktime`, `rangedmindamage`, `rangedmaxdamage`, `mountdisplayid`, `equipmodel1`, `equipinfo1`, `equipslot1`, `equipmodel2`, `equipinfo2`, `equipslot2`, `equipmodel3`, `equipinfo3`, `equipslot3`, `respawntime`, `armor`, `resistance1`, `resistance2`, `resistance3`, `resistance4`, `resistance5`, `resistance6`, `combat_reach`, `bounding_radius`, `auras`, `boss`, `money`, `invisibility_type`, `death_state`, `walk_speed`, `run_speed`, `fly_speed`, `extra_a9_flags`)
    VALUES (99988, 70, 70, 17, 1500000, 1500000, 100000, 2, 0, 1800, 3699, 4645, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 600000, 100, 0, 0, 0, 0, 0, 0, 1.5, 1, '', 0, 11202255, 0, 0, 2.5, 8, 14, 0);
    Mini Installation Guide!

    1. Save the first script above as "CowLord.lua" on notepad.
    2. Save the second script above as "CowLordNpc.sql" on notepad
    3. Execute the .sql on SQLyog or Navicat or HiediSQL.
    4. Place the .lua in your scripts folder.
    5. Go into your ascent configs and find something like:
    Code:
    lua = 0
    Or something like that. Change the 0 to 1.
    6. Go in-game and type
    Code:
    .npc spawn 99988
    7. Your done! If the boss is too hard for your server, you can mod the .sql code. If you need help with it, PM me or post below.

    Thanks! :wave:
    Last edited by Murlock.; 04-04-2008 at 11:12 PM. Reason: Added Details.

    [Release] Cow Lord! Custom Scripted Raid Boss!
  2. #2
    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 Replies!

  3. #3
    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)
    There is no cow level.

  4. #4
    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 Ultra Spidey View Post
    There is no cow level.
    No cow level? Yes there is...

  5. #5
    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)

  6. #6
    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)
    Lol, is that a joke or something? or are you seriously misunderstanding?

  7. #7
    Ebon's Avatar Contributor
    Reputation
    218
    Join Date
    Sep 2007
    Posts
    604
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I believe he is joking bro, as in, you made a cow, and there is no cow level :P.


  8. #8
    C-Death's Avatar Banned
    Reputation
    134
    Join Date
    Jun 2007
    Posts
    504
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Mysterio2004173, just ignore him >< you won't win.

  9. #9
    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 Ebon View Post
    I believe he is joking bro, as in, you made a cow, and there is no cow level :P.
    Oh lol, I just got that! Lol, I'm really sleepy...

    LOL @ C-Death's sig.. I came from runescape to WoW.. I got tired of the 2d madness and the annoying noobs.

  10. #10
    C-Death's Avatar Banned
    Reputation
    134
    Join Date
    Jun 2007
    Posts
    504
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mysterio2004173 View Post
    Oh lol, I just got that! Lol, I'm really sleepy...

    LOL @ C-Death's sig.. I came from runescape to WoW.. I got tired of the 2d madness and the annoying noobs.
    Welcome to the jungle..

  11. #11
    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 C-Death View Post
    Welcome to the jungle..
    Lol been in the jungle

    Quit RS like 3 years ago.

  12. #12
    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)
    Back to topic.. Would like some feedback

  13. #13
    volitle's Avatar Contributor
    Reputation
    181
    Join Date
    Nov 2007
    Posts
    1,127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice boss i wont use it tho, well i myt dunno yet lol +Rep tho


  14. #14
    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 volitle View Post
    nice boss i wont use it tho, well i myt dunno yet lol +Rep tho
    haha thanks

  15. #15
    volitle's Avatar Contributor
    Reputation
    181
    Join Date
    Nov 2007
    Posts
    1,127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol no problem


Page 1 of 2 12 LastLast

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 05:37 AM. 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