Page 1 of 2 1 2 LastLast
Results 1 to 15 of 21
  1. #1
    Contributor Claiver's Avatar
    Reputation
    138
    Join Date
    Mar 2009
    Location
    $Location
    Posts
    225
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0

    [Release] Rhanatos, God of Death

    ===| Rhanatos, God of Death |===
    ===| VERSION 1.2 |===

    ---| INTRODUCTION |----------------------------------------------------------------------------------------------------------------------------------
    Hello everyone! I'm Claiver and this is my very first release to MMOwned. I have been an active forumreader for quite a while, but I lost my account information etcetra, and decided to start with a completely new, fresh forum account.
    My very first release contains a raidboss, intended for level 80. Ofcourse you can tweak the script as much as you like, as long as you do not claim it your own :>.
    This script has been 100% made by me, so I'll just take the credit.
    Below you will find a short description of the actual fight, the LUA-script and, if you desire, I have added the SQL's for you too.

    ---| ENCOUNTER DESCRIPTION |-------------------------------------------------------------------------------------------------------------
    First of all I MUST say that 30% of the script is based on the DireMaul instance. Some parts of the code have static XYZ locations for the spawns of some NPCs and GameObjects during the fight. It is highly recommended to spawn Rhanatos in this location. Ofcourse you can tweak and change the locations of the spawns to suit your desired location. At the bottom of this post you will find a picture of Rhanatos' location he is intended to be, according to the script.

    The boss is tuned for level 80 and is intended to be fought by 10 players!

    The fight starts with a short cinematic. The fight consists out of a total of 4 phases. The first phase is triggered at 80% and causes all players to be stunned. Rhanatos will summon a Ghoul for every player in range. At 60% reinforcements will be summoned: 2 Healers that will heal the players, and some adds that aid the actual boss. The third phase is triggered at 40%: 2 altars will be spawned which summon one random add every X seconds.
    The script is configurable in the script.



    ---| DOWNLOAD |----------------------------------------------------------------------------------------------------------------------------------
    Last edited by Claiver; 04-02-2009 at 11:00 AM.

  2. #2
    Contributor Claiver's Avatar
    Reputation
    138
    Join Date
    Mar 2009
    Location
    $Location
    Posts
    225
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0
    .SQL VERSION 1.2
    Code:
    /* =============================================================================================
    			RHANATOS .SQL BY CLAIVER
      ============================================================================================== 
    
    **************[BOSS] Rhanatos, God of Death |***************************************************
    	+ DisplayID: 5988 | EntryID: 102001
    	+ HP: 3,459,836 | MP: 0
    	+ Scale: 1.5 | Combat Radius: 20 | Bounding Radius: 30
    	+ Additional notes:
    		- 20% HP: 15473 (Shadowform) &  51126 (New Shadowform)
    			
    		[__________][ SQL for Thanatos ][______________________________________________________]*/
    		DELETE FROM creature_names WHERE entry = 102001; 
    		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
    		   (102001, 'Thanatos', 'God of Death', '', 0, 0, 0, 3, 0, 0, 5988, 0, 0, 0, 1, 1, NULL, 0); 
    		   
    		DELETE FROM creature_proto WHERE entry = 102001;
    		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
    		   (102001, 80, 80, 1720, 13459836, 15459836, 0, 1.5, 0, 2300, 0, 7252, 9252, 0, 0, 0, 0, 360000000, 1680, 0, 0, 0, 0, 0, 0, 5, 30, '0', 1, 43003, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    
    		DELETE FROM creature_names WHERE entry = 102101; 
    		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
    		   (102101, 'Army of the Dead Ghoul', 'Minion of Thanatos', '', 0, 6, 0, 1, 0, 0, 26079, 24993, 10626, 0, 1, 1, NULL, 0); 
    			   
    		DELETE FROM creature_proto WHERE entry = 102101;
    		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
    		   (102101, 80, 80, 1720, 245983, 445983, 0, 1.5, 0, 2500, 0, 852, 2052, 0, 0, 0, 0, 360000000, 0, 0, 0, 0, 0, 0, 0, 5, 90, '0', 1, 3, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    
    		DELETE FROM creature_names WHERE entry = 102102; 
    		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
    		   (102102, 'Shadow Worshipper of Thanatos', 'Servant of Thanatos', '', 0, 6, 0, 1, 0, 0, 18601, 0, 0, 0, 1, 1, NULL, 0); 
    			   
    		DELETE FROM creature_proto WHERE entry = 102102;
    		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
    		   (102102, 80, 80, 1720, 135983, 175983, 248503, 1, 0, 2500, 0, 952, 1652, 0, 0, 0, 0, 360000000, 0, 0, 0, 0, 0, 0, 0, 5, 90, '0', 1, 3, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    
    		DELETE FROM creature_names WHERE entry = 102103; 
    		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
    		   (102103, 'Holy Worshipper of Thanatos', 'Servant of Thanatos', '', 0, 6, 0, 1, 0, 0, 17755, 0, 0, 0, 1, 1, NULL, 0); 
    			   
    		DELETE FROM creature_proto WHERE entry = 102103;
    		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
    		   (102103, 80, 80, 1720, 115983, 135983, 248503, 1, 0, 2500, 0, 952, 1652, 0, 0, 0, 0, 360000000, 0, 0, 0, 0, 0, 0, 0, 5, 90, '0', 1, 3, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    
    		DELETE FROM creature_names WHERE entry = 102104; 
    		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
    		   (102104, 'Allied Sorceress', 'Worshipper of God', '', 0, 6, 0, 1, 0, 0, 17325, 0, 0, 0, 1, 1, NULL, 0); 
    			   
    		DELETE FROM creature_proto WHERE entry = 102104;
    		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
    		   (102104, 80, 80, 1719, 115983, 135983, 248503, 1, 0, 2500, 0, 952, 1652, 0, 0, 0, 0, 360000000, 0, 0, 0, 0, 0, 0, 0, 5, 90, '0', 1, 3, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    		
    		DELETE FROM creature_names WHERE entry = 102105; 
    		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
    		   (102105, 'Allied Battlemage', 'Worshipper of God', '', 0, 6, 0, 1, 0, 0, 22847, 20866, 0, 0, 1, 1, NULL, 0); 
    			   
    		DELETE FROM creature_proto WHERE entry = 102105;
    		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
    		   (102105, 80, 80, 1719, 115983, 135983, 248503, 1.5, 0, 2500, 0, 952, 1652, 0, 0, 0, 0, 360000000, 0, 0, 0, 0, 0, 0, 0, 5, 90, '0', 1, 3, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    		
    		DELETE FROM creature_names WHERE entry = 102106; 
    		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
    		   (102106, 'Allied Footman', 'Worshipper of God', '', 0, 6, 0, 1, 0, 0, 17322, 0, 0, 0, 1, 1, NULL, 0); 
    			   
    		DELETE FROM creature_proto WHERE entry = 102106;
    		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
    		   (102106, 80, 80, 1719, 215983, 235983, 0, 1, 0, 2500, 0, 352, 652, 0, 0, 0, 0, 360000000, 0, 0, 0, 0, 0, 0, 0, 5, 90, '0', 1, 3, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    
    		DELETE FROM creature_names WHERE entry = 102107; 
    		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
    		   (102107, 'Allied Priest', 'Worshipper of God', '', 0, 6, 0, 1, 0, 0, 24886, 0, 0, 0, 1, 1, NULL, 0); 
    			   
    		DELETE FROM creature_proto WHERE entry = 102107;
    		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
    		   (102107, 80, 80, 1719, 95983, 115983, 0, 0.8, 0, 2500, 0, 352, 652, 0, 0, 0, 0, 360000000, 0, 0, 0, 0, 0, 0, 0, 5, 90, '0', 1, 3, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    
    		DELETE FROM creature_names WHERE entry = 102108; 
    		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
    		   (102108, 'Allied Druid', 'Worshipper of God', '', 0, 6, 0, 1, 0, 0, 14354, 0, 0, 0, 1, 1, NULL, 0); 
    			   
    		DELETE FROM creature_proto WHERE entry = 102108;
    		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
    		   (102108, 80, 80, 1719, 95983, 115983, 0, 0.8, 0, 2500, 0, 352, 652, 0, 0, 0, 0, 360000000, 0, 0, 0, 0, 0, 0, 0, 5, 90, '0', 1, 3, 0, 0, 2.5, 8, 14, 0, 0, 0, 0, 0, 0, 0);
    ---| ADDITIONAL |----------------------------------------------------------------------------------------------------------------------------------
    Well that's it. Still in a testing phase, so some things might not function 100%, but most of the code that I have tested works as intended. Be sure to report any bugs you find, and I will look 'em up and exterminate them, solve them, post the solution.
    Thanks for using my script & I appreciate any feedback given!

    ---| REQUIREMENTS |----------------------------------------------------------------------------------------------------------------------------------
    • The LSL Library: Link



    ---| SCREENSHOTS |----------------------------------------------------------------------------------------------------------------------------------

    ---| CHANGELOG |----------------------------------------------------------------------------------------------------------------------------------
    Version 1.2
    - Will now give every encounter a 'unique' ID for printing and LOG purpose.
    - Added Advanced Print support. Will print a combat overview of how many players are alive during the encounter, shows their NAME, HP, RACE, CLASS and wether they are dead or not. Also at the loading of the LUA script it will now show a quick overview on the variables and such.
    - Succesfully made the Healer and Druid who spawned, correctly heal and buff the players. Also the BattleMage will help you fight Rhanatos aswell! (Updating the other classes to help aswell.)
    Kindest Regards,
    Claiver
    Last edited by Claiver; 04-02-2009 at 11:12 AM.

  3. #3
    Innovation & Emulation My CoreCoins User Title
    stoneharry's Avatar
    Reputation
    1142
    Join Date
    Sep 2007
    Location
    Great Britain
    Posts
    3,619
    Blog Entries
    6
    CoreCoins
    32

    Trade Feedbacks

    Positive
    0
    Negative
    0
    It's so neat and tidy, I love the way you've fully customised it so you can define where you want what, and you use perfect standard English. This is probably one of the few decent Lua boss I have seen. +Rep x3

    Edit: After getting over a the fact this is such a good release, theres a couple of things you can change. You said somewhere that you would post a screenshot of the location at the bottom of the post, but you havn't, and also a couple of screenshots or a video of the fight usually show a lot more than words
    Last edited by stoneharry; 03-18-2009 at 05:25 PM.

  4. #4
    Contributor Claiver's Avatar
    Reputation
    138
    Join Date
    Mar 2009
    Location
    $Location
    Posts
    225
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Quote Originally Posted by stoneharry View Post
    It's so neat and tidy, I love the way you've fully customised it so you can define where you want what, and you use perfect standard English. This is probably one of the few decent Lua boss I have seen. +Rep x3
    I thank you for your compliments, and I appreciate the time you took to reply to my thread.


    EDIT:
    Quote Originally Posted by stoneharry View Post
    Edit: After getting over a the fact this is such a good release, theres a couple of things you can change. You said somewhere that you would post a screenshot of the location at the bottom of the post, but you havn't, and also a couple of screenshots or a video of the fight usually show a lot more than words
    Yes, the screenshots had to get a nice edit, so my apologies for them not being in there yet. They are in it now though.
    As for the video, great idea! Will get the players on my server to test him, can't exactly tell when, but pretty soon I suppose! Thank you once again for your constructive criticism.
    Last edited by Claiver; 03-18-2009 at 05:57 PM.

  5. #5
    Contributor
    Sounddead's Avatar
    Reputation
    160
    Join Date
    Sep 2007
    Location
    Canada
    Posts
    1,132
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Very nice indeed. Good release! +rep

    I live in a shoe

  6. #6
    Contributor Claiver's Avatar
    Reputation
    138
    Join Date
    Mar 2009
    Location
    $Location
    Posts
    225
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Thanks .

    Updated the:

    ---| SCREENSHOTS |----------------------------------------------------------------------------------------------------------------------------------

  7. #7
    Sergeant Major
    Mr.Ice.Cold's Avatar
    Reputation
    26
    Join Date
    Apr 2007
    Posts
    165
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Very nice work, +Rep!

  8. #8
    Member
    Reputation
    4
    Join Date
    Oct 2007
    Posts
    44
    CoreCoins
    0

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Awesome release. +rep as soon as I can

  9. #9
    Contributor
    y2kss66's Avatar
    Reputation
    104
    Join Date
    Jan 2008
    Location
    127.0.0.1
    Posts
    778
    CoreCoins
    0

    Trade Feedbacks

    Positive
    0
    Negative
    0
    very nice +RepX2

  10. #10
    Contributor Claiver's Avatar
    Reputation
    138
    Join Date
    Mar 2009
    Location
    $Location
    Posts
    225
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Quote Originally Posted by y2kss66 View Post
    very nice +RepX2
    Quote Originally Posted by enegue View Post
    Awesome release. +rep as soon as I can
    Quote Originally Posted by Cece1 View Post
    Very nice work, +Rep!
    Thanks !

  11. #11
    Knight-Lieutenant
    Sandile's Avatar
    Reputation
    32
    Join Date
    Aug 2008
    Location
    Sweden
    Posts
    314
    CoreCoins
    0

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Looks nice, I might check it out in the future. +rep for your efforts thou.
    "i downloaded it in "pirates bay", can you tell me how to download it in steam, pls"

  12. #12
    Contributor Claiver's Avatar
    Reputation
    138
    Join Date
    Mar 2009
    Location
    $Location
    Posts
    225
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Quote Originally Posted by Sandile View Post
    Looks nice, I might check it out in the future. +rep for your efforts thou.
    I kindly thank you!

  13. #13
    Master Sergeant Mircast's Avatar
    Reputation
    14
    Join Date
    Sep 2008
    Location
    London
    Posts
    139
    CoreCoins
    0

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Code:
    my_1table = entry.GetPlayerInRange(pUnit)
    	for _,Player in pairs(my_1table) do
    Briefly explain? I might need to use this in further scripts.

    +rep btw

  14. #14
    Contributor Claiver's Avatar
    Reputation
    138
    Join Date
    Mar 2009
    Location
    $Location
    Posts
    225
    CoreCoins
    1

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Quote Originally Posted by josh253 View Post
    Code:
    my_1table = entry.GetPlayerInRange(pUnit)
    	for _,Player in pairs(my_1table) do
    Briefly explain? I might need to use this in further scripts.

    +rep btw
    It will get all players in range and for every player it will do X (after do). LSLLibrary is required, but I think every 'advanced' server owner has a copy of it. I will add a requirements section to the main post tomorrow, time to take a nap now.

    Thank you for your feedback.

    EDIT: Added the requirements with links!
    Last edited by Claiver; 03-20-2009 at 05:11 AM.

  15. #15
    Contributor svedin's Avatar
    Reputation
    122
    Join Date
    Jun 2008
    Location
    Sweden
    Posts
    557
    CoreCoins
    0

    Trade Feedbacks

    Positive
    0
    Negative
    0
    Very nice release i maby will check it out and use it if i like it
    +Rep

    Keep the good work up
    //Svedin

 

 
Page 1 of 2 1 2 LastLast

Bookmarks

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 -4. The time now is 12:56 PM. Powered by vBulletin® Version 4.2.0
Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.
Content Relevant URLs by vBSEO
vBulletin Optimisation by vB Optimise. Digital Point modules: Sphinx-based search

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214