Hi guys, someone knows where to edit Racial Ability?

http://www.uoguide.com/Races


I found something in Playermobile.cs, like nightvision and strongback, but not all abilities are there. I want to change some abilities, edit the names and comment out many. Where are located?
 
They're scattered across a few files, here are the spots for harvesting and what looks like human jack of all trades I think.
Code:
 C:\ServUO-master\Scripts\Services\Harvest\Core\HarvestBank.cs (2 hits)
   Line 85:  if (this.m_Definition.RaceBonus && from.Race == Race.Elf)   //def.RaceBonus = Core.ML
   Line 85:  if (this.m_Definition.RaceBonus && from.Race == Race.Elf)   //def.RaceBonus = Core.ML

  C:\ServUO-master\Scripts\Services\Harvest\Core\HarvestDefinition.cs (4 hits)
   Line 26: private bool m_RaceBonus;
   Line 342: public bool RaceBonus
   Line 346: return this.m_RaceBonus;
   Line 350: this.m_RaceBonus = value;

  C:\ServUO-master\Scripts\Services\Harvest\Core\HarvestSystem.cs (2 hits)
   Line 177: bool eligableForRacialBonus = (def.RaceBonus && from.Race == Race.Human);
   Line 324: bool racialBonus = (def.RaceBonus && from.Race == Race.Elf);

  C:\ServUO-master\Scripts\Services\Harvest\Lumberjacking.cs (1 hit)
   Line 128: lumber.RaceBonus = Core.ML;

  C:\ServUO-master\Scripts\Services\Harvest\Mining.cs (1 hit)
   Line 134: oreAndStone.RaceBonus = Core.ML;

  C:\ServUO-master\Server\Skills.cs (3 hits)
   Line 319: double raceBonus = m_Owner.Owner.RacialSkillBonus;
   Line 321: if (raceBonus > value)
   Line 323: value = raceBonus;
I used Notepad++ Find in Files to get these results in 5 minutes with the keyword RaceBonus
 
still looking for editing the names.
Are you referring to the names of the racial bonuses that the player reads via the yellow-ish book from the paperdoll gump?
In which case I believe that is client side not server side.
 
You'll have to create a hook for the packet to intercept it, then just create a custom gump that displays whatever you want.
 
Back