[LUARelease] Fire Boss menu

User Tag List

Results 1 to 8 of 8
  1. #1
    y2kss66's Avatar Member
    Reputation
    104
    Join Date
    Jan 2008
    Posts
    778
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [LUARelease] Fire Boss

    Burn baby burn disco inferno!
    now that I got that out of the way.

    Here is the script:
    Code:
    function boss_OnEnterCombat(pUnit, Event)
      pUnit:SendChatMessage(12, 0, "Do not play with fire, else you want to be burned!")
      pUnit:RegisterEvent("boss_p1",1000, 0)
    end
    
    function boss_p1(pUnit, Event)
     if pUnit:GetHealthPct() < 95 then
      pUnit:RemoveEvents()
      pUnit:SendChatMessage (12, 0, "I am coming for you!")
      pUnit:FullCastSpell(42891, pUnit:GetRandomPlayer(0))
      pUnit:FullCastSpell(42891, pUnit:GetRandomPlayer(0))
      pUnit:RegisterEvent("boss_p2",1000, 0)
     end
    end
    
    function boss_p2(pUnit, Event)
     if pUnit:GetHealthPct() < 85 then
      pUnit:RemoveEvents()
      pUnit:SendChatMessage (12, 0, "You actually hit me?!?")
      pUnit:FullCastSpell(43046)
      pUnit:RegisterEvent("boss_p3",1000, 0)
     end
    end
    
    function boss_p3(pUnit, Event)
     if pUnit:GetHealthPct() < 75 then
      pUnit:RemoveEvents()
      pUnit:SendChatMessage (12, 0, "Feel the fire as it burns away your skin. Soon you will become as I am. SCARRED")
      Choice=math.random(1, 3)
      if Choice==1 then
        pUnit:CastSpellOnTarget(42926,pUnit:GetRandomPlayer(0))
      end
      if Choice==2 then
        pUnit:CastSpellOnTarget(42891,pUnit:GetRandomPlayer(0))
      end
      if Choice==3 then
        pUnit:CastSpellOnTarget(42950,pUnit:GetRandomPlayer(0))
      end
      pUnit:RegisterEvent("boss_p4",1000, 0)
     end
    end
    
    function boss_p4(pUnit, Event)
     if pUnit:GetHealthPct() < 45 then
      pUnit:RemoveEvents()
      pUnit:SendChatMessage (12, 0, "Burn!")
      pUnit:CastSpellOnTarget(42834, pUnit:GetRandomPlayer(0))
      pUnit:CastSpellOnTarget(42834, pUnit:GetRandomPlayer(0))
      pUnit:RegisterEvent("boss_p5",1000, 0)
     end
    end
    
    function boss_p5(pUnit, Event)
     if pUnit:GetHealthPct() < 25 then
      pUnit:RemoveEvents()
      pUnit:SendChatMessage (12, 0, "I am feeling cccold")
      pUnit:CastSpellOnTarget(47610, pUnit:GetRandomPlayer(0))
      pUnit:RegisterEvent("boss_p6",1000, 0)
     end
    end
      
    function boss_p6(pUnit, Event)
     if pUnit:GetHealthPct() <= 1 then
      pUnit:RemoveEvents()
      pUnit:SendChatMessage (12, 0, "My flame has been extinguished. I fight no more....")
      pUnit:CastSpellOnTarget(55360, pUnit:GetRandomPlayer(0))
      pUnit:RegisterEvent("boss_Died",1000, 0)
     end
    end
    
    function boss_OnKill(pUnit, Event)
     pUnit:SendChatMessage(12, 0, "You failed your master. I am still here! Ha Ha Ha Ha Ha Ha!")
    end
    
    function boss_Death(pUnit, Event)
     pUnit:RemoveEvents()
    end
    
    function boss_OnLeave(pUnit, Event)
     pUnit:RemoveEvents() 
    end
    
    RegisterUnitEvent(95438, 1, "boss_OnEnterCombat")
    RegisterUnitEvent(95438, 2, "boss_OnLeaveCombat")
    RegisterUnitEvent(95438, 3, "boss_OnKill")
    RegisterUnitEvent(95438, 4, "boss_Died")
    or

    DOWNLOAD NOW!

    Please comment on what you like and what you don't. Thanks!
    this is only my second script!
    Sorry!
    Password: y2kss66

    You can use any custom NPC as long as its ID is 95438.
    this is the one I used for a test:

    here is the sql:
    Code:
    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('95438','Fire Storm','The Fire that burns','','0','4','0','3','0',NULL,'14508','0','0','0','1','1','1',NULL);
    insert into `creature_proto` (`entry`, `minlevel`, `maxlevel`, `faction`, `minhealth`, `maxhealth`, `mana`, `scale`, `npcflags`, `attacktime`, `attacktype`, `mindamage`, `maxdamage`, `rangedattacktime`, `rangedmindamage`, `rangedmaxdamage`, `mountdisplayid`, `equipmodel1`, `equipmodel2`, `equipmodel3`, `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('95438','80','80','16','320500','330500','380075','2','0','2200','0','700','1000','0','0','0','0','0','0','0','72000','5600','0','1000000','0','0','0','0','1','0','','1','1000000','0','0','2.5','8','14','0');
    you may need to edit this if you use a different core than I did. I used the hearthstone/aspire core.
    Last edited by y2kss66; 01-24-2009 at 09:25 AM.

    [LUARelease] Fire Boss
  2. #2
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice dawg Would +Rep but needa spread it around.
    Immortal GamerZ Under Development!

  3. #3
    karal007's Avatar Member
    Reputation
    2
    Join Date
    May 2007
    Posts
    54
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where password
    Hey man Gold pls D

  4. #4
    y2kss66's Avatar Member
    Reputation
    104
    Join Date
    Jan 2008
    Posts
    778
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    password is there now sorry for the inconvenience. (Updated First Post) Thanks for the thanks bsod. Any other thoughts?

  5. #5
    Helstedxd's Avatar Active Member
    Reputation
    20
    Join Date
    Nov 2008
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    some screenshots?
    PHP: | | | | | | | | | |HTML: | | | | | | | | | |

  6. #6
    y2kss66's Avatar Member
    Reputation
    104
    Join Date
    Jan 2008
    Posts
    778
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    screenshots uploaded what do you all think? I believe I have all of my basis covered now.

  7. #7
    bsod-staff14's Avatar Member
    Reputation
    35
    Join Date
    Nov 2008
    Posts
    443
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tested it it works but for the noobs I would include a SQL( I can make one for you if you want x.x), more info on it. Thats it I think you did a excellent job the first time all I did was look at the LUA script and see it was good .
    Immortal GamerZ Under Development!

  8. #8
    y2kss66's Avatar Member
    Reputation
    104
    Join Date
    Jan 2008
    Posts
    778
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    alright. I will update the original post with a sql for the noobs.
    There is the SQL for everyones enjoyment!

Similar Threads

  1. [Selling] ** Warlock Green Fire Quest Boss Kill ** KANRETHAD Kill **
    By zstar21 in forum World of Warcraft Buy Sell Trade
    Replies: 197
    Last Post: 11-19-2014, 09:40 PM
  2. [Selling] Warlock Green Fire Boss Fight Kanrethad - Quest ~ 30 minutes - [ EU ]
    By klito in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 09-04-2014, 12:02 PM
  3. [Buying] WTB Kanrethad Kill. (Green Fire Boss) $75 upfron
    By lostinthewoodslol in forum WoW-US Account Buy Sell Trade
    Replies: 2
    Last Post: 04-12-2013, 06:10 PM
  4. Warlock green fire quest boss
    By TommyT in forum World of Warcraft General
    Replies: 2
    Last Post: 03-23-2013, 02:09 PM
  5. [Buying] WTB Warlock Green Fire Quest Boss Kill
    By Havocaveli in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 03-21-2013, 11:46 AM
All times are GMT -5. The time now is 04:49 PM. 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