RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Resource icon

Mass Land Decorator 2.3.0

No permission to download
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!
Code:
//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;

Before


After
  • Like
Reactions: MaG_PaW
Author
GoldDraco13
Downloads
52
Views
434
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from GoldDraco13

Top