I develop the Mannequin. I tested the osi. The status bar does not appear. How do I do that. @Voxpire



sniff output:

Code:
11 - Mobile Status
    Serial: 0xD240A8
    Name: A mannequin
    Allow Name Change: False
    Female: False
    Strength: -1
    Hit Points: 25
    Max. Hit Points: 25
    Dexterity: -1
    Stamina: -1
    Max. Stamina: -1
    Intelligence: -1
    Mana: -1
    Max. Mana: -1
    Gold: -1
    Armor Rating: -1
    Weight: -1
    Max. Weight: 0
    Race: 0 - 0
    Stat Cap: 0
    Followers: 0
    Max. Followers: 0
    Fire Resistance: 0
    Cold Resistance: 0
    Poison Resistance: 0
    Energy Resistance: 0
    Luck: 0
    Min. Weapon Damage: 0
    Max. Weapon Damage: 0
    Tithing Points: 0
    Hit Chance Increase: 0
    Swing Speed Increase: 0
    Damage Chance Increase: 0
    Lower Reagent Cost: 0
    Hit Point Regeneration: 0
    Stamina Regeneration: 0
    Mana Regeneration: 0
    Reflect Physical Damage: 0
    Enhance Potions: 0
    Defense Chance Increase: 0
    Spell Damage Increase : 0
    Faster Cast Recovery: 0
    Faster Casting: 0
    Lower Mana Cost: 0
    Strength Increase: 0
    Dexterity Increase: 0
    Intelligence Increase: 0
    Hit Points Increase: 0
    Stamina Increase: 0
    Mana Increase: 0
    Maximum Hit Points Increase: 0
    Maximum Stamina Increase: 0
    Maximum Mana Increase: 0


Code:
78 - Mobile Incomming
    Serial: 0xD240A8
    Body: 400
    X: 2124
    Y: 710
    Z: 5
    Direction: 0 - North
    Hue: 0
    Is Frozen: False
    Is Female: False
    Is Flying: False
    Has Yellow Health Bar: False
    Is Ignoring Mobiles: False
    Is In War Mode: False
    Is Hidden: False
    Notoriety: 1 - Innocent
 
Last edited:
Override OnStatsQuery and prevent the default functionality;

Code:
public override void OnStatsQuery( Mobile from )
{ }
 
Ok, so on EA, he is saying when you drag the mobile, a bar doesn't appear at all. Argalep, have you tried sniffing what type of worlditem the mannequin is? I had to do this with damageable items so you could drag the bar.
 
Back