Results 1 to 2 of 2
  1. #1
    ZoominFX's Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    54
    Reputation
    10
    Thanks
    6
    My Mood
    Stressed

    Own Loot Chest [Fabianos Source]

    Hey Guys

    Can someone send me template of a Loot Chest where i can just edit the Items and HP of the Chest ? Or how to make an own one ?

  2. #2
    MetroiDD's Avatar
    Join Date
    Sep 2013
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    My Mood
    Sad
    DAT1 Of puppet

    Code:
    <Object type="0x7441" id="Puppet Loot Chest">
          <Class>Character</Class>
          <Enemy/>
          <Texture>
             <File>lofiObj3</File>
             <Index>0x466</Index>
          </Texture>
          <MaxHitPoints>30000</MaxHitPoints>
          <Defense>35</Defense>
          <Size>160</Size>
          <XpMult>0.0</XpMult>
          <StasisImmune/>
          <DisplayId>{puppetMaster.Puppet_Loot_Chest}</DisplayId>
       </Object>
    Behavior of chest shatters:
    Code:
                .Init("shtrs encounterchestspawner",
                    new State(
                        new State("Idle",
                            new ConditionalEffect(ConditionEffectIndex.Invincible, true)
                        ),
                        new State("Spawn",
                            new Spawn("shtrs Encounter Chest", 1, 1),
                            new CopyLootState("shtrs Encounter Chest", 10),
                            new TimedTransition(5000, "Idle")
                        )
                    )
                )
    
                .Init("shtrs Encounter Chest",
                    new State(
                        new State("Idle",
                            new ConditionalEffect(ConditionEffectIndex.Invulnerable),
                            new TimedTransition(5000, "Bracer")
                        ),
                        new State("Bracer")
                    ),
                    new Threshold(0.1,
                        new TierLoot(11, ItemType.Weapon, 0.06),
                        new TierLoot(12, ItemType.Weapon, 0.05),
                        new TierLoot(6, ItemType.Ability, 0.05),
                        new TierLoot(12, ItemType.Armor, 0.06),
                        new TierLoot(13, ItemType.Armor, 0.05),
                        new TierLoot(6, ItemType.Ring, 0.06)
                    ),
                    new LootState("obelisk",
                        new Threshold(0.32,
                            new ItemLoot("Potion of Attack", 1),
                            new ItemLoot("Potion of Defense", 0.5)
                        ),
                        new Threshold(0.1,
                            new ItemLoot("Bracer of the Guardian", 0.005)
                        )
                    ),
                    new LootState("archmage",
                        new Threshold(0.32,
                            new ItemLoot("Potion of Mana", 1)
                        ),
                        new Threshold(0.1,
                            new ItemLoot("The Twilight Gemstone", 0.005)
                        )
                    ),
                    new LootState("forgottenKing",
                        new Threshold(0.32,
                            new ItemLoot("Potion of Life", 1)
                        ),
                        new Threshold(0.1,
                            new ItemLoot("The Forgotten Crown", 0.005)
                        )
                    )
                )

Similar Threads

  1. Fabianos source Setup
    By LordSpectilas in forum Realm of the Mad God Private Servers Help
    Replies: 1
    Last Post: 06-07-2015, 08:00 AM
  2. [Solved] Fabianos source
    By LordSpectilas in forum Realm of the Mad God Private Servers Help
    Replies: 1
    Last Post: 05-31-2015, 07:00 PM
  3. [Help Request] Can't Register on Fabiano Source
    By Celestialz in forum Realm of the Mad God Private Servers Help
    Replies: 2
    Last Post: 05-27-2015, 09:00 AM
  4. Having difficulty customizing my nexus map in the Fabiano source. Please help
    By chargn_yeti in forum Realm of the Mad God Private Servers Help
    Replies: 8
    Last Post: 05-25-2015, 10:22 PM
  5. [Help Request] Fabiano Source Multiplayer
    By uncookedcat in forum Realm of the Mad God Private Servers Help
    Replies: 1
    Last Post: 05-22-2015, 07:22 PM