ID:147623
 
if(l.user_has_target == 1)<<<<< heres the error
var/mob/Tar = l.user_target
// you must be able to see them to heal them
if(Tar in oview(8,l))
src = new/obj/heal()
l.loop = 0
while(l.loop < 10)
src.loc = l.user_target
src.layer = l.user_target
sleep(1)
l.loop++
it says i have a missing left-hand argument to >. plz help</<<<></<></ 10></<<></<<<<>
Goddz wrote:
if(l.user_has_target == 1)<<<<< heres the error
var/mob/Tar = l.user_target
// you must be able to see them to heal them
if(Tar in oview(8,l))
src = new/obj/heal()
l.loop = 0
while(l.loop < 10)
src.loc = l.user_target
src.layer = l.user_target
sleep(1)
l.loop++
it says i have a missing left-hand argument to >. plz help

Why in the world do you have >>>>>> s there?
In response to Jon88
i have it there to show error can u plz help
In response to Goddz
Yes, but to BYOND, those >>s are garbage that cause errors. Get rid of them, and the <<s you added to that line.
You copied and pasted code from the forums. Bad. Kill the >s.