summaryrefslogblamecommitdiff
path: root/npc/020-7-1/core.txt
blob: c27c06b5c4c5d2a35ac0e7f205372103a1e0f4bf (plain) (tree)
1
                 




















                                            
// Core functions

// Some setup is required

// BSQuestion(quest state)
function	script	BSQuestion	{
    switch (getarg(0)) {
        case 3:
        case 4:
            return BS_QVISITOR;
        case 5:
        case 8:
            return BS_QHELPER;
        case 6:
        case 7:
        case 9:
        case 10:
            return BS_QVISITOR | BS_QHELPER;
    }
    return 0;
}