ID:155333
 
How do i make a map maker of my game n distribute it to others so others can make n submitt their own creation but i don't want my files to go with them like in Resident evil map maker.
http://www.demmygames.com/viewtopic.php?f=9&t=500
That map maker is basically just all of the basic mob/obj/turf definitions and the icons to go with them, allowing people to use the DM map editor to make new maps.
In response to Robertbanks2
can u show me a little sample ?
In response to Kushagra
Say you want to add a gun to your map maker, it would look like this in the source:

obj/item/gun
icon=bla
icon_state=bla
verb/shoot()
//stuff here


You would copy paste this:

obj/item/gun
icon=bla
icon_state=bla


Into a second DM environment. This allows it to be placed on the map, but with no functionality until the map is added to the original source.

If you need further examples, just look at the map maker you linked to. It's just a compilation of atoms that are in the game.
In response to Robertbanks2
thnx Dude