#plugin-support
1 messages · Page 2 of 1
not even if you add like 20 zeroes
sir have you studied numbers in school
Can someone give me the id of road authority so i can also increase incomes for my tollbooths
@eternal lake, your suburb use lua functions to index a new animation right? I forgot the name of the function and i couldn't find it now, or maybe it was removed that's why it broke your plugin?
since when is my plugin broken?
Hello, this fences plugin did not work, would you have an idea of the bug, please?
hm finally it's ok, the creator told me he saw the error
???
I don't recall ever saying something like that
a screenshot would clear things up
Im assuming, one was your suburb
Also @steel verge where is the function to add code for draft, like add([["animation:"[{},...]]]) forgot the name, is it removed?
draft.append
yes
r/facepalm
it was a game issue and has been resolved in, like, a day
pretty sure all the issues we encountered are fixed already
Does anyone know what's up with water flickering when using shaders
I thought it was just because of high contrast but apparently it's not
I thought of that too but the screenshot is taken with atmosphere shaders low contrast option
Which almost doesn't change anything
Maybe it's a game bug or something wrong with my calculations in shader
But the shader's code is actually so basic that I'm not sure
And there'd be plenty of other bugs if something was wrong with the shader
How can I make the floor transparent? is that I want to make a complement to decorate and I do not want that green base
Erase it
Erase the green stuff and add
"draw ground": true to your code
someone know a plugin to chanche this trains?
Does anyone know how I can make this train work? I want it to ride on the rails that come with the game.
"id":"your id"
"type":"train car",
"frames":
{All frame of 1 car included rotation},
"moveable":false,
"chargeable": false,
"capacity":25,
"speed":10.0
}```
I get an error .... can you explain me by MD?
you did change the frames and things right?
"monthly prices":1000000,
Monthly costs cannot affect income?
it's not "monthly prices"
What is it
my beloved
fun fact: a lot of problems can be solved by going here: https://forum.theotown.com/viewforum.php?f=41, and checking the topics
(can I pin this?)
Made me laugh, the dev don't know what actually it was
Any documentation of elevated train ?
It's best you hold off from making them for now
Sad
if that's close to being removed, I suggest to allowing this
```
For elevated flatform
Hey guys, I've created a bus to spawn around a building (a bus terminus I created). I've created the bus png as required but it's showing this error while opening the game...
This is the bus png
And this is the first time in creating this kind of a plugin pls help ;-;
I created four buses...
Okay
Which json?
The bus'?
Okayy
Oki
sure
You didn't specify 4 frames in the json
Your drawing is fine, but the code isn't
do i need to split it into 4 images?
Nope
send me the json and I'll try to fix it
oh wait a second
the bus frames are in jpeg form and has no transparent background
- Very low quality
Ty I actually fixed it
I forgot to add the count in the frames
It actually shows up like that here in discord bcs of its small size
"type":"park",
"frames":[{"x":0,"y":0,"w":16,"h":46,"handle y":9,"count":9}],
"border frames":[{"x":0,"y":0,"w":16,"h":46,"handle y":9,"count":9}],
"template":"$template_grounddeco00",
"needs road":false,
"water":0,
"power":0,
"influence park":10,
"influence culture":10,
"price":20,
"monthly price":1,
"selectable frames":true,
"draw ground":true,
"supports slope":true,
"supports terrain":true
width and height needs to be same
or idk thats what the error is saying
my file has 9 frames and does 288x46
due to trees
so what i must put as values
you are simply missing width and height attributes
alright
imma try this
okay it literally changes nothing
"border frames":[{"x":0,"y":0,"w":1,"h":1,"handle y":9,"count":9}],```
because thats not how you use it
please read advanced tags for building plugins
first, "height" and "h" are different things
second, h is for frames and is meant to be used in a frame object
(you can find advanced tags page from a link in pinned messages)
second, height is for buildings and is meant to be used in a building object
same for w and width
i mean
"border frames":[{"x":0,"y":0,"width":1,"height":1,"handle y":9,"count":9}],```
or
"height":1,
"frames":[{"x":0,"y":0,"w":1,"h":1,"handle y":9,"count":9}],
"border frames":[{"x":0,"y":0,"w":1,"h":1,"handle y":9,"count":9}],```
idk i just took from the ground json template
ground is different from buildings
You should've checked documentation on making buildings
Not just copy-paste the code
his explains your issues
okay
finally that works
thank you so much!
you're welcome
i just don't have them in the park category despise of the mention
But it doesn't really matter
make sure its type park
you probably used a template since you just copied the code
but I cant say much withput actually seeing it
imma remove the template
@eternal lake
^
now for some reason it asks for edge borders
meh that pisses me off
im gonna segregate each different texture
instead of making one single file
It's too complicated
And now when i'm using 4 different files, it says "your ground must be 32 width" 💀
eh i don't understand anything
it worked very well before and now it displays this ☠️
I think you just use the same frames you used on border frames
Even lobby doesn't understand that(apparently)
Yes
i do both
i don't see the ground tutorial in the getting started
wait nvm
also this is so old it's not even relevant anymore
How do I fix this anyone
Reduce the size of the image
probably wrong frame alignments
and how do i solve it?
wait is it your plugin?
or complaining someone's work
but in that case it is using wrong width for each rotation
I am trying to make a plugin of an Argentine freight train
theres a wrong encode for the width of each frames and alignments
And how do I go about correcting it?
"id":"CDD5A1",
"type":"car",
"frame":[{"bmp": "CDD5A1.png","count": 4,"h": 28,"w": 37}],
"frag normal":false,
"flag train":true,
"speed":2,
"v2":true
},{
"id": "SpawnDeCDD5A1",
"width":1,
"height":1,
"type": "railway station",
"frame":[{"bmp": "CDD5A1spawner.png","count": 4,"w": 32}],
"draw ground": true,
"needs road": false,
"influence passenger train": 30,
"car spawner": [{"targets": ["SpawnDeCDD5A1"],
"cars": ["CDD5A1"],
"count": 3,
"radius": 10}],
"capacity": 10
}]```
that "w" seems not accurate
"w" was talking about the length of each frame in pixel
in your case you used single length for all the frames which is wrong
this is the locomotive
you need to know how long was your frame each rotation
avoid using "count" for frames that has different length, separate each frame object instead
like ```
"frames":[
{ "bmp": "exampl.png", "x":0, "w":16, "h":8 },
{ "bmp": "exampl.png", "x":16, "w":16, "h":8 },
...
]
Oh thanks
im gonna sleep just leave your further question here for others to help
Ok
i don't know how to but I will give you some feedback
It looks nice but you should the color less saturated
You can reuse my indonesia train pack code,one sec for the link.
https://github.com/Kiki012184/Indonesia-Transportation-pack/releases/tag/7.2
Download the zip file.
Too generous
Nc
Psuggest [LUA] Builder.isTerrainHeightBuildable and Builder.getTerrainHeightPrice
I do not recommend using my commands here. Perhaps there's a better channel for that?
lol
As .84 about supporting car spawner to target bus station does it mean it'll also work for car spawning using lua?
lua car spawner is depends on the coordinates. so, it's not a problem i think.
Maybe, however i realize there's no function to check whether a road has bus stops so i think a bit complicated if it works so
Anyway how does "deco" road attr work? I tried
"deco": "rdc id"
No errors but nothing happened
Maybe you can help me here @eternal lake
I wish it can support multiple deco an array of it but gives me an error :lol:
Thank you
Thank you i got how it works
Ahh one more thing @eternal lake may i have the draft any of the new streetlights?
I'm not aware of those
I'm pretty sure you can get those with debug mode in the game
I just want to get its frames object its position and animation used in it
I mean maybe they exist somewhere on github but I'll look it up later
I'll send it via dms if I find it
Yes thank you again
you're welcome
How do i make diagonal road deco?
Hello everyone, how do you make your own plugins?
You simply just make separate frames for the diagonals that you can use for the animations, and then put their indices on frames 3,6,9,and 12, or the curves
Check pins there are some useful tips there
Basically you draw on a pixel art app and freate a json file with a json creating app. Thats pretty much it mostly
Well pins in #plugin-discussion not here
you can find that in the world texture
Find it at world_0_0
Y it has 20 frames
fill level variants
What is "steal" frames for new diagonal railway
quick question, what line of code do I need to allow constant height for roads?
"min level":2,
"max level":3,
This?
pretty sure constant height is always available for roads with bridges and tunnels
Include a bridge and a tunnel, tbh this kind of thing seems like a bug, that button would not be showing up without those frames
noted I'll use this while making a building
Anyone knows how to activate the autoseasons plugin?
Can someone give me Custom zone .Json (example)
Send me the
currency symbol

{"id": "$amogus00", "frames": [0, 1, 2, 3]}
I assume this animation plays when the building has frame 0, 1, 2 or 3?
When the building is at that frames*
yes, whatever you want to call it
But that's not necessary if you just want the animation to be visible on all frames
amazing
Cars has it
Ptag files
TheoTown files are located under such directories:
▪︎ Windows: C:\Users(insert username)\TheoTown
▪︎ Linux: /home/$USER/TheoTown
▪︎ MacOS: /user/TheoTown
▪︎ Android: /storage/emulated/0/Android/data/info.flowersoft.theotown.theotown/files
By default you should be in /storage/emulated/0/
Reinstalling the game for Android will delete all files, unless you decide to keep the files when prompted by uninstaller.
Alternatively, you can access the files through in-built TheoTown file manager, accessible through the in-game menu.
You can find your plugin, music, region and city files there as well as logs for debugging purposes.
But #bot-commands exits
Sodanno?
????????
see compositions on forums
you're welcome
just be aware it might not really work for rci buildings
it's a wacky function
Is there a way to stop these railings from appearing? Or maybe a way to determine the railings ourselves for every frame of the road, kinda like using indices for road deco
Could make a road plug-in that hides it
I didn't know that was possible
Is there any free railway tunnel plugin as i want to make my hills transportable by trains pls
Yo
How to build plugin ?
Check #plugin-discussion pins
Hi i would like to ask how can i make plugins on my computer i searched everywhere but i couldn't find anything anywhere?
check the pins in #plugin-discussion
You didn't add type to your code
Use the same value for height and width
You should actually give the error a read all by yourself since they are quite explicit about the error
But if you don't get it, you have to give the height and width a value
The road need road.
The grass need grass
TheoTown needs Theo
Real life needs real
#plugin-support needs plugins
Discord needs Cord
||Earth is flat?||
||Earth is donut||
What will happen to my plugin after deleting theotown
you can make backups for your downloaded plugins
or if youre talkinga bt your plugins on the forum they are simply on your forum account
This file?
Unless there's an option to 'keep application data' once uninstalled usually from android 9
pov you have android 8
There's i guess
How do I get it straight on that
Use template
I did
There's some pixels on the left most of the frame try to find
Or you didn't crop it?
Monthly income code?
negative "monthly price"
monthly income higher than 1 is restricted for privileged plugins]
something like that
Oh thx
monthly income higher than 1 is restricted for privileged plugins
I'm afraid you're not a privileged creator
the image needs to be 64 pixels wide
you need to use English outside of #language-bar
Sorry
He's brazilian too so I thought I could talk to him from our language
you can in #language-bar
64
32 is for 1×1, 1 baseplate
Stupid mistake
What do I need to write in the "type": line for pavement?
ground
if you mean pedestrian road it's type road
Oh ok
Thx
Why the Pipes under roads plugin aren't working ??
Because the update broke it i guess. The plugin creator may need to update it for it to work again.
[
{
"id":"$gunshots1",
"type":"sound",
"file":"gunshots1.mp3",
"volume":"1.0"
},
{
"id":gunshots1S",
"type":"decoration",
"frames":[{"bmp":"bully.png"}],
"width":1,
"height":1,
"draw ground":true,
"actions":[{"play":"$gunshots1"}]
}
]
That's the code for it, dosent work
@earnest pendant
You take it from here
Tell them the problem I'm leaving
What
Bye very over populated server, I'm going back to the forest
You are very likely using the wrong thing to play sound
I have no experience in sound, but fun aside, the json provided has a syntax error (and you shouldn't put numbers in apostrophes too)
Beuh
Overpopulated? Bruh I've seen a server with half a million members. You called this server "Overpopulated"? Oh wait he left...
is it even possible to make own disasters?
oh
I've searched it for 15 minutes and couldn't find anything
that's why I asked here
Well what about crimes
maybe u know
Crimes are a no go
This plugin has custom disasters open that bad boy up and look at the code
I hope its not gonna be hard
Not that I know of
I run out of ideas then
what about the protest
can I make protest after an certian level
with custom message
I don't see why not
Do what?
how tall is a pixel?
1
I meant 1px = ?cm/?m
Lol
lmfao
3 pixel = 2 meters irl for buildigs
2 pixel = 1 meters irl for some creators
aight
Theotown folks are now 2m tall irl
lmao
Meanwhile most door in my country are just 1.8 meters tall
Im asking cuz I wanna calculate the height of the Tokyo Skytree in pixels
okay based on the 3px = 2m irl, the height of the Skytree in pixels is 951px
meaning the Tokyo Skytree is theoretically possible
even without the use of animations(altho it'll take up a lot of space)
doing it with the 2px = 1m irl however would result in it exceeding the height limit of 1000px
dang seems like it’ll a big job
dk if anyone gonna do it tho it’ll look mad nice it if does work out
3px - 1.8m would be more accurate
Wdym possible
Even really tall stuff are possible
It has to be really huge to not fit in texture space
I remember putting an absurdly huge image of the moon in theotown
It's cuz I thought there was a height limit of 1000 pixels without animation
*1024
Can privileged code can bypass max supplies limit per tile?
A what
Hello, @trail furnace can you help me pls?
Youre fitamint right? Can u help me with something
what is it?
But yes can you add me real quick? You can unfriend me after this, it's okay, but please help me in DM's
uh, kk
Only for this one, or maybe more if I need more help or smth
lets not, not right now.
Alright
alr, thanks
Maybe tomorrow, cuz this is pretty urgent since y'know, I don't want to see that guy doing anything stupid because of this
Whats up man? Can i help?
no, you dont get it
👍🏼
its no one faults k? please, i dont need this conversation rn
Sound works well but it doesn't show information
ok thx
I've tried the same,but... Idk why it refuses to work when i use steal function to save plugin size.
The supply, water & power probably
Emmmmmmm no?
No one's blaming you for anything? Just calm down alright? I hope we can talk about it again today
I'm just very, very worried
About that guy
Issue
Since this is a personal issue, i recommend not using plugin support for this.
Oopsies
How to make own category for plugin
there is
Help
how are we supposed to help without your code
most likely incorrect x/y/w/h/count/handles
Here.. take it
your helis are 18x11 but you are using handles of 18?
SI
Yeah
no matter how much I give the drone will continue to cut
do you even know how it works or are you just putting random numbers in expecting it to work
yes
What's the code for one-lane roads
How to write the code of the police station and hospital ?? Everyone
The code in my one lane road plugin looks like this
(Dont directly use it, works pretty weirdly and some people say it doesnt work)
If you want to understand how it works heres the forum link
https://forum.theotown.com/viewtopic.php?t=7760
thank you so much
Npnp
Bruh
It's a 1 lane road
how to import sprite in-game that is at night color i just want the sprite to make it easier for me to draw the custom night animation. I dont know how to explain right but whatever. can someone help?
You mean putting some sort of overlay in your original sprite to make it look like the night version of it? To help draw night lights?
Yes I do also wanna know someone please tell us how
Hey im new, i downloaded the residential house plugin but why doesnt it change?? Thank you
Wdym with "change"?
Excuse me
What to do with it was downloading ancient mesopotamia from forum but game says this
What should I do?
Looks like you're missing a category need by the plugin
Check if you have downloaded everything needed and installed correctly
If that'd the case, then contact the plugin creator
Ok
I think I forget to take the basic one ,but now I try to do it but
Hey I downloaded all and did all right still game tells to delete that plugin lol
Hello, I'm currently having a problem with the noir shader plugin
It doesn't let me open the game
@hexed coral
wait huh
it worked on pc and for the26
it doesn't have round?
All shaders worked on me
Any debugging techniques on shaders?
Like Debug.toast
No
Also there's no way to make diff shader for water
What's in the shader would be applied on all pixel
Folder?
plugin folder
Yes, but if you want to speed up things, Anciv is in store now
Just don't use shaders
🧌
As a side note, that actually looks insanely cool! Like gazing upon the stars in outerspace.
I meam there is
I was wondering how do you make plugins?
Check the pins of #plugin-discussion
What's wrong with the composition tool i thought i can make an easy copy of this intersection
Its been a few months and the staff still haven't pinned the link to the plugin creator
Please pin this
Nice
its not too hard to find
I will be
And I'll be moving it to #plugin-discussion
For the sake of keeping all those resources in the same spot
jsons are a sucker for spelling
Yep..
no, dont worry about it, now you can fix it. so goof luck!
Hm not sure
Then that's skill issue
That's a shame you can't figure out what you need to do
Lol
Yeah
Skill issue
You should probably do the same effort to achieve your desire look
It's about connecting each frame to its piece to make sure everything was aligned
Don't forget to use layers you dont want to get upset when it was merged
Can somone help me? Cant get my plugin to run
No screen
The plugin works, but it wont show up
"works"
So I have a big problem
I can send you a short film
Pv
do you have a minifest file?
You think its the problem?
If yes how can I do it?
Does somone know how to make manifest file?
Idk i always make it with pca
.
The hell pca is?
An easier way to create plugins via friendly UI interface.
Simple coding, tick and write stuff it will code it by itself
you haven't defined a car of id "$mmtramfront00"
or, most likely, defined it after it is used
I tried using the atmosphere shader and it gives me this error
What game version do you have?
Pversion
I don't know much about game versions
That's a good debugger Haven't seen that before
But judging from my limited knowledge, you version is rather old
Wdym
I mean that toast for fragments
I think errors in code like that are always there
I saw it myself when I was fixing the problem with "round"
I said goto file manager
All phone have inbuilt file manager
Im in the file menager
But the heck i didnt have a "normal file menager"
Goto Android/data/info.theotown.../files/managed plugins
Where is the heck android
yep it worked, all i had to do is update
Main storage/Android
Then this and delete RGBSL_Shader.... and wait for its update
I didnt have any "info theotown (...)"
Android>data
Im in data
It's always at the bottom
What's that notice says??
"cant use this folder"
What's the button says
"use this folder"
Click it
What's that
Idk
Files/managed plugins/
Find RGBSL_Shader and delete it
What does them doo?
That's the plugin causing error
Ok
Just wait for the plugin update if you ever want to download it again
I cant delete it
Why
I clicking it and nothing goes on
Press it long, it will popup a menus 😩
I'll bet your phone gets full storage cuz you can't delete a file once in your life
I pressed it long and nothing goes on
Use the tripple dot right above
Still don't work
I think there's an edit option or select files
What this says?
Use this folder
Tap it
Use this folder
How?
Ok again
I think you downloaded a poor file manager
Next time download CX file manager or Zachiever
Why tf it was censored
You know i think there's a bug with that software just download another one
Oh yes that's what im.saying lately but he can't find it
If you can't open native application, use this to defer opening https://play.google.com/store/apps/details?id=com.marc.files
Nice research
I think theotown was below those drive account
scroll down
That managed
Im here
Find the offending plugin
Ok
So is this the ID of the category? Or is it something else
Yes
Ok thank you
IT works now
Review what we did and do the same way next time
||your phone seems has a lot of ads||
at least you have no traffic jam
L. Traffic makes cities feel alive
Mmm yes, bumper to bumper traffic feels so alive
Yes
Why i can't select multiple images when im using the PCA
I can't do it one by one even
Can someone explain to me why SOA (sea of age) gone from plugin store?
Even I can't find that plugin at theotown website
Age of sail is not available anymore,due it's incompatibility with newer version of theotown,you need to install older version of theotown to use age of sail, that's the knowledge i know so far.
@rocky geode
And you also spelt it wrong
Why im pinged
Man.. so sad to hear that 🥲
Yeah that requires to cry
where is the issue ?
No problème
then put it in the right channel not here
i saw this plugin, and my heart was moved
it was so wonderful that i couldn't say it
i wanna know the code of this plugin, and i thought 'if i made a korean version'
so... who can help me?
@rocky geode that's yours ain't it
Nahh you're mistaken
sureee
Np
Can somone tell me how to add to building monthly income?
become a trusted creator. Only trusted creators can do that
you can set it negative for a monthly price though 
If it's a normal commercial then it gives you a common income
I think you can still do monthly income, but it's limited to 1T
Better than nothing, I guess
That -1T is a huge lie
Does that not work anymore?
I tried that it just gives me an error
Huh, weird
That used to be a thing. I think I used it in the nature pack at some point
Or maybe I'm just insane lol
Tell me now
How to make a road
Is there a template for that?
PLUGINS
Something
Where
The hell are you Talking about?
I dont want to download them
Bro
Youre talking about something diff
I want to make a road
Bro
Youre not pretty helpful..
Thanks for trying
But
Can somone other than eugine tell me
How to make stupid roads?
Also @earnest pendant please be nice next time. We are in #plugin-support , so asking how to do a plugin is going to be common. Don't be rude and say to use the in-game roads when he is asking on how to make them
Thats how you help, thank you young man!
Jeez i feel like a old guy that survived ww2..
mmorpg npcs after you complete a quest
XDD
Does somebody have nice plugin to new cars or a cars decoration? (Or a fire trucks deco.?)
Probably plugin issue.
Hmm Indonesian loves 's' on their translation
What version do you use
Not my screenshot, it's someone from my group.
Oiii algum br pode me ajudar… eu queria saber como eu posso começar a fazer plugins
#language-bar please
to build something on water and on land i need to add '' true '' to both, right ?
yes
alr thanks you
Because it needs to be set both as false
didn't work
no
cant be built on water
i want to build it on water
on land yes
YES
and needs water what ?
and stop give me codes wich dont work
I don't trust it, it takes me 10 min each time
youre wrong btw
if i put land false it wont be built on land
i'll just make two plugins
i'll try it
but wont work for land
"needs land": false,
"needs water": false
//For a building that can be built both in water and land
"needs land": true,
"needs water":true
//For water port or something build in shore.
I've been using that too many times.
Lemme prof it.
i tried
all
ofc
i'll just use fake water
uh
can be built on land
cant be built on water
and it's the problem for all codes
no need to show
you think i lie ?
baseplates are green on land
baseplates are red on water
why you need a screen to understand this
i can send any plugin wich work like that
Use the prof.zip plugin for Refrence,you might just had some typo.
it is not by repeating it that I will solve the problem
Send the code on dm,if had some privileged code innit,remove it.
lmao
i tried benutzername for second time
still dont work
all i do is code with pca and modify the file code to add needs land and needs water then i replace the old code and upload
what's wrong
I don't want to be rude,but if you want the problem solved quickly,send it in dm.
Any missing/excess coma?
coma ?
,<
||Skill issue||
Maybe your attributes has capital letter, or the worst part, you made the boolean value as string
Also i experience the latest json genie has bug
Like there is a time that it automatically put a trailling character if you saved it
Luckily i have the old version of it
I recommend to check your code as "code" Not in json genie
anyway It should be set like in genie
exactly what i did
and for saving i save it on /json folder
then i import the code to the zip file
good ?
i put '' , '' after '' false '' as there
i compressed that with manifest and frames
bruh it's worked
while it's exactly the same for json genie
Daman is that the latest QuickEdit?
Damn it already has vertical lines to trace nested structure
It's Code editor from playstore.
This one.
No,but it's had tons of themes.
Trash
But I've been seen a screenshot of you using it.
Acode with tons of features,which make my plugin making quicker.
Give me a patched version of it without ads, im lazy to patch it on my own
Ehhh i don't like the file tree listing looks like vcs
This android feature exist.
Is that trick from mine?
Found it on YouTube
Well im using Android 5.1 so i don't have that i will patch it on my own instead
I realized it was made by the same dev so probably external fonts are supported
lol you didn't commented it
It hasn't what a trash
Contact lobby or ja or pidroid..
Is it possible to add winter animation to a road rather than winter frames?
just like for buildings
it works in the same way, roads can hold animations too
DDoes it switch during winter?
hmm idk i never tried to add winter animation before,
"winter animation ": [] is it?
"in winter": true
In winter?
"animation": [{"in winter": true, ...}]
I will add rain animation in winter
le undocumented functionality has arrived
I swear suburban living is the only place it's used
Update the docs Kulche
couldn't care less, kthxbai
Fast question
Does a draft can reference multiple template?
Nice
Not really sure where to suggest an update but here
@rocky geode
I would really like it if the bus station can be put on roads,I don't have space anymore 🙂
No, as of now smart cars cannot target a bus station type
I went back to the old days when I hid your London bus depot behind skyscrapers
Ptag files
TheoTown files are located under such directories:
▪︎ Windows: C:\Users(insert username)\TheoTown
▪︎ Linux: /home/$USER/TheoTown
▪︎ MacOS: /user/TheoTown
▪︎ Android: /storage/emulated/0/Android/data/info.flowersoft.theotown.theotown/files
By default you should be in /storage/emulated/0/
Reinstalling the game for Android will delete all files, unless you decide to keep the files when prompted by uninstaller.
Alternatively, you can access the files through in-built TheoTown file manager, accessible through the in-game menu.
You can find your plugin, music, region and city files there as well as logs for debugging purposes.
So you need to use the in game file manger to move the file from your downloads to your game files
The file manager can be accessed in the menu while on the region screen
in the plugins folder
yep!
You're welcome!
Is there a way to rename disasters?
if you tamper with the code I think so
Which in practical terms is no
just a quick question how do i place my plugin on water?
Easy:
make a plugin with draw ground off
Bruh
Can someone explain more about randomising animation on specific draft using lua, referring to kulche suburban plugin.
It may not be much, but it works
That is too much, but it doesn't work.
How to fix
Sounds Jeremiah stuff
It is
delete his plugins. For your own safety.
He was banned from here for sharing malware.
"count" in your car spawner object
Does someone know here why is this plugin don't work?
Did you read the note?
Where is it from?
Plugin store, forums?
So you have the zip
Can you send the json?
Yes
I think there is a tutorial for that in the forum
@vague scarab sorry for the ping but any idea how to make the decoration and rail look connected?
@vague scarab do you have a rail piece that is decorative as well? If you do that could probably be used to fix that issue
the easiest solution would be to just create a road decoration
how do i code fences
i have that bush one for a long time now but i have now idea how to code it
I have a json for fences
the main problem is that idk how to set a json and my app doesnt work
i did
I'm gonna do add rail variant soon.
Yoo how do you get container ships??
Ppunish 352712336898785282
cutest asian e-boy#1671 was banned for the following reason: Sharing scams or phishing content.
Is there a limit to the amount of plugins I download? I kinda just when on a downloading spree without thinking and it's my first time using plugins
There is, and it's dependent on your device
Ohh I see, how can I tell?
It mostly depends on how much ram your device has
I'm looking for a good plugin for cooling towers and nuclear stations on my phone. previously such a plugin was in the play store
now I can't find it
Where can I find this mod ?
Use Contact us button if you're forgot your forum account password.
use "forgot your password?" in the login page to reset your password
if I code this in 1×1, will the orange square still appear if I build?
You forget to properly cut it.
Add this after bmp frames.png
"w":32
Ah I understand what you're doing now
One thing,if you proceed,it would had clipping issue
Clipping ?
Can't explain it in English.
it will be drawn if your frames are defined properly
it's not a good practice though
I'm just looking for a way to not need to do modular stuff
that's not the way.
Width and height both 2 yeah
Well i'll try it anw
as for publishing this in the plugin store I think I understand the problem, but it's just for me that I'm doing this
Is it possible to do 9×9 to 12×12
if you have a privilege code you can
but to get one, you'd probably have to prove to lobby that you can actually draw a good 9x9 or 12x12
i saw a 16x16
dunno, but it is now
dont remember what the upper limit with code was
either way, i havent seen a building that big that hasnt looked bad
(i will conveniently ignore kekmans cathedral for my argument)
(ops, wrong channel)
#plugin-discussion pins to get started
Alright
What gentelman or a madame is ready to tell me how to make own cars in theotown?
Check the pins of #plugin-discussion and use the resources there
Gonna try it, thanks mate.
best of luck1
yo
are there any plugins just for citizens/people/groups/etc? it would help a lot to make my town more realistic lol
thank you in advance
with what problems can be connected? I have a lot of mods, but not a single one that would kill compatibility with each other.