http://www.runuo.com/community/resources/mass-land-decorator.61/ This is a simple script I made to help with random static land decorating, example, adding random static grass to all grass tiles on the map, it'll randomly place selected static grass on land tiles listed, ie: grass. You'll need to fill the menu of the script in with the static information you wish to accomplish, you can get all the values from uofiddler or just prop tiles in game to get there id's. Once filled in, save a copy to your scripts folder, restart server, add deed in game and double click to activate. once finished the deed deletes and your left with what you set for random statics. I advise that you do this with a clean frozen map, so you can do a clear facet if the effect isn't what you thought, if it is the desired effect, just freeze to map and repeat if needed. Code listed below must be edited before script is usable! //Enter land tile name here that you want to cover public string terrain = ""; //Enter land tile ID here that you want to cover public int LDID = 0; //Enter static ID's in the next 10 slots you want to cover the above land tiles with public int LD1 = 0; public int LD2 = 0; public int LD3 = 0; public int LD4 = 0; public int LD5 = 0; public int LD6 = 0; public int LD7 = 0; public int LD8 = 0; public int LD9 = 0; public int LD10 = 0; //Enter the bounding box X,Y below that you want to cover with the above statics public int BBX1 = 0; public int BBX2 = 0; public int BBY1 = 0; public int BBY2 = 0;