ID:267085
 
Ok, below is my Bump Code i got off of Delita, I edited it a little bit with the indentation, but otherwise its the same. Below the code is my 1 error. If you can help plz reply!

//code
turf/Click()
if (src.density = 1)
return
else
walk_to(usr,src,)
//error(s)

error::missing expresion

I dont know what to do, plz reply.
Thanks The Conjuror
= should be ==
The Conjuror wrote:
Ok, below is my Bump Code i got off of Delita, I edited it a little bit with the indentation, but otherwise its the same. Below the code is my 1 error. If you can help plz reply!

//code
turf/Click()
if (src.density = 1)
return
else
***walk_to(usr,src,)
//error(s)

error::missing expresion

I dont know what to do, plz reply.
Thanks The Conjuror

*** Here's your problem: walk_to(usr,src,) should be ***walk_to(usr,src,0,0)
In response to Delita12345
Actually, no. If the arguments are left blank it takes them both as 0.
In response to Nadrew
Oh, my mistake!