ID:262926
 
Code:
mob
Stat()
if(countdownamount)
statpanel("CountDown")
stat("[time]")
mob/verb/Count()
if(!countdownamount)
var/k=input("How much do you want the countdown to be?","CountDown")as null|num
countdownamount=k
CountDown()




proc/CountDown()
for(var/i=1 to countdownamount)
seconds++
if(seconds>=60) {minutes++;seconds=0}
if(minutes>=60) {hours++;minutes=0}
time="[hours]:[minutes]:[seconds]"
sleep(10)
countdownamount=null
time="0:0:0"
var/
seconds=0
minutes=0
hours=0
countdownamount
time="[hours]:[minutes]:[seconds]"


Problem description:
loading count down.dme
count down.dm:26:error: Bad input type: CountDown
count down.dm:26:error: Bad input type: k
count down.dm:26:error: Bad input type: countdownamount
count down.dm:26:error: Bad input type: =

I have no clue what thisis telling me plese help

Your indentation(tabs) are messed up.