Most likely the original appearance of the rider isn't being stored correctly and it returns an error, which is 0, which also happens to be the Dwarf appearance in appearance.2da.
Are the people that are dismounting entering the server mounted? If so you may need to check for that in the OnClientEnter module event.
I use this to check for PCs entering the server mounted:
int nPheno=GetPhenoType(oPC);
if (nPheno==HORSE_PHENOTYPE_JOUSTING_L ||
nPheno==HORSE_PHENOTYPE_MOUNTED_L ||
nPheno==HORSE_PHENOTYPE_JOUSTING_N ||
nPheno==HORSE_PHENOTYPE_MOUNTED_N)
{
HorseIfNotDefaultAppearanceChange(oPC);
}
-420
Modifié par 420, 21 octobre 2010 - 05:56 .