I assumed my server was using a hooked checkskill function because it exists, but after adding a print statement for troubleshooting, I don't think it's working.
My syshook.cfg has the following entry:
Code: Select all
SystemHookScript syshook_checkskill.ecl
{
CheckSkill := NewCheckSkill
}Code: Select all
program SyshookCheckSkill ( )
Syslog ( "Installing skillcheck..." );
return 1;
endprogramCode: Select all
[04/14 00:15:11] [pkg/character/skillcheck/syshook_checkskill.ecl]: Installing skillcheck...Code: Select all
exported function NewCheckSkill ( character, skillid, difficulty, points )
Print ( "CheckSkill runs..." );Thanks!