loadmap "Map" [,Skills][,Items][,Variables][,Diary][,States][,Buildlocks]
replace everything you want to keep with a 1 and everything you don't want to keep with a 0. you can omit everything after your last 1 since its automatically 0 if you do not enter it. the "[" and "]" just show that the embraced parameter can be omitted so do not write these brackets in your code!
keeping just the items would be this code:
or (it's the same):
1
loadmap "yourmap",0,1,0,0,0,0;
Quote
and is there anyway you can build something on a map and go to a different map then come back and it still be there
yes. thats possible but not very easy. you have to save each map somewhere with
savemap (which has the same parameters like loadmap) before you load the next one. when going back to this map you load the map you saved. you might also use
loadmaptakeover right after loading a map. its 1 if you got stuff from the previous map (map loaded with loadmap and at least one parameter 1) and 0 if not.