[Lua] The Lich King - Blizzlike menu

Shout-Out

User Tag List

Page 8 of 14 FirstFirst ... 456789101112 ... LastLast
Results 106 to 120 of 198
  1. #106
    kjankoski's Avatar Active Member
    Reputation
    30
    Join Date
    May 2009
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by alerbros View Post
    Stoneharry, how would you make the visual when tirion knocks the frostmourne out of his hand, blizzlike?
    Hydroxis updated this script, including that part. The script was released on ****** I'm waiting for moderator to approve the share thread I made here (I guess).

    [Lua] The Lich King - Blizzlike
  2. #107
    P1raten's Avatar Banned
    Reputation
    500
    Join Date
    Mar 2008
    Posts
    1,323
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by kjankoski View Post
    Hydroxis updated this script, including that part. The script was released on ****** I'm waiting for moderator to approve the share thread I made here (I guess).
    lololololol.

  3. #108
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    I will update this script once I get round to it since unfortunatly the few parts kjanko/hydroxis did change were not always to blizzlike.

  4. #109
    Hurracane's Avatar Member
    Reputation
    7
    Join Date
    Nov 2008
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I thought id have a small tinker around with the defile spawning and stuff... so i made this small function that will spawn defile at a random player for 30 seconds...

    yes, it's very basic, and im still wondering how the damage is handled and all that stuff... but it's a start :P

    Code:
    ---- Defile ------------------------------------------------------
    
    function Defile_Spawn(pUnit, Event)
    	local plr = Lich:GetRandomPlayer()
    	if plr ~= nil then
    		Lich:FullCastSpell(72762, plr)
    		x = plr:GetX()
    		y = plr:GetY()
    		z = plr:GetZ()
    		o = plr:GetO()
    		Lich:SpawnCreature(38757, x, y, z, o, 15, 30000) -- Im assuming defile will need to be inserted, with this NPC ID or change this later ofc...
    	end
    end

  5. #110
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Hurracane View Post
    I thought id have a small tinker around with the defile spawning and stuff... so i made this small function that will spawn defile at a random player for 30 seconds...

    yes, it's very basic, and im still wondering how the damage is handled and all that stuff... but it's a start :P

    Code:
    ---- Defile ------------------------------------------------------
     
    function Defile_Spawn(pUnit, Event)
        local plr = Lich:GetRandomPlayer()
        if plr ~= nil then
            Lich:FullCastSpell(72762, plr)
            x = plr:GetX()
            y = plr:GetY()
            z = plr:GetZ()
            o = plr:GetO()
            Lich:SpawnCreature(38757, x, y, z, o, 15, 30000) -- Im assuming defile will need to be inserted, with this NPC ID or change this later ofc...
        end
    end

    GetRandomPlayer needs a type, so set that to 0 to be able to get any player, Lich:GetRandomPlayer(0).
    Also it increases scale/damage depending on if anyone is within the location, so I would have the npc check every second (defile npc) for nearest player. If player is within X amount then increase scale, and just keep repeating till it despawns. Now the issue would be dealing damage, which I am not sure how to do. :/

  6. #111
    Hurracane's Avatar Member
    Reputation
    7
    Join Date
    Nov 2008
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ah yes, forgot the zero :P

    I know a bit of C# and java, so i understand all this, but im not that familar with lua, so it's taking me a bit to figure it out.

    I'm thinking of something like:
    Code:
    function Defile_Check_For_Players(pUnit, Event)
    	local plr = pUnit:GetRandomPlayer(1)
    	if pUnit:GetDistanceYards(plr) < 5 then
    		pUnit:CastSpellOnTarget(73708, plr)
                    sc = pUnit:GetScale()
                    pUnit:SetScale(sc + 0.2)
    	else
    		plr:RemoveAura(73708)
    	end
    end
    Last edited by Hurracane; 04-07-2010 at 11:01 AM.

  7. #112
    joseh_mig's Avatar Private
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Really nice

  8. #113
    kjankoski's Avatar Active Member
    Reputation
    30
    Join Date
    May 2009
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It's a spell that incrases the scale of Defile.
    Defile - Spell - World of Warcraft

  9. #114
    Daskin's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    local plrs = pUnit:GetInRangePlayers()
    	for k,v in pairs (plrs) do
    		if(pUnit:GetDistanceYards(v) < 5 then
    			if(ticks == 1) then
    			v:CastSpell(72754)
    			elseif (ticks == 2) then
    			v:CastSpell(73708)
    			elseif (ticks == 3) then
    			v:CastSpell(73709)
    			end
    			pUnit:SetScale(pUnit:GetScale() + 0.2)
    			ticks = ticks + 1
    			end
    		end
    	end
    Something like that?

  10. #115
    kjankoski's Avatar Active Member
    Reputation
    30
    Join Date
    May 2009
    Posts
    110
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Where did you define ticks?

  11. #116
    Daskin's Avatar Member
    Reputation
    1
    Join Date
    Jul 2009
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I missed that part out, aswell as registering the function every sec or something.

  12. #117
    d3rrial's Avatar Contributor Authenticator enabled
    Reputation
    127
    Join Date
    Apr 2010
    Posts
    527
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyway, I like the script it is similar to the original one and I think very good for only the standard ArcEmu interpreter.

  13. #118
    exploiter2k09's Avatar Member
    Reputation
    1
    Join Date
    Feb 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi first of all sorry for my bad englisch =P
    I wanted to send u a PM but because off my post count of "0" i couldnt.
    What i wanted to ask was:
    I think this script is very good but i cant test it =P
    I downloaded your script put the lichking.lua into my scripts directory and loaded the sql into my world database.
    Im using the newest ascent wish i compiled by myself and a 3.3.2 database i hope so =P
    Now my question... when i go into the icc i cant use the teleporter to the lich king... how do i get to come to him?
    I hope i dont annoy you but i hope u could say me wich database u think is the best when i want to play blizzlike? Is there any database wich include most of the icc stuff?
    Greetings
    Max

  14. #119
    stoneharry's Avatar Moderator Harry


    Reputation
    1618
    Join Date
    Sep 2007
    Posts
    4,564
    Thanks G/R
    151/150
    Trade Feedback
    0 (0%)
    Mentioned
    4 Post(s)
    Tagged
    0 Thread(s)
    There is no database that currently supports Arcemu with ICC. To get there either: use the recall as a GM; make your own teleporter; or wait for a DB to support ICC.

  15. #120
    92eatos's Avatar Contributor
    Reputation
    104
    Join Date
    Aug 2009
    Posts
    220
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol db do support ICC well mine does and area triggers works fine..I was busy these days to full update it but it works.For bugs and missing this you can report it to me on msn [email protected]

Page 8 of 14 FirstFirst ... 456789101112 ... LastLast

Similar Threads

  1. Wrath of the lich king confirmed
    By Cheezeit117 in forum World of Warcraft General
    Replies: 16
    Last Post: 06-20-2018, 09:04 AM
  2. BLIZZLIKE - www.starrheld.co.uk - Wrath of the Lich King 3.3.5
    By kevyin in forum WoW Emulator Server Listings
    Replies: 2
    Last Post: 12-27-2016, 02:10 PM
  3. [Lua] The Lich King (not blizzlike)
    By Ground Zero in forum WoW EMU General Releases
    Replies: 5
    Last Post: 02-23-2010, 05:46 AM
  4. Wrath of the Lich King World Map
    By Ferriz in forum World of Warcraft Exploration
    Replies: 40
    Last Post: 08-22-2007, 01:37 AM
  5. Some facts about Wrath of the Lich King.
    By Duplicity in forum World of Warcraft General
    Replies: 11
    Last Post: 08-04-2007, 03:03 PM
All times are GMT -5. The time now is 08:58 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