if(target.combolist.len > 0 && target.stunned)
for(var/A in target.combolist)
if(findtext(A, "p l"))
user.Melee_Attack(user, target, damage, 2, "left punch")
target.combolist.Remove(A)
break
Problem description:
How can i check to see if "p l" is the first in the list currently it will work if its just in the list.
if(A == target.combolist[1])