mob/verb/send_file(mob/M in world,var/F as file)
if(alert(M,"[src.name] is trying to send you the file \"[F]"\","Accept","Decline")
if("Accept")
M<<ftp(F)
if("Decline")
return
Problem description:
Send.dm:10:error: ": missing comma ',' or right-paren ')'
Send.dm:10:error: ": missing comma ',' or right-paren ')'
when I press the errors it leads to this line:
if(alert(M,"[src.name] is trying to send you the file \"[F]"\","Accept","Decline")
Or