[Release]Arcane Wizard Script menu

Shout-Out

User Tag List

Results 1 to 10 of 10
  1. #1
    Juicyz's Avatar Active Member
    Reputation
    34
    Join Date
    Dec 2006
    Posts
    298
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Release]Arcane Wizard Script

    This is a script for one of my mobs in an instance. It is a wizard mob(as you can tell)


    Code:
    function Arcane_Wizard_Casting(pUnit, event)
    if pUnit:GetHealthPct() < 99 then
    pUnit:FullCastSpellOnTarget(20692, pUnit:GetMainTank())
    pUnit:SendChatMessage(11,0,"I Will Not Be Defeated!!")
    end
    end
     
    function Arcane_Wizard_onCombat (pUnit, Event)
    pUnit:SendChatMessage(11, 0, "You Cant Run From My Fireballs!")
    pUnit:RegisterEvent("Arcane_Wizard_Casting",5000,0)
    end
     
    function Arcane_Wizard_onLeaveCombat(pUnit, Event)
    pUnit:RemoveAura(20692)
    pUnit:RemoveEvents()
    end
     
    function Arcane_Wizard_onDeath(pUnit, Event)
    pUnit:SendChatMessage(11,0,"You Have Not Won!")
    pUnit:RemoveAura(20692)
    pUnit:RemoveEvents()
    end
     
    RegisterUnitEvent (180030, 1, "Arcane_Wizard_onCombat")
    RegisterUnitEvent (180030, 2, "Arcane_Wizard_onLeaveCombat")
    RegisterUnitEvent (180030, 4, "Arcane_Wizard_onDeath")

    Tell you What It Does:
    When The Wizard enters combat it says You Cant Dodge My FireBalls!
    Then at 99% it casts a FireBall: (Every 5 Seconds) 50 yd rangeInflicts 2890 to 3910 Fire damage to an enemy.
    And in that same event he says I Will Not Be Defeated
    When He dies he says You Have Not Won

    Last edited by Juicyz; 03-28-2008 at 08:24 PM. Reason: Fixing script

    [Release]Arcane Wizard Script
  2. #2
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Time in MS it will do it again.
    Cheese Cake?

  3. #3
    Juicyz's Avatar Active Member
    Reputation
    34
    Join Date
    Dec 2006
    Posts
    298
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Okay Thank Fixing My Script

  4. #4
    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)
    There are a couple errors in your script, you should fix them

  5. #5
    Juicyz's Avatar Active Member
    Reputation
    34
    Join Date
    Dec 2006
    Posts
    298
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Like Can you tell me what??

  6. #6
    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)
    EDIT: Nvm, I thought they were cast functions, didn't take a close look sorry but still
    Code:
    function Arcane_Wizard_onCombat (pUnit, Event)
    pUnit:SendChatMessage(11, 0, "You Cant Run From My Fireballs!")
    pUnit:RegisterEvent("Arcane_Wizard_Casting",5000,0)
     
    end
    should be
    Code:
    function Arcane_Wizard_onCombat (pUnit, Event)
    pUnit:SendChatMessage(11, 0, "You Cant Run From My Fireballs!")
    pUnit:RegisterEvent("Arcane_Wizard_Casting",5000,0)
    end
    Last edited by Lich King; 03-28-2008 at 08:17 PM.

  7. #7
    atogz's Avatar Member
    Reputation
    5
    Join Date
    Mar 2008
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    nice +rep

  8. #8
    Juicyz's Avatar Active Member
    Reputation
    34
    Join Date
    Dec 2006
    Posts
    298
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is that it?

  9. #9
    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)
    Sorry, I thought there were other errors but I didn't take a closer look sorry again
    BTW +Rep

  10. #10
    Juicyz's Avatar Active Member
    Reputation
    34
    Join Date
    Dec 2006
    Posts
    298
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you!!!

Similar Threads

  1. [Release] Voting Reward Script
    By TheSpidey in forum WoW EMU General Releases
    Replies: 178
    Last Post: 03-26-2009, 05:25 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]2 LUA Scripts I Made
    By Juicyz in forum World of Warcraft Emulator Servers
    Replies: 6
    Last Post: 04-13-2008, 10:55 PM
  4. [Release] Satan! Custom scripted lvl200 5manboss
    By b!atch in forum World of Warcraft Emulator Servers
    Replies: 15
    Last Post: 04-01-2008, 01:43 PM
  5. [Release] IP finder script
    By warsheep in forum Programming
    Replies: 1
    Last Post: 03-09-2008, 02:59 PM
All times are GMT -5. The time now is 01:00 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