SphereCommunity
Need all crafting animation/sounds - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: General Help (/Forum-General-Help)
+--- Thread: Need all crafting animation/sounds (/Thread-Need-all-crafting-animation-sounds)



Need all crafting animation/sounds - escribano - 06-24-2015 05:28 PM

Someone have the complete list (or some part... it will help) of respective animation/sound of each crafting skill?

I'm making a cool new crafting based system that fully replace the original crafting from sphere... so i need this list to finish...

I've tryied to find on InsideUO and in UOFiddle but there is 1.488 sounds baddly indexed!

Thanks


RE: Need all crafting animation/sounds - XuN - 06-24-2015 05:37 PM

Code:
switch ( skill )
    {
        /*case SKILL_FISHING:    //softcoded
            sound = 0x364;
            break;
        case SKILL_TINKERING:    //old value
            sound = 0x241;
            break;*/
        case SKILL_ALCHEMY:
            sound = 0x242;
            break;
        case SKILL_TAILORING:
            sound = 0x248;
            break;
        case SKILL_CARTOGRAPHY:
        case SKILL_INSCRIPTION:
            sound = 0x249;
            break;
        case SKILL_BOWCRAFT:
            sound = 0x055;
            break;
        case SKILL_BLACKSMITHING:
            sound = 0x02a;
            break;
        case SKILL_CARPENTRY:
            sound = 0x23d;
            break;
        case SKILL_MINING:
            sound = Calc_GetRandVal(2) ? 0x125 : 0x126;
            break;
        case SKILL_LUMBERJACKING:
            sound = 0x13e;
            break;

anims are 11 and 13


RE: Need all crafting animation/sounds - escribano - 06-24-2015 06:03 PM

XuN, u saved my life time! Tongue

Thanks