FOLLOW GUIDE , TO THE END , IGNORE ALL THE ERRORS!
01/10/2009 14:48sherwin9#5
No no, abra, the RemoveSpouse is in the Divorce Guide. There's somewhere a Divorce guide, it'll help you with removing your spouse. And btw it's in Character.cs:
Code:
public string Spouse = "MyChar.Spouse;";
01/10/2009 15:03_Emme_#6
Sherwin, that code make is say your spource name is default "MyChar.Spouse;" , inside " and ", it doesnt work with MyChar and such ..
01/10/2009 15:14sherwin9#7
Srry my fault, it's:
Code:
public string Spouse = "Char.Spouse;";
01/10/2009 15:34_Emme_#8
No! As I said, between the " and ", in there its just text, if you put MyChar.Level , it will show the text "MyChar.Level". You would do:
public string Spouse = Char.Spouse;
then somewhere else:
if (Spouse.Lenght <= 2)
Spouse = "None";
01/10/2009 15:43sherwin9#9
Kinda strange cause this code: public string Spouse = "Char.Spouse;"; worked for me...