try uninstalling the service using these bat. just create new .txt file in your "server" folder (c:\MabinogiHeroes\server\) and rename it to uninstall.bat then copy this:
UninstallService.bat
Code:
@echo off
cd /d c:\MabinogiHeroes\server
cd RCClient
sc delete RCClient c:\MabinogiHeroes\server\rcclient\RCClientService.exe
RCClientService.exe -uninstall
cd ..
cd RCServer
sc delete RCServer c:\MabinogiHeroes\server\rcserver\RCServerService.exe
RCServerService.exe -uninstall
NET STOP "Remote Control Client Service"
NET STOP "Remote Control Server Service"
InstallService.bat
Code:
@echo off
cd /d c:\MabinogiHeroes\server
cd RCClient
RCClientService.exe -install
cd ..
cd RCServer
RCServerService.exe -install
NET START "Remote Control Client Service"
NET START "Remote Control Server Service"
run UninstallService.bat and InstallService.bat then check again if your changes to db are working
and when you open HeroeOPTool.exe select all services and hit update, not sure if this realy do anything but works ok for me... hope this help you.