How to create zone
Moderators: Scenario Moderators, Plugin Moderators
- THEMAX
- Inhabitant of a Universe
- Posts: 4314
- Joined: 14 Sep 2017, 17:30
- Location: Astrellia, UHAE
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
How to create zone
I would like to know how to do a plugin like koalaguy did... could you tell me how?
I wanted to create a plugin with some new industrial / commercial / residential zone
I wanted to create a plugin with some new industrial / commercial / residential zone
- JustAnyone
- Developer
- Posts: 3581
- Joined: 23 Jul 2017, 12:45
- Location: Easter Island
- Plugins: Showcase Store
-
Platform
Re: How to create zone
Documentation commun sun.
- Josh
- Graphic designer
- Posts: 2215
- Joined: 11 Mar 2017, 19:20
- Location: The Netherlands
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
Re: How to create zone
I hope this can help you further, it is the json part of the existing zones...
Code: Select all
[
{
"id": "$zoneresidential",
"type": "zone",
"rci":true,
"old id":0,
"frames":[{"x":320,"y":0,"w":32,"h":16}],
"preview frames":[{"x":0,"y":553,"w":26,"h":26}],
"price":100,
"placeable":true
}
]
- CommanderABab
- AB
- Posts: 11241
- Joined: 07 Jun 2016, 21:12
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
Re: How to create zone
Code: Select all
[
{
"id": "$zonesupercom",
"title":"Your Super Commercial Zone",
"text":"say like for skyscrapers!",
"type": "zone",
"rci":true,
"separator":true,
"base":"$zonecommercial",
"frames":[{"bmp":"zones511.png","w":32,"h":16,"x":32,"count":1}],
"preview frames":[{"bmp":"zones511.png","w":32,"h":16,"x":32,"target w":64,"target h":32,"count":1} ],
"price":200,
"superior to base":true,
"placeable":true
}
]
Code: Select all
"frames":[{"bmp":"zones511.png","w":32,"h":16,"x":32,"y":16,"count":1}],
"preview frames":[{"bmp":"zones511.png","w":32,"h":16,"x":32,"y":16,"target w":64,"target h":32,"count":1} ],
Code: Select all
"zone":"$zonesupercom",
Code: Select all
"persistent":true,
Code: Select all
"superior to all":true,


- Attachments
-
- Base zone colors
- zones510.png (1.39 KiB) Viewed 2761 times
- JustAnyone
- Developer
- Posts: 3581
- Joined: 23 Jul 2017, 12:45
- Location: Easter Island
- Plugins: Showcase Store
-
Platform
Re: How to create zone
@CommanderABab Superior to all means?
- CommanderABab
- AB
- Posts: 11241
- Joined: 07 Jun 2016, 21:12
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
Re: How to create zone
Try it and see. I think you can't rezone it.