[Guide] Creating a LUA bossfight! menu

User Tag List

Page 2 of 4 FirstFirst 1234 LastLast
Results 16 to 30 of 55
  1. #16
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Meltoor, thats what the
    Unit:RemoveEvents()
    does, it makes sure it doesnt go back to the first percentage check.
    Life Puzzler WoW - Website | Forums

    [Guide] Creating a LUA bossfight!
  2. #17
    Meltoor's Avatar Contributor
    Reputation
    146
    Join Date
    Jan 2007
    Posts
    292
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I see now.

  3. #18
    Pragma's Avatar Contributor
    Reputation
    261
    Join Date
    Feb 2007
    Posts
    630
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice guide Gastic, I hate that on the rev I'm using the RemoveEvents() function doesnt work. +rep


  4. #19
    *TraPStaR*'s Avatar Contributor
    Reputation
    164
    Join Date
    Aug 2007
    Posts
    275
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    pure win /bow to you man great guide i dont wrote 3 bosses just to test it btw i would love to try a advanced one /hint hint nudge nudge

  5. #20
    Shao111's Avatar Active Member
    Reputation
    33
    Join Date
    Jul 2007
    Posts
    281
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    EXCELLENT guide, love your work. Almost willing to buy the advanced guide!

  6. #21
    Iceknight001's Avatar Active Member
    Reputation
    21
    Join Date
    Jan 2007
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    THanks

    Thanks heaps man i could really use this!!!

  7. #22
    blah7's Avatar Member
    Reputation
    6
    Join Date
    Aug 2006
    Posts
    59
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Here is my problem... once he gets down to 70% he cast frostbolt (my version) and doesn't stop casting it at all.... he just keeps on and on and on.....

    Here is my script

    function LordThanatos_Phase1(Unit, event)
    if Unit:GetHealthPct() < 70 then
    Unit:CastSpell(2847
    Unit:RegisterEvent("LordThanatos_Doom",25000, 0)
    Unit:RegisterEvent("LordThanatos_Phase2",1000, 0)
    Unit:RegisterEvent("LordThanatos_Phase3",1000, 0)
    end
    end

    function LordThanatos_Doom(Unit)
    Unit:CastSpell(29204)
    Unit:SendChatMessage(12, 0, "FEEL DEATHS TOUCH!!!")
    end

    function LordThanatos_Phase2(Unit, event)
    if Unit:GetHealthPct() < 50 then
    Unit:RemoveEvents()
    Unit:CastSpell(2847
    Unit:SendChatMessage(12, 0, "YOU THINK YOU CAN KILL ME!?")
    end
    end

    function LordThanatos_Phase3(Unit, event)
    if Unit:GetHealthPct() < 20 then
    Unit:RemoveEvents()
    Unit:CastSpell(23537)
    Unit:SendChatMessage(12, 0, "YOU ARE STARTING TO PISS ME OFF!!")
    end
    end

    function LordThanatos_OnCombat(Unit, event)
    Unit:RegisterEvent("LordThanatos_Phase1",1000, 0)
    end
    RegisterUnitEvent(101010, 1, "LordThanatos_OnCombat")

  8. #23
    King Shaun's Avatar Member
    Reputation
    419
    Join Date
    Dec 2007
    Posts
    1,305
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you so much for this guide mate, it is very useful..
    I shall use it myself, thanks again mate.. /smile

    Many kind regards,
    Shaun.

    Rep added.


    Threads of the Week: [Errage] [Blizzard] [Rapidshare]

  9. #24
    King Shaun's Avatar Member
    Reputation
    419
    Join Date
    Dec 2007
    Posts
    1,305
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I only have one problem with this mate..
    Is this right what I am thinkin'..

    Open up notepad..
    Do the script..

    But how do I save into a .lua file in notepad. /smile

    Thanks for your help mate..
    If I get any.. /laugh


    Threads of the Week: [Errage] [Blizzard] [Rapidshare]

  10. #25
    MysticViper's Avatar Active Member
    Reputation
    15
    Join Date
    Jan 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    just do, save as > name.lua

    just add .lua after the name and it converts to lua

    and for blah7

    from what i'm trying to understand,

    unction LordThanatos_Doom(Unit)
    Unit:CastSpell(29204)

    should be the same as

    function LordThanatos_Phase1(Unit, event)
    if Unit:GetHealthPct() < 70 then
    Unit:CastSpell(28478)

  11. #26
    Gastricpenguin's Avatar Legendary
    Reputation
    980
    Join Date
    Feb 2007
    Posts
    2,236
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well there is a problem in your script. This boss would only reach phase 2 then all of the other functions would be removed. You only registered the events to check every second in the first phase, so once it hits the second phase - Those checks are removed, and phase 3 isnt registered. You need to register the next event in each phase.
    Life Puzzler WoW - Website | Forums

  12. #27
    King Shaun's Avatar Member
    Reputation
    419
    Join Date
    Dec 2007
    Posts
    1,305
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for your help, I will see if that works later.. /smile


    Threads of the Week: [Errage] [Blizzard] [Rapidshare]

  13. #28
    Ellenor's Avatar Active Member
    Reputation
    18
    Join Date
    Jan 2008
    Posts
    281
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well it work on 70% but after that i get crushed.... oo well thx for ur hard work +rep!

  14. #29
    3shirtlessmen's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sweet! I can use this on my server! Thanks!

  15. #30
    Halftide's Avatar Member
    Reputation
    1
    Join Date
    Jan 2008
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    nice guide

    Woot very nice guide its really cool hoping to see more guides from you 6):

Page 2 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Guide] Create teleports
    By Respawn in forum WoW EMU Guides & Tutorials
    Replies: 12
    Last Post: 06-15-2008, 10:41 AM
  2. [Guide] Create a custom Portable Telerporter!
    By Murlock. in forum WoW EMU Guides & Tutorials
    Replies: 45
    Last Post: 04-02-2008, 02:41 PM
  3. [Guide] create your own island
    By kate1 in forum WoW EMU Guides & Tutorials
    Replies: 49
    Last Post: 02-24-2008, 02:09 PM
  4. [RELEASE] LUA Bossfight
    By Shao111 in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 01-23-2008, 03:03 PM
  5. [Guide] Creating and Compiling a Teleporter NPC
    By Gastricpenguin in forum WoW EMU Guides & Tutorials
    Replies: 59
    Last Post: 10-29-2007, 03:06 PM
All times are GMT -5. The time now is 11:11 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