how do i check if objectives are completed, do something ?
for example:
in scriptning i would like to say:
if objective(10) and objective(20) are completed
do somthing here
else
if not both objectives are completed, do nothing
endif
thx.
Gus.
if (YourQuest.IsObjectiveCompleted(10)) && (YourQuest.IsObjectiveCompleted(20))Do somethingElse;Do something elseEndif
