mob/verb
Spar()
for(var/mob/M in oview(1))
if(usr.dir == NORTH)
if(M.dir == SOUTH)
if(M.can_spar== 1)
var/ask = input(M,"Wanna Spar Bitch","Spar")in list("Yes","No")
if(ask == "Yes")
M.frozen=1
usr.frozen=1
usr<<"You begin to spar with [M]"
M<<"You begin to spar with [usr]"
M.Sparing()
usr.Sparing(usr, M)
if(ask == "No")
usr<<"I think [M] think your a punk"
Problem description:
It gets up to the point where it asks you would you like to spar then even if they say yes or no it dosent continue... Why?
If that dosen't work,then theres a problem with your Sparing() procs,and that's not my fault.