You are looking at many info about calls

call

You can call any cow command for the current $actor.

syntax:
call {command}[,{seconds|datetime delay}]

If you include a number of seconds so the call will be executed that many seconds in the future.

If you use a 14 digit datetime then that is the exact date and time the command will be executed.


call "say I want to be a delayed message by 60 seconds",60;
call "say I want to be a delayed message by 80 seconds",80;
call "say I want to be a delayed message by 90 seconds",90;
call "say I want to say something on 4th of January 2007 at 10:15:30",20070104101530;


When the the above code is executed, all 4 commands are said by the current $actor at their designtated times, not straight away as normal.

Notice the last one has an exact 14 character string of numbers YYYYMMDDHHNNSS and the command will be executed as close to then as possible (not that many seconds away). Anything less that 14 characters will be treated as seconds.