This command doesn't seem to work.Characters[GetCharacterID("Fernam Barrios")].model = "man4";
The file solved the problem with line 176, but line 196 also does not output anything.1: Try this version of "danielle_dialog.c". It's the same problem we've seen before - the dialog code looks directly at attribute 'pchar.name', which is blank when the character only has one name like your "Danielle". I've replaced it with function call 'GetMyName(PChar)' at both points.
Change it to:Code:if (Characters[GetCharacterIndex("Danielle")].sex == "woman") { Preprocessor_AddQuestData("kid", XI_ConvertString("girl")); AddQuestRecord("again_find_rheims", 12); } else { Preprocessor_AddQuestData("kid", XI_ConvertString("lad")); AddQuestRecord("again_find_rheims", 7); }
It didn't work for me when I started the task again. Maybe you need to delete the below "AddQuestRecord("again_find_rheims", 7);"?
AddQuestRecord("again_find_rheims", 7);
CloseQuestHeader("again_find_rheims");
Preprocessor_Remove("pronoun3");
Preprocessor_Remove("kid");
Preprocessor_Remove("pronoun2");
Preprocessor_Remove("Danielle");
1) Should reputation be taken away when I give documents to Domingus? In this quest, it turns out that I will go into the minus in terms of reputation anyway.
Attachments
Last edited: