Crafting

Yes it says General which means just that.

Moderators: Dungeon Masters, Hala DM

Post Reply
terryrayc
lord of all I prevail
lord of all I prevail
Posts: 4646
Joined: Wed Jun 22, 2005 12:00 am
Location: Florida
Contact:

Crafting

Post by terryrayc » Sat Mar 03, 2007 11:27 pm

okay the question came up about the chance of success when crafting..here is the script that decides it

Code: Select all

    switch (iSeverity)
    {
    case ACS_TRIVIAL:
        iProbability = 95;
        break;
    case ACS_VEASY:
        iProbability = 90;
        break;
    case ACS_EASY:
        iProbability = 80;
        break;
    case ACS_NORMAL:
        iProbability = 60;
        break;
    case ACS_HARD:
        iProbability = 40;
        break;
    case ACS_VHARD:
        iProbability = 5;
        break;
    }
As you can see there is no 100%, even trivial can fail 5% of the time.
Visit the Arkaz Wiki at http://www.arkaz.com/lore

Post Reply