How to write a plugin

Learn here how to create and use plugins.

Moderator: Plugin Moderators

User avatar
Chinasapling
Townsman
Reactions:
Posts: 48
Joined: 11 Nov 2018, 05:33
Plugins: Showcase Store

Platform

Re: How to write a plugin

#41

Post by Chinasapling »

CommanderABab wrote:
17 Nov 2018, 14:01
Show
show quotes
Chinasapling wrote:
17 Nov 2018, 13:04
CommanderABab wrote:
17 Nov 2018, 04:17
What's going on here?
Show
you do use a comma here :)
Image
Screenshot_20181117-063130.jpg
thankyou thankyou thankyou

User avatar
Chinasapling
Townsman
Reactions:
Posts: 48
Joined: 11 Nov 2018, 05:33
Plugins: Showcase Store

Platform

Re: How to write a plugin

#42

Post by Chinasapling »

I don't know why the Chinese entering game in JSON will show the question mark.

User avatar
JustAnyone
Developer
Reactions:
Posts: 3474
Joined: 23 Jul 2017, 12:45
Location: Easter Island
Plugins: Showcase Store

Platform

Re: How to write a plugin

#43

Post by JustAnyone »

That's due to encoding.

User avatar
Chinasapling
Townsman
Reactions:
Posts: 48
Joined: 11 Nov 2018, 05:33
Plugins: Showcase Store

Platform

Re: How to write a plugin

#44

Post by Chinasapling »

JustAnyone wrote:
21 Nov 2018, 15:49
That's due to encoding.
Then what should I do?

User avatar
Chinasapling
Townsman
Reactions:
Posts: 48
Joined: 11 Nov 2018, 05:33
Plugins: Showcase Store

Platform

Re: How to write a plugin

#45

Post by Chinasapling »

CommanderABab wrote:
16 Jun 2018, 18:49
A 1x1 tile would be 32x16 pixels.

Screenshot_20180616-121759.jpg
Screenshot_20180616-121826.jpg
Screenshot_20180616-121930.jpg
Screenshot_20180616-122035.jpg
Can you send me the software for drawing pixel images on your mobile phone?very thankyou

User avatar
Bearbear76
Former Bearbear65
Reactions:
Posts: 5730
Joined: 10 Feb 2017, 14:53
Location: L2 cache
Plugins: Showcase Store

Plugin Creator

Platform

Re: How to write a plugin

#46

Post by Bearbear76 »

Chinasapling wrote:
26 Nov 2018, 15:13
CommanderABab wrote:
16 Jun 2018, 18:49
A 1x1 tile would be 32x16 pixels.

Screenshot_20180616-121759.jpg
Screenshot_20180616-121826.jpg
Screenshot_20180616-121930.jpg
Screenshot_20180616-122035.jpg
Can you send me the software for drawing pixel images on your mobile phone?very thankyou
I would recommend pixly

User avatar
Chinasapling
Townsman
Reactions:
Posts: 48
Joined: 11 Nov 2018, 05:33
Plugins: Showcase Store

Platform

Re: How to write a plugin

#47

Post by Chinasapling »

Bearbear65 wrote:
06 Dec 2018, 23:56
Chinasapling wrote:
26 Nov 2018, 15:13
CommanderABab wrote:
16 Jun 2018, 18:49
A 1x1 tile would be 32x16 pixels.

Screenshot_20180616-121759.jpg
Screenshot_20180616-121826.jpg
Screenshot_20180616-121930.jpg
Screenshot_20180616-122035.jpg
Can you send me the software for drawing pixel images on your mobile phone?very thankyou
I would recommend pixly
Thank you very much

User avatar
NagorniKarabikh
Settler
Reactions:
Posts: 6
Joined: 29 Dec 2018, 20:30
Plugins: Showcase Store

Re: How to write a plugin

#48

Post by NagorniKarabikh »

