xxnypdofficerxx Posted August 14, 2019 Report Share Posted August 14, 2019 Hi there I'm having a problem: the persons are not showing up in the vehicle menu, and i don't know what's wrong because both unit files (for the vehicle and person) are made correctly. Hope someone can help me! Vehicle: <unit id="AEM 1"> <campaign> <missions value="1 2 3 4 13 15 9 8 5 17 12 14 7 19 10 6 18 16 11 20 21"> <prototype name="mod:Prototypes/Vehicles/Ambulance/rtw.e4p" /> <price value="500" /> <speed value="120" /> <space value="2" /> <loadspace value="1" /> <personnel> <unit id="DOCTOR"> <defaultcount value="1" /> </unit> <unit id="PARAMEDICS"> <defaultcount value="1" /> </unit> </personnel> <equipment /> </missions> </campaign> <freeplay> <missions value="22"> <prototype name="mod:Prototypes/Vehicles/INEM/AEM 1.e4p" /> <price value="500" /> <speed value="120" /> <space value="2" /> <loadspace value="1" /> <count value="3" /> <personnel> <unit id="TEPH"> <defaultcount value="2" /> </unit> </personnel> <equipment /> </missions> </freeplay> </unit> Person: <unit id="TEPH"> <campaign> <missions value = "22"> <<prototypes> <prototype name="mod:Prototypes/Persons/INEM/medico.e4p" level="0"/> <prototype name="mod:Prototypes/Persons/INEM/medico.e4p" level="1"/> <prototype name="mod:Prototypes/Persons/INEM/medico.e4p" level="2"/> <prototype name="mod:Prototypes/Persons/INEM/medico.e4p" level="3"/> </prototypes> <price value="25" /> <space value="1" /> </missions> </campaign> <freeplay> <missions value = "22"> <prototypes> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" /> </prototypes> <price value="25" /> <space value="1" /> </missions> </freeplay> </unit> Quote Link to comment Share on other sites More sharing options...
rafaell Posted August 15, 2019 Report Share Posted August 15, 2019 They just don't have icons but when you buy the vehicle they are in it or the game simple doesn't spawn them at all? By the way there are two "<<" in the fourth line of your personnel unit file. Quote Link to comment Share on other sites More sharing options...
xxnypdofficerxx Posted August 15, 2019 Author Report Share Posted August 15, 2019 They dont spawn at all Quote Link to comment Share on other sites More sharing options...
itchboy Posted August 15, 2019 Report Share Posted August 15, 2019 There's a bit of a mistake in the person xml file. Person xml <unit id="TEPH"> <campaign> <missions value = "1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25"> <prototypes> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" level="0"/> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" level="1"/> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" level="2"/> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" level="3"/> </prototypes> <price value="25" /> <space value="1" /> </missions> </campaign> <freeplay> <missions value="1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22"> <prototypes> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" level="0"/> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" level="1"/> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" level="2"/> <prototype name="mod:Prototypes/Persons/INEM/teph.e4p" level="3"/> </prototypes> <price value="25" /> <space value="1" /> </missions> </freeplay> </unit> Vehicle xml <unit id="AEM 1"> <campaign> <missions value="1 2 3 4 13 15 9 8 5 17 12 14 7 19 10 6 18 16 11 20 21 25"> <prototype name="mod:Prototypes/Vehicles/INEM/AEM 1.e4p" /> <price value="500" /> <speed value="120" /> <space value="2" /> <loadspace value="1" /> <personnel> <unit id="TEPH"> <defaultcount value="2" /> </unit> </personnel> <equipment /> </missions> </campaign> <freeplay> <missions value="1 2 3 4 13 15 9 8 5 17 12 14 7 19 10 6 18 16 11 20 22"> <prototype name="mod:Prototypes/Vehicles/INEM/AEM 1.e4p" /> <price value="500" /> <speed value="120" /> <space value="2" /> <loadspace value="1" /> <count value="3" /> <personnel> <unit id="TEPH"> <defaultcount value="2" /> </unit> </personnel> <equipment /> </missions> </freeplay> </unit> I also cleaned up the vehicle xml so that it can be used in campaign. Quote Link to comment Share on other sites More sharing options...
xxnypdofficerxx Posted August 16, 2019 Author Report Share Posted August 16, 2019 Thank you! Quote Link to comment Share on other sites More sharing options...