ID:293916
 
Well I'm trying to code a game with Dream Maker, and It's saying "Testworld.dm:9:error: verb: expected end of statement" I for one, do not know what that means. Here is the code I have:
//This is a test world created by Cloud0005 on October 6th.

mob
grass //defines a "grass" prototype, which is a kind of turf...
world //we set one of our world's characteristics:
turf = /turf/grass //its default turf is the grass turf.
icon = 'grass.dmi' //and has an icon named 'grass.dmi'.
icon = 'person.dmi' //make it so all mobs will be created with the person icon
verb
say(msg as text) //what the usr says is passed into "msg" as text
world << "[usr]: [msg]" //the world sees chatroom-like output
If you intend to create a game, the first step should be to start here, since this is going to provide you with material to learn the basics of programming (in BYOND).
Try to have a look at the DM guide (and reference), since these will enlighten you past any tutorial you're working on. But don't 'rush through'(browse), like with a comic.
Sometimes you will think that you already know something, when you do not yet know all of the interface it comes with.

Whenever you are struggling, a developer should use the Developer forum to seek assistance from like-minded community members.