ID:149734
 
I was working on a board game. I just can't get it started.

var
started = 0

mob
verb
Start()
if(started == 0)
world << "[usr] has started game!"
started = 1
else
usr << "Game has already been started."
return 0
Join()
if(started == 0)
usr << "The game has not been started."
return 0
else
var/obj/GamePiece/S
new S(10,1,1)
world << "[usr] has joined!"


I can't get the GamePiece on the map. Any help is appreciated.

-S

Edit: Forgot Topic.
You're not moving them to the board:

new(loc)//loc would be a path

You need
new(locate(x,y,z))