Gives error
Unterminated object at character 182 of [
{
"id":"$sample.plugin.unique.id.res00",
"type":"residential",
"author":"NagorniKarabikh",
"width":1,
"height":1,
"frames":[{"png":"Romanian.png}],
"smoke":[{"id":"$smoke07","x":15,"y":-17}],
"level":1
}
]

User avatar
CommanderABab
AB
Reactions:
Posts: 11086
Joined: 07 Jun 2016, 21:12
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#49

Post by CommanderABab »

NagorniKarabikh wrote:
17 Jan 2019, 17:05
Gives error
Unterminated object at character 182 of [
{
"id":"$sample.plugin.unique.id.res00",
"type":"residential",
"author":"NagorniKarabikh",
"width":1,
"height":1,
"frames":[{"png":"Romanian.png}],
"smoke":[{"id":"$smoke07","x":15,"y":-17}],
"level":1
}
]
You have:

Code: Select all

[
  {
    "id":"$sample.plugin.unique.id.res00",
    "type":"residential",
    "author":"NagorniKarabikh",
    "width":1,
    "height":1,
    "frames":[{"png":"Romanian.png}],
    "smoke":[{"id":"$smoke07","x":15,"y":-17}],
    "level":1
  }
]
Try:

Code: Select all

[
  {
    "id":"$sample.plugin.unique.id.res00",// use a different id
    "type":"residential",
    "author":"NagorniKarabikh",
    "width":1,
    "height":1,
    "frames":[{"bmp":"Romanian.png"}],
    "smoke":[{"id":"$smoke07","x":15,"y":-17}],
    "level":1
  }
]
Missing " after Romanian.png caused the error.

User avatar
JohnSallow
Townsman
Reactions:
Posts: 64
Joined: 29 Jan 2020, 18:45
Location: Buenos Aires, Argentina
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#50

Post by JohnSallow »

This question might be dumb, but how can I do to have two or more buildings in the same plugin?

I tried doing this...

Code: Select all

[
{
"id":"$nijocali.residentials.plugin_01_residential",
"type":"residential",
"author":"johnsallow",
"width":2,
"height":2,
"frames":[{"bmp":"nijocali_01.png"}],
"level":2
},
{
"id":"$nijocali.residentials.plugin_02_residential",
"type":"residential",
"author":"johnsallow",
"width":2,
"height":2,
"frames":[{"bmp":"nijocali_02.png"}],
"level":2
}
]
... but the second building doesn't appear in the plugin.

Yes, I'm very confused with it :calc

User avatar
CommanderABab
AB
Reactions:
Posts: 11086
Joined: 07 Jun 2016, 21:12
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#51

Post by CommanderABab »

That should work.
It might be that the images are the same or similar, so you don't notice the second one.

User avatar
JohnSallow
Townsman
Reactions:
Posts: 64
Joined: 29 Jan 2020, 18:45
Location: Buenos Aires, Argentina
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#52

Post by JohnSallow »

CommanderABab wrote:
06 Feb 2020, 22:42
That should work.
It might be that the images are the same or similar, so you don't notice the second one.
Ok, I'll verify that. Thanks

User avatar
Triceymicy
Settler
Reactions:
Posts: 1
Joined: 29 Apr 2020, 17:41
Plugins: Showcase Store

Re: How to write a plugin

#53

Post by Triceymicy »

Explain How To Start, Like A Button.

User avatar
TheFennekin
Neighborhood fox
Reactions:
Posts: 2728
Joined: 24 Aug 2017, 11:17
Location: Wandering around
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#54

Post by TheFennekin »

Triceymicy wrote:
25 Jun 2020, 20:20
Explain How To Start, Like A Button.
What "like a button" do you mean? You can see different topics about how to make different kind of plugins.

User avatar
Lorange7.
Settler
Reactions:
Posts: 2
Joined: 06 Nov 2020, 08:55

Re: How to write a plugin

#55

Post by Lorange7. »

is it possible to create a moving object?
if it is how can you do it?

User avatar
Lorange7.
Settler
Reactions:
Posts: 2
Joined: 06 Nov 2020, 08:55

Re: How to write a plugin

#56

Post by Lorange7. »

is it possible to create a moving object?
if it is how can you do it?

User avatar
CommanderABab
AB
Reactions:
Posts: 11086
Joined: 07 Jun 2016, 21:12
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#57

Post by CommanderABab »

Yes, what kind of moving object?

User avatar
TheFennekin
Neighborhood fox
Reactions:
Posts: 2728
Joined: 24 Aug 2017, 11:17
Location: Wandering around
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#58

Post by TheFennekin »

Animations do the trick

User avatar
CommanderABab
AB
Reactions:
Posts: 11086
Joined: 07 Jun 2016, 21:12
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#59

Post by CommanderABab »

Yes, but there can also be helicopters, planes, vehicles, (pedestrians), and somehow pumpkins. :)

User avatar
TheFennekin
Neighborhood fox
Reactions:
Posts: 2728
Joined: 24 Aug 2017, 11:17
Location: Wandering around
Plugins: Showcase Store
Version: Beta

Plugin Creator

Platform

Re: How to write a plugin

#60

Post by TheFennekin »

Wait how do I spawn pumpkins in the version 941? The other halloween stuff were removed I think...

Post Reply Previous topicNext topic

Return to “Tutorials and Documentation”