I think you haven't grasp the procedure...
You have the scenario :
“Bob has money. The car is silver. The car is fast. If the car is silver or if the car is fast, and Bob has money then Bob goes on vacation on a cruise.”
Formalize and prove or disprove this claim: Bob goes on vacation on a cruise.
First, you have to list the premises (following your symbolization):
$A, B, C, [(B \lor C) \land A] \to D$
and the sought conclusion: $D$.
To prove that $D$ is entailed by the premises we have to list all the premises and the negation of the conclusion :
1) $A$
2) $B$
3) $C$
4) $[(B \lor C) \land A] \to D$
5) $\lnot D$
The further step needed is to rewrite 4) as a CNF:
4') $(¬A \lor ¬B \lor D) \land (¬A \lor ¬C \lor D)$.
In the end, we have to apply the Resolution procedure to the following clauses:
1) $A$
2) $B$
3) $C$
4a) $¬A \lor ¬B \lor D$
4b) $¬A \lor ¬C \lor D$
5) $\lnot D$.
Related to your previous post, this is $F$: the "initial" set of clauses.
Firstly, we have to produce $Res(F) = F \cup \{ \text { all the resolvents of clauses of } F \}$.
The resolvants are :
6) $¬B \lor D$ --- from 1) and 4a)
7) $¬C \lor D$ --- from 1) and 4b)
8) $¬A \lor D$ --- from 2) and 4a
9) $¬A \lor D$ --- from 3) and 4b)
10) $¬A \lor ¬D$ --- from 5) and 4a
11) $¬A \lor ¬C$ --- from 5) and 4b
of course deleting the repeted formulae.
And so on...