ID:148351
 
i've got this

mob/verb
Attack(mob/M in oview (1))
usr <<"you attack [M]!!!!"

and there's a error msg like this

Attack.dm:3:error:<< :invalid proc definition
ShakerDeath wrote:
i've got this

mob/verb
Attack(mob/M in oview (1))
usr <<"you attack [M]!!!!"

and there's a error msg like this

Attack.dm:3:error:<< :invalid proc definition



I think u need ....

mob/verb
Attack(mob/M in oview (1))
usr <<"you attack [M]!!!!" //this needed indented


*Demon*