OpenNos Reputation problem

04/24/2017 16:52 TheRaimenLP#1
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
04/24/2017 18:32 0Lucifer0#2
Because on official we don't get reputation from monsters...
04/24/2017 18:39 TheRaimenLP#3
and where can players get reputation?
04/24/2017 18:41 0Lucifer0#4
IC/Levelup like official
04/24/2017 19:02 TheRaimenLP#5
but i dont get reputation from levels .... in Instant Battle only works reput for finishing it..... new players dont have reputation... because they dont get reput ...
04/24/2017 23:03 0Lucifer0#6
Like official you get reputation each 10level
04/25/2017 13:39 fantasy942#7
Quote:
Originally Posted by TheRaimenLP View Post
but i dont get reputation from levels .... in Instant Battle only works reput for finishing it..... new players dont have reputation... because they dont get reput ...
Easy solution, add Medal drop from the monster^^
04/28/2017 12:42 @LRevolution#8
Code:
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));
       }
Add this or something similar to GenerateDamage in Character.cs, you can easily improve it but I'm not gonna do your job, hope it helps.

Note : check the names of the properties and functions (monsterToAttack, sendPacket) I probably misspelled them.