Hello & Welcome to our community. Is this your first visit? Register
Follow us on
Follow us on Facebook Follow us on Twitter Watch us on YouTube


MMOCoin

Likes Likes:  0
Results 1 to 6 of 6
  1. #1
    Scout
    Torgash's Avatar
    Join Date
    Mar 2009
    Location
    In My Computer!
    Posts
    12
    Post Thanks / Like
    Rep Power
    16
    Reputation
    8

    Post [Release]Akil'zon [Lua][Custom]


    Register to remove this ad
    Hey Guys This Is My First Release And Be Nice i made this Akil'zon script it isnt the real one its a alot harder! attuned for 80 and a mad healer and tank

    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 (40020,'Akil\'zon','Eagle Avatar','',0,0,0,3,0,0,21630,0,0,0,1,1,NULL,0)
    INSERT INTO `creature_proto` (`entry`,`minlevel`,`maxlevel`,`faction`,`minhealth`,`maxhealth`,`mana`,`scale`,`npcflags`,`attacktime`,`attacktype`,`mindamage`,`maxdamage`,`can_ranged`,`rangedattacktime`,`rangedmindamage`,`rangedmaxdamage`,`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`,`spell1`,`spell2`,`spell3`,`spell4`,`spell_flags`,`modImmunities`) VALUES (40020,80,80,14,7430000,7430000,1230000,1,0,2300,0,17340,18320,0,0,0,0,0,0,0,0,0,0,0,0,3,0.9,'',1,383212,0,0,2.5,8,14,0,0,0,0,0,0,0)
    LUA:
    Code:
    print "This Script Is Made For MmoPro.Net"
    print "All Credits To Me Torgash"
    print "This Is Not The Blizzlike Fight Sorry"
    print "Enjoy The Boss!"
    
    function Akil_Combat(pUnit, event)
        pUnit:SendChatMessage(14, 0, "You Be Da Prey!")
            pUnit:RegisterEvent("Akil_Spell1", 8000, 10000)
            pUnit:RegisterEvent("Akil_Spell2", 12000, 10000)
            pUnit:RegisterEvent("Akil_Spell3", 15000, 10000)
            pUnit:RegisterEvent("Akil_Spell4", 20000, 10000)
            pUnit:RegisterEvent("Akil_pSpell1", 18000, 1000)
            pUnit:RegisterEvent("Akil_pSpell2", 60000, 1000)
            pUnit:RegisterEvent("Akil_pSpell3", 15000, 1000)
            pUnit:RegisterEvent("Akil_pSpell4", 60000, 1000)
    end
    
    --[[Spells]]--
    function Akil_Spell1(pUnit, event)
        pUnit:FullCastSpellOnTarget(59007, pUnit:GetMainTank())
    end
    
    function Akil_Spell2(pUnit, event)
        pUnit:FullCastSpellOnTarget(29915, pUnit:GetMainTank())
    end
    
    function Akil_Spell3(pUnit, event)
        pUnit:FullCastSpellOnTarget(42397, pUnit:GetMainTank())
    end
    
    function Akil_Spell4(pUnit, event)
        pUnit:CastSpell(43217)
    end
    
    function Akil_pSpell1(pUnit, event)
        pUnit:FullCastSpellOnTarget(49804, pUnit:GetMainTank())
    end
    
    function Akil_pSpell2(pUnit, event)
        pUnit:FullCastSpellOnTarget(28456, pUnit:GetMainTank())
    end
    
    function Akil_pSpell3(pUnit, event)
        pUnit:FullCastSpellOnTarget(55955, pUnit:GetMainTank())
    end
    
    function Akil_pSpell4(pUnit, event)
        pUnit:FullCastSpellOnTarget(21060, pUnit:GetRandomPlayer(0))
    end
    
    --Extra--
    
    function Akil_Died(pUnit, event)
        pUnit:SendChatMessage(14, 0, "No! Im Be Da Prey! You Be Da Predator! Zul'jin... Will... Be... Waiting...")
        pUnit:RemoveEvents()
    end
    
    function Akil_Killed(pUnit, event)
    print "Killed Target"
        pUnit:SendChatMessage(14, 0, "Enough!")
    end
    
    function Akil_Leave(pUnit, event)
        pUnit:SendChatMessage(14, 0, "Come My Birdies Eat There Corpse!")
        pUnit:RemoveEvents()
    end
    
    RegisterUnitEvent(40020, 1, "Akil_Combat")
    RegisterUnitEvent(40020, 2, "Akil_Leave")
    RegisterUnitEvent(40020, 3, "Akil_Killed")
    RegisterUnitEvent(40020, 4, "Akil_Died")
    Enjoy my boss



    Leave a tip if u wana help me get better remeber First Release!


    › See More: [Release]Akil'zon [Lua][Custom]
    Last edited by Torgash; 30-03-09 at 04:21 PM.



  2. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

  3. #2
    Beginner

    Join Date
    Mar 2009
    Location
    Germany
    Posts
    7
    Post Thanks / Like
    Rep Power
    16
    Reputation
    2
    Looks good
    I will try it

    anyway

  4. #3
    Scout
    Torgash's Avatar
    Join Date
    Mar 2009
    Location
    In My Computer!
    Posts
    12
    Post Thanks / Like
    Rep Power
    16
    Reputation
    8
    Ty (cant only type 2letters)

  5. #4
    Scout
    stoneharry's Avatar
    Join Date
    Feb 2009
    Posts
    16
    Post Thanks / Like
    Rep Power
    16
    Reputation
    10
    Simple but effective. My advise to you is to lose the prints, they will cause a server crash if the script is happening 2 times at once on a server! Personaly I only use print at the moment on script loadup, so that I can say "Made by stoneharry" etc. To make it display when loaded, you just put it anywhere on the script but outside the function.

  6. #5
    Contributor
    enegue's Avatar
    Join Date
    Aug 2008
    Location
    Before God
    Posts
    715
    Post Thanks / Like
    Rep Power
    17
    Reputation
    106
    Hm, I suggest putting some pictures of it. It will attract more downloads.

  7. #6
    Scout
    Torgash's Avatar
    Join Date
    Mar 2009
    Location
    In My Computer!
    Posts
    12
    Post Thanks / Like
    Rep Power
    16
    Reputation
    8

    Register to remove this ad
    Ty guys! i will remove the print function didnt know it could crash

 

 

Visitors found this page by searching for:

Nobody landed on this page from a search engine, yet!
SEO Blog

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT -5. The time now is 12:38 PM.
Powered by vBulletin® Copyright ©2000-2024, Jelsoft Enterprises Ltd.
See More links by ForumSetup.net. Feedback Buttons provided by Advanced Post Thanks / Like (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
vBulletin Licensed to: MMOPro.org