I have MULTIPLE timer commands. !timer1 starts a 1 minute timer that uses a 3rd party PHP, and so on. Because the script used is simple, I'm sure I can automate it using a single command. I made an attempt but it isn't working. Can you assist with understanding what is wrong with it?
ONE MINUTE TIMER (works)
$(urlfetch https://rokbot.xyz/smm.php?msg=One Minute timer started48 seconds36 seconds24 seconds12 seconds`Time's up&i=12&d=1)
ANY MINUTE TIMER (up to one hour)
$(eval i=$(querystring);
if(i < 1){
if(i <= 60){
j=i*12;
"$(urlfetch https://rokbot.xyz/smm.php?msg="+i+" minute timer started"+(j*4)+" seconds"+(j*3)+" seconds"+(j*2)+" seconds"+j+" seconds`Time's up&i="+j+"&d=1)";
}
else {
"The requested timer is over an hour and not started.";
}
else{ "Invalid Timer Requested";
}

