mob/verb/Send_Game.dmb(a as file)
shell("mkdir [usr.ckey]")
/home/[usr.ckey] << ftp(a,"Game.dmb") //the question is here.... how do i send the file to the direc >> C /home/[usr.ckey] ?
mob/verb/Play_Server()
shell("cd [usr.ckey]")
shell("DreamDaemon Game.dmb 7771 -safe -logself &")
How do i make this two verbs to work together ? is the code right ?