Results 1 to 9 of 9
  1. #1
    sacredmike's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Uranus ;)
    Posts
    685
    Reputation
    15
    Thanks
    3,255
    My Mood
    Devilish

    Partial Davy Jones Behavior

    This was made by me and some help from @rangewolf5
    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using wServer.realm;
    using wServer.logic.attack;
    using wServer.logic.movement;
    using wServer.logic.loot;
    using wServer.logic.taunt;
    using wServer.logic.cond;
    
    
    namespace wServer.logic
     {
        partial class BehaviorDb
        {
            static _ Davy = Behav()
                .Init(0x0e32, Behaves("Davy Jones",
                new RunBehaviors(
                    SimpleWandering.Instance(2, 5),
                            Cooldown.Instance(2000, MultiAttack.Instance(25, 10 * (float)Math.PI / 180, 5, 0, projectileIndex: 0)),
                            Cooldown.Instance(4000, MultiAttack.Instance(25, 10 * (float)Math.PI / 180, 1, 0, projectileIndex: 1)),
                            Cooldown.Instance(4000, MultiAttack.Instance(25, 10 * (float)Math.PI / 180, 1, 0, projectileIndex: 1))
                            ),
                HpLesserPercent.Instance(0.3f,
                new RunBehaviors(
                            Once.Instance(SetConditionEffect.Instance(ConditionEffectIndex.Invulnerable)),
                            Once.Instance(SetConditionEffect.Instance(ConditionEffectIndex.Paralyzed)),
                            Once.Instance(new SimpleTaunt("Avast, ye filthy mongrel!")),
                            Cooldown.Instance(15000, Once.Instance(UnsetConditionEffect.Instance(ConditionEffectIndex.Invulnerable))), 
                            Cooldown.Instance(15000, Once.Instance(UnsetConditionEffect.Instance(ConditionEffectIndex.Paralyzed)))
                           )),
            	                      
                HpLesserPercent.Instance(0.6f,
                new RunBehaviors(
                            Once.Instance(SetConditionEffect.Instance(ConditionEffectIndex.Invulnerable)),
                            Once.Instance(SetConditionEffect.Instance(ConditionEffectIndex.Paralyzed)),
                            Once.Instance(new SimpleTaunt("On your knees ye slimey sea slurp!")),
                            Cooldown.Instance(15000, Once.Instance(UnsetConditionEffect.Instance(ConditionEffectIndex.Invulnerable))), 
                            Cooldown.Instance(15000, Once.Instance(UnsetConditionEffect.Instance(ConditionEffectIndex.Paralyzed))),
                            Once.Instance(new SimpleTaunt("Be gone with ye"))
                           )),
                           
            	             
                            
                                                            
                            loot: new LootBehavior(LootDef.Empty,
                           Tuple.Create(100, new LootDef(0, 5, 0, 10,
                                Tuple.Create(0.01, (ILoot)new ItemLoot("Spirit Dagger")),
                                Tuple.Create(0.03, (ILoot)new ItemLoot("Spectral Cloth Armor")),
                                Tuple.Create(0.01, (ILoot)new ItemLoot("Ghostly Prism")),
                                Tuple.Create(0.99, (ILoot)new ItemLoot("Potion of Wisdom")),
                                Tuple.Create(0.03, (ILoot)new ItemLoot("Captain's Ring")),
                                Tuple.Create(0.85, (ILoot)new ItemLoot("Ghost Pirate Rum")),
                                Tuple.Create(0.20, (ILoot)new ItemLoot("Potion of Attack")),
                                Tuple.Create(0.09, (ILoot)new ItemLoot("Wine Cellar Incantation")),
                                Tuple.Create(0.20, (ILoot)new ItemLoot("Desolation Armor"))
                            ))
                        )
                           ));
        }
    }
    Last edited by sacredmike; 08-10-2013 at 04:16 AM.

  2. #2
    sparzinrotmg's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    107
    Reputation
    10
    Thanks
    1,026
    My Mood
    Amused
    This is not what a Davy Jones does O_O You forgot the Barrels, and that

  3. #3
    noob2137's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    163
    Reputation
    10
    Thanks
    889
    My Mood
    Busy
    Quote Originally Posted by sparzinrotmg View Post
    This is not what a Davy Jones does O_O You forgot the Barrels, and that
    The title says PRTIAL. What do you expect?

  4. #4
    Stellar Spark's Avatar
    Join Date
    Jun 2013
    Gender
    female
    Posts
    724
    Reputation
    35
    Thanks
    799
    I thought that Davy does RingAttacks, not MultiAttacks. But since I don't have too much experience with Davy, I can't say much.

  5. #5
    sacredmike's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Uranus ;)
    Posts
    685
    Reputation
    15
    Thanks
    3,255
    My Mood
    Devilish
    Chill dude.. Me and @rangewolf5 are working on it -_- It does say Partial in the title.

  6. #6
    sparzinrotmg's Avatar
    Join Date
    Apr 2013
    Gender
    male
    Posts
    107
    Reputation
    10
    Thanks
    1,026
    My Mood
    Amused
    Opsss, didnt saw that xD sorry

  7. #7
    sacredmike's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Uranus ;)
    Posts
    685
    Reputation
    15
    Thanks
    3,255
    My Mood
    Devilish
    Its fine. Lol. @rangewolf5 hasn't been on today.. so it may take up to 5-8 days to complete

  8. #8
    rangewolf5's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    31
    Reputation
    10
    Thanks
    3
    My Mood
    Bored
    @sacredmike im on now btw @ProHackBot999 that is temporary for his code, im doing the attacks since hes not so good at using ()'s and such :P

  9. #9
    sacredmike's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    Uranus ;)
    Posts
    685
    Reputation
    15
    Thanks
    3,255
    My Mood
    Devilish
    True that :P I really know how to change loots... A little bit about ()'s and stuff.. Just not multi-attackes.

Similar Threads

  1. Partial Thessal Behavior
    By Drowlys in forum Realm of the Mad God Private Servers Tutorials/Source Code
    Replies: 10
    Last Post: 01-19-2014, 09:38 PM
  2. Partial Tomb Bosses Behavior (Bes, Nut, Geb)
    By Drowlys in forum Realm of the Mad God Private Servers Tutorials/Source Code
    Replies: 21
    Last Post: 06-06-2013, 06:34 PM
  3. Texture Editor 3.0 got patched. (Partially) Alternatives?
    By RGegaerheheheh in forum Combat Arms Hacks & Cheats
    Replies: 10
    Last Post: 08-01-2009, 12:46 PM
  4. Reduced recoil + crosshair + Partial Chams hack
    By kmac11 in forum Combat Arms Hacks & Cheats
    Replies: 12
    Last Post: 05-24-2009, 01:34 PM
  5. abnormal behavior
    By naughtynurse in forum Gunz General
    Replies: 5
    Last Post: 03-29-2006, 08:48 PM