@ScripActions = (
    {  Name        => 'RTIR Set Started to Now',    # loc
       Description => 'Set the started date to the current time' ,                                            # loc
       ExecModule => 'RTIR_SetStartedToNow',
    },
);

@ScripConditions = (
    {  Name        => 'RTIR Block Activation',    # loc
       Description => 'A block was activated or created in active state',                                            # loc
       ApplicableTransTypes => 'Create,CustomField',
       ExecModule => 'RTIR_BlockActivation',
    },
    {  Name        => 'RTIR Linking To Incident',    # loc
       Description => 'Whenever ticket is linked to incident or created with link',                                 # loc
       ApplicableTransTypes => 'Create,AddLink',
       ExecModule => 'RTIR_LinkingToIncident',
    },
);

@Scrips = (
    {  Description       => "SetStarted",
       Queue             => 'Blocks',
       ScripCondition    => 'RTIR Block Activation',
       ScripAction       => 'RTIR Set Started To Now',
       Template          => 'Blank' },
    {  Description       => "SetStarted",
       Queue             => 'Incident Reports',
       ScripCondition    => 'RTIR Linking To Incident',
       ScripAction       => 'RTIR Set Started To Now',
       Template          => 'Blank' },

);
