I had download new update of opennos and I was install all server new in 2 other computers... and I have one big problem... nobody getting reputation from monsters... why? where I made mistake? please help me Skype j.pospisil97
if (totaldamage >= monsterToAttack.HP)
{
string x = $"{monsterToAttack.Level}";
// Player reputation is increased by Monster level
Session.Character.Reputation += monsterToAttack.Level;
// Tells the player he gained reputation
Session.SendPacket(Session.Character.GenerateSay($"Gained {x} reputation", 11));
}