Home | History | Annotate | Download | only in phantasia

Lines Matching refs:Other

420 			if (findname(Player.p_name, &Other) >= 0L)
681 while (fread((char *) &Other, SZ_PLAYERSTRUCT, 1, Playersfp) == 1)
682 if (Other.p_specialtype == SC_KING &&
683 Other.p_status != S_NOTUSED)
688 Other.p_name, Other.p_level);
698 while (fread((char *) &Other, SZ_PLAYERSTRUCT, 1, Playersfp) == 1)
699 if (Other.p_specialtype == SC_VALAR && Other.p_status != S_NOTUSED)
704 Other.p_name, Other.p_login);
711 while (fread((char *) &Other, SZ_PLAYERSTRUCT, 1, Playersfp) == 1)
712 if (Other.p_specialtype == SC_COUNCIL && Other.p_status != S_NOTUSED)
721 "%s Login: %s", Other.p_name, Other.p_login);
730 while (fread((char *) &Other, SZ_PLAYERSTRUCT, 1, Playersfp) == 1)
731 if (Other.p_experience > hiexp && Other.p_specialtype <= SC_KING && Other.p_status != S_NOTUSED)
735 hiexp = Other.p_experience;
737 hilvl = Other.p_level;
739 strcpy(hiname, Other.p_name);
741 if (Other.p_experience > nxtexp
742 && Other.p_specialtype <= SC_KING
743 && Other.p_status != S_NOTUSED)
746 nxtexp = Other.p_experience;
747 nxtlvl = Other.p_level;
748 strcpy(nxtname, Other.p_name);