ID:163826
 
1. How do i create a object?!

2. How do I make verbs and the bar where the verbs are?

3. How do I make object solid or is it solid direct if it's a object?
1.
obj/(Your Obj.)
icon '(Your Icon).dmi'
icon_state "(Your State)"//Leave Blank if no state name
Density 0 //0 means you can walk over it 1 means you can't

2.
mob
verb
Dance()
set name = "Fart"
set desc = "Break Wind"
set category = "Test"
usr << "OH MY GOD YOU SHARTED THIS TIME"
view() << "[usr]Breaks Wind!"


Your Welcome

- L6G
In response to Level 6 God
Will try that right away :D

EDIT: Ummh I created a object named character and a object named grass but when I try to open the map it gives an error about a object named tree O.o
In response to Salmjak
Try a few of the guides listed on this page: http://www.byond.com/developer/?page=Start

They should help a lot in starting to learn how to code for BYOND. The developer's section here also has a TON of resources for you to pour through to learn.
In response to Clowd
Thanks ^^

One thing I don't get :/ How do I make different icons for the player when standing still and walking? Right now my mob walks when it should be still.
In response to Salmjak
Try setting the walking state to being a movement state. I believe that right clicking on the state will give you the option to do so.
In response to Clowd
Worked perfectly :)