here is the section of code that comes up with the error:
__________________________________________________________
// tell if two items are alike
proc/IsAlike(obj/O)
if(!O || type != O.type || !count || !O.count || \
contents.len || O.contents.len) return 0
for(var/V in vars) <<<[ERROR]
if(vars[V] != O.vars[V])
if(V in builtin) continue
return 0
return 1
__________________________________________________________
error::invalid expression
__________________________________________________________
how can I get it to work?
here is where I got it >> http://www.byondscape.com/ascape.dmb/LummoxJR.2005-0506/
ID:168087
![]() Dec 11 2005, 5:55 am
|
|
![]() Dec 11 2005, 6:01 am
|
|
use dm tags
|
ok
obj |