;Start timer when mirc starts that checks for changes every 30 seconds
on *:start: .timerdayzprofile 0 30 dayzprofile
;Alias that checks if the file has changed and messages channel. Make sure to update the path for the file and the channel name to message to.
alias dayzprofile {
set -l %filepath dayzprofile.txt
set -l %ip $remove($read(%filepath,w,LastMPServer=*),LastMPServer=)
if (%ip != %dayzprofile) {
set %dayzprofile %ip
msg #pball !editcmd !server %ip
}
}