[The Office] Lord Rupert Everton menu

User Tag List

Results 1 to 8 of 8
  1. #1
    Sabens's Avatar Contributor
    Reputation
    151
    Join Date
    Oct 2006
    Posts
    266
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [The Office] Lord Rupert Everton

    Lord Rupert Everton

    Brief Overview:
    Hey guys. This is a project I did just for fun. For you guys who love the office, in the episode titled "Money" on season 4, Micheal describes a man in the witness protection program named "Lord Rupert Everton", a shipping merchant that raises fancy dogs. So I made this LUA and designed the boss to be about a 20man raid. Again, this was just for fun

    The Fight
    The fight is pretty basic. Every now and then, he will spawn a Fancy Dog. He will also periodically cleave. At 50%, he becomes enraged. Also, throughout the fight, he cracks "That's what she said" jokes. This is meant for about 20 players.

    Screenshot:



    LUA:
    Code:
    function Rupert_Combat(Unit, Event)
        Unit:SendChatMessage(11, 0, "Beware of my fancy dogs!")
        Unit:RegisterEvent("Rupert_Cleave", 30000, 0)
        Unit:RegisterEvent("Rupert_Dog", 20000, 0)
        Unit:RegisterEvent("Rupert_Rage", 1500, 0)
    end
    
    function Rupert_Cleave(Unit, Event)
        Unit:Castspell(25231)
    end
    
    function Rupert_Dog(Unit, Event)
        local faction = 90
        x = Unit:GetX();
        y = Unit:GetY();
        z = Unit:GetZ();
        o = Unit:GetO();
        Unit:SpawnCreature(812001, x, y, z, o, faction, 60000)
    end
    
    function Rupert_Rage(Unit, Event)
        if Unit:GetHealthPct() < 50 then
        Unit:SendChatMessage(12, 0, "This is hard!...  That's what she said!")
        Unit:CastSpell(40683)
        end
    end
    
    function Rupert_Wipe(Unit, Event)
        Unit:RemoveEvents()
    end
    
    function Rupert_Died(Unit, Event)
        Unit:SendChatMessage(11, 0, "I..Declare..Bankrupcy!  And death!")
        Unit:RemoveEvents()
    end
    
    function Rupert_KillPlayer(Unit, Event)
        Unit:SendChatMessage(12, 0, "You stand no chance against me and my fancy dogs!")
    end
    
    RegisterUnitEvent(812000, 1, "Rupert_Combat")
    RegisterUnitEvent(812000, 2, "Rupert_Wipe")
    RegisterUnitEvent(812000, 3, "Rupert_KillPlayer")
    RegisterUnitEvent(812000, 4, "Rupert_Died")
    SQLs:
    Lord Rupert Everton:
    Code:
    INSERT INTO creature_names (entry, name, subname, info_str, Flags1, type, family, rank, male_displayid, female_displayid, male_displayid2, female_displayid2, civilian, leader) VALUES ('812000','Lord Rupert Everton','Shipping Merchant','','0','7','0','1','2347','0','0','0','0','0');
    
    INSERT INTO creature_proto (entry, minlevel, maxlevel, faction, minhealth, maxhealth, mana, scale, npcflags, attacktime, mindamage, maxdamage, rangedattacktime, rangedmindamage, rangedmaxdamage, mountdisplayid, equipmodel1, equipmodel2, equipmodel3, respawntime, armor, resistance1, resistance2, resistance3, resistance4, resistance5, resistance6, combat_reach, auras, boss, money, invisibility_type, death_state, walk_speed, run_speed, fly_speed) VALUES ('812000','72','72','21','1300000','1300000','0','0','2000','2760','4282','0','0','0','0','0','0','0','36000','2200','10','10','10','10','10','10','1','0','1','420391','0','0','2.5','8','14');
    Fancy dog:
    Code:
    INSERT INTO creature_names (entry, name, subname, info_str, Flags1, type, family, rank, male_displayid, female_displayid, male_displayid2, female_displayid2, civilian, leader) VALUES ('812001','Fancy Dog','Rupert's Pet','','0','1','0','1','782','0','0','0','0','0');
    
    INSERT INTO creature_proto (entry, minlevel, maxlevel, faction, minhealth, maxhealth, mana, scale, npcflags, attacktime, mindamage, maxdamage, rangedattacktime, rangedmindamage, rangedmaxdamage, mountdisplayid, equipmodel1, equipmodel2, equipmodel3, respawntime, armor, resistance1, resistance2, resistance3, resistance4, resistance5, resistance6, combat_reach, auras, boss, money, invisibility_type, death_state, walk_speed, run_speed, fly_speed) VALUES ('812001','72','72','21','53000','53000','0','0','1500','800','1801','0','0','0','0','0','0','0','36000','1800','5','55','5','55','5','55','1','0','0','32199','0','0','2.5','8','14');

    Download the full pack here:
    Send big files the easy way. Files too large for email attachments? No problem!
    The pack includes the LUA and the two SQLs.

    The IDs for the NPCs are:
    Lord Rupert: 812000
    Fancy Dog: 812001

    If you haven't seen this episode of The Office, you can watch it here:
    RixStuff.net - Watch The Office Online

    I hope you guys enjoy this mini fun project. If you have any questions or comments, feel free to post them below or send me a PM!



    "They must find it difficult. . . Those who have taken authority as the truth, rather then truth as the authority." -Gerald Massey

    [The Office] Lord Rupert Everton
  2. #2
    Performer's Avatar Contributor
    Reputation
    212
    Join Date
    Nov 2007
    Posts
    874
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol :P +Rep


  3. #3
    Sabens's Avatar Contributor
    Reputation
    151
    Join Date
    Oct 2006
    Posts
    266
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks Performer.


    "They must find it difficult. . . Those who have taken authority as the truth, rather then truth as the authority." -Gerald Massey

  4. #4
    мιяаgє's Avatar Member
    Reputation
    42
    Join Date
    Jan 2008
    Posts
    210
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Noice! I dont watch the office much, I find it boring :S +Rep


  5. #5
    Sabens's Avatar Contributor
    Reputation
    151
    Join Date
    Oct 2006
    Posts
    266
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Aww, I love The Office ! But thanks anyways.


    "They must find it difficult. . . Those who have taken authority as the truth, rather then truth as the authority." -Gerald Massey

  6. #6
    AzolexX's Avatar Contributor
    Reputation
    179
    Join Date
    May 2007
    Posts
    587
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +rep man , funny boss :P

    Find about scripting, programming and music! My blog: https://worldofsmth.wordpress.com!

  7. #7
    runemaster's Avatar Banned
    Reputation
    25
    Join Date
    Dec 2007
    Posts
    291
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by мιяаgє View Post
    Noice! I dont watch the office much, I find it boring :S +Rep
    thats what she said

  8. #8
    Sabens's Avatar Contributor
    Reputation
    151
    Join Date
    Oct 2006
    Posts
    266
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by runemaster View Post
    thats what she said

    LOL! Not too bad :P


    "They must find it difficult. . . Those who have taken authority as the truth, rather then truth as the authority." -Gerald Massey

Similar Threads

  1. Replies: 0
    Last Post: 05-09-2008, 02:50 PM
  2. [Request] Swift Brewfest Rams -> Reins of the Raven Lord
    By Undeadtauren in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 10-13-2007, 10:13 AM
  3. [Question] Axe of the Gronn Lords To Dark Edge of Insanity
    By Fenz in forum WoW ME Questions and Requests
    Replies: 1
    Last Post: 10-07-2007, 08:21 AM
  4. Legacy--->Axe of the Gronn Lords
    By bishop in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 06-13-2007, 10:45 PM
  5. Sergeant's Heavy Cape -> Cloak of the Brood Lord
    By czesiu in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 05-21-2007, 10:35 AM
All times are GMT -5. The time now is 09:09 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