In the RPGUtilite.c you can set the starting hero like this:
The
the #1 indicate Peter Blood since he is the 1st charater on the list, how should I set the code so the 27th character on the list start the same storyline as Peter Blood. Let say I want Peter and Estharos to start the same storyline, Peter is the #1 and Estharos #27. How I should right the code so both character start the same storyline? The way the code is set above only Peter start the the storyline but I want Estharos to start it to.
Cheers,
Code:
//Tutorial - ÃÂÀ×ÀËÎ ÈÃÃÂÛ
if (startHeroType == 1) //21/07/07 homo äëÿ ÃÂëàäàäàåì äðóãîå ÃÂà÷àëî
{
pchar.quest.Tut_start.win_condition.l1 = "location";
pchar.quest.Tut_start.win_condition.l1.location = "Estate";
pchar.quest.Tut_start.function = "Blood_StartGame";
}
else
{
pchar.quest.Tut_start.win_condition.l1 = "location";
pchar.quest.Tut_start.win_condition.l1.location = "Ship_deck_Low";
pchar.quest.Tut_start.function = "Tut_StartGame";
Pchar.questTemp.CapBloodLine = false;
}
The
Code:
if (startHeroType == 1)
the #1 indicate Peter Blood since he is the 1st charater on the list, how should I set the code so the 27th character on the list start the same storyline as Peter Blood. Let say I want Peter and Estharos to start the same storyline, Peter is the #1 and Estharos #27. How I should right the code so both character start the same storyline? The way the code is set above only Peter start the the storyline but I want Estharos to start it to.
Cheers,