ID:177155
 
this wirks with my phaser but now gives me a bunch of errors please help.

verb/Put_Communicator_Away()
set src in view(1)
var/obj/communicator = locate (obj/communicator) in usr.contents
del communicator
tripoliwlc += 1
usr << "you put the communicator away"


loading startrekfed.dme
startrekfed.dm:442:error:obj:undefined var
startrekfed.dm:442:error:communicator: compile failed (possible infinite cross-reference loop)
startrekfed.dm:443:error:communicator: compile failed (possible infinite cross-reference loop)
You forgot to put the / in front of obj/communicator. The latter isn't a valid type path without the slash.

Lummox JR