| 80 | | if(lci) |
| 81 | | { |
| 82 | | *data << lci->Title; |
| 83 | | *data << lci->Objectives; |
| 84 | | *data << lci->Details; |
| 85 | | *data << lci->EndText; |
| 86 | | } |
| 87 | | else |
| 88 | | { |
| 89 | | *data << qst->title; // Title / name of quest |
| 90 | | *data << qst->objectives; // Objectives / description |
| 91 | | *data << qst->details; // Details |
| 92 | | *data << qst->endtext; // Subdescription |
| 93 | | } |
| | 79 | *data << qst->title; // Title / name of quest |
| | 80 | *data << qst->objectives; // Objectives / description |
| | 81 | *data << qst->details; // Details |
| | 82 | *data << qst->endtext; // Subdescription |
| 112 | | if(lci) |
| 113 | | { |
| 114 | | *data << lci->ObjectiveText[0]; |
| 115 | | *data << lci->ObjectiveText[1]; |
| 116 | | *data << lci->ObjectiveText[2]; |
| 117 | | *data << lci->ObjectiveText[3]; |
| 118 | | } |
| 119 | | else |
| 120 | | { |
| 121 | | *data << qst->objectivetexts[0]; // Objective 1 - Used as text if mob not set |
| 122 | | *data << qst->objectivetexts[1]; // Objective 2 - Used as text if mob not set |
| 123 | | *data << qst->objectivetexts[2]; // Objective 3 - Used as text if mob not set |
| 124 | | *data << qst->objectivetexts[3]; // Objective 4 - Used as text if mob not set |
| 125 | | } |
| | 101 | *data << qst->objectivetexts[0]; // Objective 1 - Used as text if mob not set |
| | 102 | *data << qst->objectivetexts[1]; // Objective 2 - Used as text if mob not set |
| | 103 | *data << qst->objectivetexts[2]; // Objective 3 - Used as text if mob not set |
| | 104 | *data << qst->objectivetexts[3]; // Objective 4 - Used as text if mob not set |