PDA

View Full Version : Event in scheduler


molder
06-05-2006, 03:22 AM
hi guys, is possible use internal command in scheduler event like site change?
Thanks

neoxed
06-05-2006, 03:35 AM
SITE commands are not internal commands - they are client commands.

You cannot use SITE commands directly from the scheduler, but you accomplish the same thing by executing a batch file using the "!change" command.

scripts\credits.bat
@ECHO OFF
ECHO !change neoxed credits +1024

system\ioFTPD.ini
[Scheduler]
GiveCredits = 0 23 * * EXEC ..\scripts\credits.bat

molder
06-05-2006, 04:06 AM
Thx neoxed for help me with it, now is working ;)
Regards

dink-puller
06-15-2006, 06:58 AM
Thanks, that's just the tidbit I needed to make custom commands execute on time.