GlobalExplorer wrote:
Quote:
I have just found out that in your hand edited entries (Hospital ships etc) you mixed up the order of the Type and Class properties in Campaign_RND:
[RndGroup 1718.RndUnit 1]
Type=103
Class=NHOS
..
This should in fact be:
[RndGroup 1718.RndUnit 1]
Class=NHOS
Type=103
At least that is how the mission editor would write it.
|
Sorry if that's given you any difficulty.
However, the data lines are not fixed within ship descriptions. SH3 can read them in any order. That's why they are written as:
Type=103
Class=NHOS
and not as:
103 ;; Type
NHOS ;; Class.
This is a fairly standard way of entering data into a class or structure, that (in principle) allows error checking as the data is read. Who knows whether the original programmers actually carried out error checking?
But you should consider this for your own mod.
Stiebler.