#modules
1 messages · Page 6 of 1
thanks!
but when the script is loaded
and someone joins the tribe house
while the script is on
they cant spawn
is there a way to fix that?
can do the same tric
eventNewPlayer = tfm.exec.respawnPlayer
- if you dont have anything inside those events
or
thanks
eventPlayerDied = function(name)
-- other stuff
tfm.exec.respawnPlayer
end
-- same for eventNewPlayer
IT WORKS
how to make particles spawn when you press the arrow keys?
i want the effect to be redglitter
aka id 13
@hidden trail help?
well
i want when you press the arrow keys some particles will appear on your mouse
this is my script im workin' on
god = "Lunathemouse#4489"
for name in pairs(tfm.get.room.playerList) do
for keys, k in pairs({38, 37, 40, 39}) do
tfm.exec.bindKeyboard(god, k, true, true)
end
end
function eventKeyboard(god, key, down, x, y)
if key == 38 then
tfm.exec.movePlayer(doll, 0, 0, true, 0, -70, false)
elseif key == 40 then
tfm.exec.movePlayer(doll, 0, 0, true, 0, 70, false)
elseif key == 37 then
tfm.exec.movePlayer(doll, 0, 0, true, -70, 0, false)
elseif key == 39 then
tfm.exec.movePlayer(doll, 0, 0, true, 70, 0, false)
end
end
tfm.exec.disableAutoTimeLeft(true)
tfm.exec.disableAutoScore(true)
tfm.exec.disableAutoShaman(true)
tfm.exec.disableAfkDeath (true)
eventPlayerDied = tfm.exec.respawnPlayer
eventNewPlayer = tfm.exec.respawnPlayer
tfm.exec.newGame("@7722098")
tfm.exec.setGameTime(99999, true)
print("<font color='#00FFF9'>"..doll.."<font color='#B6B6B6'> Is now under control of Forzzy.")
so..
tfm.exec.displayParticle(13, x, y)
but i need to put the keys
add that inside your eventKeyboard
ok
just add after 1 line of the function since you don't have any other key binded
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
in this script if you press f it spawns many particles
tfm.exec.displayParticle(13, x , y - 2)
tfm.exec.displayParticle(13, x + 5, y + 2)
tfm.exec.displayParticle(13, x + 10, y - 10)
same thing (but with random values) have being used in the example you provided
you can copy paste that too
any errors?
let me try something
lua
tfm.exec.displayParticle(name, x , x - 2)
tfm.exec.displayParticle(name, x + 5, x + 2)
tfm.exec.displayParticle(name, x + 10, x - 10)
i am puttin the message you wrote and it doesnt work
@hidden trail
sorry if im annoying, im just new
any errors?
the particles wont show up
w a t
tfm.exec.displayParticle(13, x , x - 2)
tfm.exec.displayParticle(13, x + 5, x + 2)
tfm.exec.displayParticle(13, x + 10, x - 10)
like this?
yes
oh sorry my bad 😅
bruh
I updated my answer
your my sensei?
ops
THANKS
sometimes people make mistakes
but with the haunted doll script, how can i make ALL people controll themselves?
It's still there
hm
I tried a page
and the browser didn't allowed me to
Maybe there is some factor that allows to enable Flash or not
clic the lock next to the url and you'll find a way to re-enable it
😱
Maybe it was Chrome weird stuff that happens randomly
I reloaded page and lock returned
But I should test on non-secure pages
firefox is waiting for you

Maybe there is some factor that allows to enable Flash or not
@plucky tendon Is Chrome locking Flash by default, aren't you?
how can i make all rats controll themselves with the haunted doll script?
It broke !
Sad
does anyone know what is the sprint of conect 4? for tribe house?
spri what
New afk module #aurora0retro
@cobalt saffron gg
lol
Nice
Loving the synthwave aspects!
Thats eye candy to look at
but with the haunted doll script, how can i make ALL people controll themselves?
@mild sage
There will be more
No soy experta en eso u_u
Ay. Necesito para hacer un torneo
pero no encuentro ninguno. :;
El elimination no me funciona. :;
No me aparece comenzar.
@mild sage ¿No sabes de alguien que me explique? :;
Nop
I made the script of the screenshot :P
You can contact Baltar#1986(discord), he may or may not agree in sharing it with you
but with the haunted doll script, how can i make ALL people controll themselves?
@mild sage https://pastebin.com/V7hYGrB5
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
script should work the way you wanted it
thanks
@gentle thorn • # [*Fluffy Cats] Init Error : [string "Forceplayz#1169.lua"]:1: unexpected symbol
oh
it works now
@gentle thorn my friend moves and it doesnt work
only if i move
it works
only form me
for*
oh it works
if i restart the script
how can i make the script work for other poeple while they came in the room while the script is on?
@mild sage
add this at the top
function eventNewPlayer(name)
tfm.exec.bindKeyboard(name, 32, true, true)
end
thanks !!!!!!
@gentle thorn it doesnt work
that should work lol
where do i put it?
oh
it doesnt work at all
function eventNewPlayer(name)
tfm.exec.bindKeyboard(name, 32, true, true)
end
for name in next, tfm.get.room.playerList do
tfm.exec.bindKeyboard(name, 32, true, true)
end
for name in next, tfm.get.room.playerList do
tfm.exec.bindKeyboard(name, 32, true, true)
end
for name in pairs(tfm.get.room.playerList) do
for keys, k in pairs({38, 37, 40, 39}) do
tfm.exec.bindKeyboard(name, k, true, true)
end
end
function eventKeyboard(name, key, down, x, y)
tfm.exec.displayParticle(3, x , y - 2)
tfm.exec.displayParticle(3, x + 5, y + 2)
tfm.exec.displayParticle(3, x + 10, y - 10)
tfm.exec.displayParticle(13, x , y - 2)
tfm.exec.displayParticle(13, x + 5, y + 2)
tfm.exec.displayParticle(13, x + 10, y - 10)
if key == 38 then
tfm.exec.movePlayer(name, 0, 0, true, 0, -70, false)
elseif key == 40 then
tfm.exec.movePlayer(name, 0, 0, true, 0, 70, false)
elseif key == 37 then
tfm.exec.movePlayer(name, 0, 0, true, -70, 0, false)
elseif key == 39 then
tfm.exec.movePlayer(name, 0, 0, true, 70, 0, false)
end
end
tfm.exec.disableAutoTimeLeft(true)
tfm.exec.disableAutoScore(true)
tfm.exec.disableAutoShaman(true)
tfm.exec.disableAfkDeath (true)
eventPlayerDied = tfm.exec.respawnPlayer
eventNewPlayer = tfm.exec.respawnPlayer
tfm.exec.newGame("@7779598")
tfm.exec.setGameTime(99999, true)
@gentle thorn
on the top
yeah
oh not on tfm
@mild sage
function eventNewPlayer(name)
for keys, k in pairs({38, 37, 40, 39, 32}) do
tfm.exec.bindKeyboard(name, k, true, true)
end
end
function eventKeyboard(name, key, down, x, y)
tfm.exec.displayParticle(3, x , y - 2)
tfm.exec.displayParticle(3, x + 5, y + 2)
tfm.exec.displayParticle(3, x + 10, y - 10)
tfm.exec.displayParticle(13, x , y - 2)
tfm.exec.displayParticle(13, x + 5, y + 2)
tfm.exec.displayParticle(13, x + 10, y - 10)
if key == 38 then
tfm.exec.movePlayer(name, 0, 0, true, 0, -70, false)
elseif key == 40 then
tfm.exec.movePlayer(name, 0, 0, true, 0, 70, false)
elseif key == 37 then
tfm.exec.movePlayer(name, 0, 0, true, -70, 0, false)
elseif key == 39 then
tfm.exec.movePlayer(name, 0, 0, true, 70, 0, false)
end
end
tfm.exec.disableAutoTimeLeft(true)
tfm.exec.disableAutoScore(true)
tfm.exec.disableAutoShaman(true)
tfm.exec.disableAfkDeath (true)
eventPlayerDied = tfm.exec.respawnPlayer
eventNewPlayer = tfm.exec.respawnPlayer
tfm.exec.newGame("@7779598")
tfm.exec.setGameTime(99999, true)
for name in next, tfm.get.room.playerList do eventNewPlayer(name) end
try this
?
why did you call the function two times
i ment
lol
when the script is on
and then the rats are joining the room
they would still have the power
when the script is on and rats are coming in the room
i need to restart the script
function eventNewPlayer(name)
for keys, k in pairs({38, 37, 40, 39, 32}) do
tfm.exec.bindKeyboard(name, k, true, true)
tfm.exec.respawnPlayer(name)
end
end
function eventKeyboard(name, key, down, x, y)
tfm.exec.displayParticle(3, x , y - 2)
tfm.exec.displayParticle(3, x + 5, y + 2)
tfm.exec.displayParticle(3, x + 10, y - 10)
tfm.exec.displayParticle(13, x , y - 2)
tfm.exec.displayParticle(13, x + 5, y + 2)
tfm.exec.displayParticle(13, x + 10, y - 10)
if key == 38 then
tfm.exec.movePlayer(name, 0, 0, true, 0, -70, false)
elseif key == 40 then
tfm.exec.movePlayer(name, 0, 0, true, 0, 70, false)
elseif key == 37 then
tfm.exec.movePlayer(name, 0, 0, true, -70, 0, false)
elseif key == 39 then
tfm.exec.movePlayer(name, 0, 0, true, 70, 0, false)
end
end
tfm.exec.disableAutoTimeLeft(true)
tfm.exec.disableAutoScore(true)
tfm.exec.disableAutoShaman(true)
tfm.exec.disableAfkDeath (true)
eventPlayerDied = tfm.exec.respawnPlayer
tfm.exec.newGame("@7779598")
tfm.exec.setGameTime(99999, true)
for name in next, tfm.get.room.playerList do eventNewPlayer(name) end
@mild sage this should work now lol
add me lol
How to add animated particles?
How to add animated particles?
@mild sage Look at the full arguments oftfm.exec.displayParticle(id, xPosition, yPosition, xSpeed, ySpeed, xAcceleration, yAcceleration, targetPlayer)here: https://atelier801.com/topic?f=6&t=781139&p=1#m3
ty
@mild sage if the mouse only needs to revive when it dies there is no need to repeat the eventNewPlayer, calling this event again will weigh the script because you are running a loop again that activates the keys.
Ok...
"Lua developers", as in the Module Team?
:O
"Lua developers", as in the Module Team?
It's the other name of the module Team ^^
it makes no fucking sense
they always had the ability to load scripts on those rooms
-_-
I thought the same thing
^
^
I just mocked all my modules
They were all shut down and I don't plan to bring them back any soon
Not that it matters
they use prefix now
and probably tfm.get.room.community doesn't work anymore
so we will have to search for prefixes in the roomname
so any one can use lua in *# room privte room ?
what changes then
also rip module translations
they should alow players who have there name in privte rooms to use lua
disagree, lua is dangerous
and regular players shouldnt share the same VM as module rooms
you have tribe house for that :p
but like when i want to do race or fun event
i need to inv alot ppl
and tfm crash alot
so ineed to inv again
in privte room any one can join
It would be nice to be able to run Lua in rooms with your own nickname but with the same limitations as the tribe house
Hi , "I know there's a Lua command which sets the shaman mode to a specific mode, even if the Shaman hasn't unlocked the mode yet." does such exist?
Yes
Hi , "I know there's a Lua command which sets the shaman mode to a specific mode, even if the Shaman hasn't unlocked the mode yet." does such exist?
@spiral crater https://atelier801.com/topic?f=5&t=451587&p=1#m11
This topic shows all updates of Lua API and has a new function that defines the shaman mode.
tfm.exec.setShamanMode(playerName, mode)
The mode is a numeric value, probably from 0 to 3
thank you ❤️
sure
how do i put the lua in tfm? do i just put it in chat?
you do /lua in tribe house and load it from there
It would be nice to be able to run Lua in rooms with your own nickname but with the same limitations as the tribe house
Ikr
Rooms share one VM and Tribe Houses another
If you use the rooms VM, then modules will crash more often because then your codes are going to conflict with modules' runtime
._ .
If you use the rooms VM, then modules will crash more often because then your codes are going to conflict with modules' runtime
But couldn't rooms with your name have the same VM as the tribes?
The god mistens has spoken
some times funcorp make rooms whiche players can select image insted of there outfit where can i get that script & does it work in tribe house the image i mean ?
no
you know about these things pls help @civic burrow
this script if i can find it and is it playble in tribe house @civic burrow ?
@inner carbon can ask @mild sage about it :P
I doubt you can use it in your tribehouse as it uses images
That doesn't mean she couldn't have it anyway so that she could ask someone to load it when she'd like :p
i think i cuz problem ..
no, tocu is noob
@mild pollen ^
👀
How do I use the function "respawnPlayer" and "freezePlayer" in a script?
tfm.exec.respawnPlayer(player)--player = the player to respawn
tfm.exec.freezePlayer(player, freeze) --player = the player to freeze, freeze = either the player should be unfrozen or frozen, true = freeze the plyer, false = unfreeze the player
Where did you find that? 
👍
You can find that updated here https://atelier801.com/topic?f=612619&t=934783&p=1#m1
Or outdated but more neat here https://atelier801.com/topic?f=5&t=451587#m3
the outdated version only miss tfm.exec.freezePlayer i think
Oh right
Right, but my script is a bit different.. so I have no idea how I should add it there
Are you good with lua?
Soso, show me I can still try
I'm still learning, a more experienced dev could always correct me if im wrong
I smashed my computer because a script didnt work
Like a real programmer :3
rip
develeper 📈
nice
@civic burrow Can you please remove that sand map with the two anvils in #powers? 
:( I love that map
It's so annoying, everyone complains about it.
Aaaaaaaaaaaa okay ig
the map:
Kaboom?
yes rico, kaboom!```
a.a
im serious
Bruh, i think you need to meditate a little, sometimes I also get angry when i do something and it doesn't work but i am stubborn and i keep trying.
Oh
i would never hit a computer because i love them 🙂
New module #aurora0alpha
OK MY THIS IS MY FAVOURITE MODULE
@cobalt saffron That modules has a lot of potential. You can make a museum, tell a bit of history and so on. Great job on the module :)
There is a big lack of source for the 0.1 version, the original one
Most the footages are just few days later updates
And there is a month or two between 0.1 and what people call 2010 era
Which was colored wood grounds simulating our current grounds
wow noice
💣
i have more projects
we will bring back poisson
and probably all their old games
is matter of time that i have these done in a way or another
Add reversed gravity maps :D
we will bring back poisson
❤️ I liked to play Poisson, I also have a copy of itself source code in AS3 with functional FLA.
Only cool people play poisson
The submodule is just a test to add textures to shaman objects
What is learnt in #aurora0alpha can be used to customize #aurora module
@tulip lily I need these copies
@tulip lily I need these copies
I'm at work, when I get home I'll send to your DM
Thanks
Sure
I also want if possible
Ok
gg
@cobalt saffron hey ,can you tell me what the aurora module about ?
Lol
hi, does anyone have the truth or dare lua in spanish? (I'm using translator hahaha :))
Hi,alguien tiene el lua de verdad o reto en español?
find my truthordare forum thread n translate the opensource script urself :)
does anyone has a vanilla lua script for me please?
?
nvm
Djjbd
@sterile sparrow @sterile sparrow @sterile sparrow @sterile sparrow @civic burrow @civic burrow @civic burrow @civic burrow @civic burrow @civic burrow @tulip lily @midnight quest @sterile sparrow

@midnight quest ?


mention me 5 times for wat .-.
@sterile sparrow @sterile sparrow @sterile sparrow @sterile sparrow @sterile sparrow @sterile sparrow @sterile sparrow @sterile sparrow @sterile sparrow


just sharing my Tic Tac Toe minigame
https://atelier801.com/topic?f=6&t=884065&p=1
Sa
does anyone know a little bit about how flash works ?
what you want to know
nvm
@austere turret ihope you make flash we can download and play with it insted of the adobe one they gonna remove 😢
Use the standalone executable that you can download at the website
New command for you noobs: /luahelp
offensive
we all nobs
I can already see the ground IDs in tfm.enum.ground are missing yellow & pink grass, and the acid ground
tfm.exec.addBonus? That wasn't there before?
We can add defilante stuff using Lua now?
When did they add that?
Coolio
added now
Maybe also pin the message about /luahelp
Lua update!!!! (there would be cool emojis in here if they let me)
tfm.exec.setWorldGravity(wind<int>, gravity<int>) → Sets gravity and wind for the map
tfm.exec.addBonus(type<tfm.enum.bonus>, x<int>, y<int>, id<int>, angle<int>, visible<boolean>, targetPlayer<string>) → Adds a defilante token
tfm.exec.removeBonus(id<int>, targetPlayer<string>) → Removes a defilante token
eventPlayerBonusGrabbed(playerName<string>, bonusId<int>) → Triggered when someone touches a bonus
tfm.enum.bonus -> List of available tokens
- Bugs have been forwarded to Meli already. Stay tunned
Brand new command: /luahelp opens the Lua Tree (not always updated) and documentation
Oh good
Oh, amazing, i liked it
Update!
Added playerName parameter (default = nil (everyone)) to tfm.exec.addBonus and tfm.exec.removeBonus
tfm.exec.addBonus(type<tfm.enum.bonus>, x<int>, y<int>, id<int>, angle<int>, visible<boolean> playerName<string>)
tfm.exec.removeBonus(id<int>, playerName<string>)
Do you mind adding more functions in the near future? Especially altering map properties
I've edited the main message @viscid crypt
@hearty flint do this
tfm.exec.setWorldGravity(0, 10000000000000000000000000000000000000000)
interesting
you can't set this gravity with average map in editor xml
but now you can with lua
it happened to me on a map
wth
he might did something on how map worked to find out how to add this new lua property
and broke it as always
🙂
I also got it on the gravity map
It also fixes itself
But in the opposite direction
And when the time is over
The Lua function does the same thing as in the map editor, the difference is that the map editor has a limiter, in fact you are breaking Box2D's physics system in Flash.
tfm.exec.freezePlayer(name, boolFreeze)
add if/elseif conditions inside eventChatCommand
Thanks!
lua is a coding language
`
local admins = {
["Aplejacek#0000"] = true,
["Name#0000"] = true,
["Name#0000"] = true,
["Name#0000"] = true
}
local admData = { }
eventNewPlayer = function(n)
if not admins[n] then return end
admData[n] = {
tp = nil
}
system.bindMouse(n, true)
end
for n in next, tfm.get.room.playerList do eventNewPlayer(n) end
eventChatCommand = function(n, c)
if admins[n] then
local p, co = { }, 0
for a in c:gmatch("%S+") do
co = co + 1
p[co] = tonumber(a) or a
end
if p[1] == "tp" then
admData[n].tp = (p[2] and p[2]:lower():gsub("%a", string.upper, 1) or n)
elseif p[1] == "size" then
tfm.exec.changePlayerSize((p[3] or n), (p[2] or 1))
elseif p[1] == "colornick" then
tfm.exec.setNameColor((p[3] or n), (p[2] or 1))
elseif p[1] == "freeze" then
tfm.exec.freezePlayer
end
end
end
eventMouse = function(n, x, y)
if not admData[n].tp then return end
tfm.exec.movePlayer(admData[n].tp, x, y)
admData[n].tp = nil
end
`
I didn't make this script
Could someone help me out again? What should I put after "tfm.exec.freezePlayer" to make it so I could freeze and unfreeze people and choose specific person to freeze
for example
!freeze true/false [nick] - to freeze/unfreeze
or two separate commands
!freeze/unfreeze [nick] - to freeze/unfreeze
and is that even possible to add to this script?
((p[2] or n), (not p[3] or p[3] == "true"))
for for
!freeze [nick] [false]
false can be true or nothing to be true :p
Thanks alot!
how to make a lua script? bolodefchoco fala em pt-br
/lua
🌙 Forum Threads
Lua Documentation: https://atelier801.com/topic?f=5&t=451587
International Modules Section: https://atelier801.com/section?f=6&s=97
Module FAQ & Documentation: https://atelier801.com/topic?f=6&t=781139
Lua Events - Instructions and History: https://atelier801.com/topic?f=6&t=860194
Module API Errors: https://atelier801.com/topic?f=6&t=458983
Script Requests: https://atelier801.com/topic?f=6&t=462959
Weekly Modules Showcase: https://atelier801.com/topic?f=5&t=927164
Available Module Rooms: https://atelier801.com/topic?f=6&t=892566
🌙 Help and Resources
You can find Lua documentation and with the in-game /luahelp command.
https://www.lua.org/start.html Official Website
https://github.com/a801-luadev Official Modules Team Repository
http://lua-users.org/wiki/LuaDirectory
https://learnxinyminutes.com/docs/lua/
https://github.com/LewisJEllis/awesome-lua
http://codepad.org/ Lua interpreter and pastebin
🌙 Lua on your own machine
https://code.google.com/p/luaforwindows/
Please do not post game breaking/crashing scripts!
🌙 Forum Threads
Lua Documentation: https://atelier801.com/topic?f=5&t=451587
International Modules Section: https://atelier801.com/section?f=6&s=97
Module FAQ & Documentation: https://atelier801.com/topic?f=6&t=781139
Lua Events - Instructions and History: https://atelier801.com/topic?f=6&t=860194
Module API Errors: https://atelier801.com/topic?f=6&t=458983
Script Requests: https://atelier801.com/topic?f=6&t=462959
Weekly Modules Showcase: https://atelier801.com/topic?f=5&t=927164
Available Module Rooms: https://atelier801.com/topic?f=6&t=892566
🌙 Help and Resources
You can find Lua documentation and with the in-game /luahelp command.
https://www.lua.org/start.html Official Website
https://github.com/a801-luadev Official Modules Team Organization
http://lua-users.org/wiki/LuaDirectory
https://learnxinyminutes.com/docs/lua/
https://github.com/LewisJEllis/awesome-lua
http://codepad.org/ Lua interpreter and pastebin
🌙 Lua on your own machine
https://code.google.com/p/luaforwindows/
Please do not post game breaking/crashing scripts.
nice spam
@viscid crypt it's **organization **and not **repository **btw
also having slow mode in this channel is just ridiculous. No one uses the channel and slowmode will just make sure they still do not
Agree, not sure why its in slowmode.
😂
funcrop channel has it too
owo
who create #parkour module?
Yeah I'd rather have that blue one on top of the orange
the noob typing
who create #parkour module?
@cinder echo I did
@cinder echo I did
@inner carbon i love
ask them to make the coloured system from FSOL 
i tried to make a parkour map
ask them to make the coloured system from FSOL
@civic burrow this is a really good idea tbh
but im not good at this
a bit complicated to make
yes
a bit complicated to make
@civic burrow the role color system or the map
both i guess
the map
but im not good at this
@cinder echo dont worry, you just gotta practice
😍
i dont know how to export the map
lol bolo has color
You export it as a tribehouse map
and i dont grab 1000 cheeses
@timber pelican which color do you prefer?
You export it as a tribehouse map
@inner carbon oh
Then you go to your tribehouse and type /module parkour
thx for saying
And then /np @code
Yeah it is
owo
set restitution to 0
Depends
If you want them to not be ejected, set restitution to 0
Otherwise just increase friction
yes, and climb
Yeah leave restitution as it was
change friction to any number but 0
Yeah
and keep restitution 0
Probably friction 10
choco is 4
No. Dont keep restitution 0 as that wont yeet players away
The idea to climb lava is to come close to it slowly
And then start to climb by jumping
oh, that climbing?
yes
better use trampoline for the standard sakes
There are a lot of maps which use lava too
i did it
i put friction 10 too
thx a lot
and how i make the lava impulse to left or right?
bolodefchoco sou br falar brasileiro porcaria]
respondo no idioma que vc perguntar
fazer os ratos tocarem nela na direita ou na esquerda
pula indo em direção a ela e bata no lado direito
pastel 
did you know pastel is a traditional food in brazil @open crypt
it's as good as cakes!
sim
ppl usually eat it drinking sugar cane juice
Hello extreme qt
say .
.
.
winter is near
LUK DIS GARL
Gomma try it next wednesday then :o
o/ hoii
can I have my name cyan too?
you have to ask it in the other server i guess @merry parcel
unless mods can set it
hm ok
Pretty sure mods can add roles here

i think that the other server thing is needed for safety?
Maybe it depends on the role, getting the translator role was pretty easy for me
Done :)
done with what
Giving a role 😂
thank you!
pro
Can I have the role too?
Are we allowed to ask for scripts here
yes
Okok
this channel looks wrong
shouldn't aim any team but lua and module itself :P
should be moved to creativity to avoid confusion
Aim any team?
it's in "Volunteers Teams" so feels like it's only about the module team
:P
that's what i feel at least
idk if it fits here but in TFIL, Throwables are really abused for a platform to stand on
So my question is if there's a line of code we can inject on the main The Floor Is Lava that disables any use of consumable items while ingame?
It's been really annoying for us to find who's been throwing balls and roomkicking
just have tfm.exec.disablePhysicalConsumables() in your code

I like that blue color more tbh
br ppl hated it
Sad funcorp role is over module
shouldnt be
Verified should be over module
TFM Crash
well we announce that we'd restart the game so we can disable the throwables :'D
o
OMG
Ah
Hellooooo
ya 🍿

ya-cine
hoi
Ya cine, mds KKKKK
ya-🍿
Super cine
kkkkkkkkkkkkk
ya
.
,
@inner carbon
?
Hey tocu
Taco is pastel taco
heyo
taco has good color now
yes
nice 🌮 👍
I recommend y'all to play #circuit
Nice module
@civic burrow tem algum jeito fácil de eu mandar uma mensagem para todos os module tem members de uma vez?
vc pode falar cmg e eu repasso
ou ir no meu server e usar o !prj pra criar um prj com determinadas pessoas
o que é prj?
projeto
pra criar um canal com pessoas
howdy sexy santa
you mean a sweet pastel?
hell ya!
deep fried non-salty dough stuffed with sweet
most famous ones are dulce de leche, chocolate+banana, chocolate+strawb
and yeah, original pastel is stuffed with cheese :P
tho it tastes better with cheese+ham+ tomato
if you wanna try it (you should!), here's the recipe in PT https://www.tudogostoso.com.br/receita/20617-pastel-de-feira.html

hecc yes i love pastel
I suggest you to try the salty one first
Because even tho the sweet one became popular in here, they are far from the original's taste of heaven
also you can't stuff it muuuch or else the dough is gonna explode
stuff it moderately and then you'll be able to close it :P
i like bourek
and DONT forget to use a fork to close it
or else it'll look weird :c
if the recipe is unclear you can watch videos :p
And now the channel is at the top, no idea who but thanks :p
it's because she wanna try good food @viscid crypt
.
oh, you're here too 😂
oi yes it's me
im not though
Nice
👀
pap u look weird no longer orange >:(
petition to place the funcorp role over the module team role simply just because i would like pap to be orange again 😔
petition to make Pap pastel pink
????? like.... discorderator.....??????
no because that would still mean pap is a different colour from orange.... 😌💅

we could force Pap to have an orange avatar, orange name and be in an orange tribe both here and in-game?
@narrow jolt get ur butt over here so it doesnt feel weird talkin about you 💖
anyways pls sign my petition to make the funcorp role higher than modules simply just because pap NEEDS to be ~orangé~ 
(ง •̀_•́)ง put em up lets go
light blue is superior than any 
petition for blue above admin
If pap gets pink I want pink..
No the light pink role will be for ME
No, ME
xd
@rocky gale i was asleep also im used to people talking about me behind my back XD
petition to make Pap pastel pink
@open crypt
SECONDED
there was the time i was purple
It stopped working?
@lime kelp
it works
ive just tested it
if you could provide more input, we d be happy to listen
in prophunt none of these have the same color https://prnt.sc/vc13k3
any more issues?
this transforming me to another thing https://prnt.sc/vc16nr
oh those issues have been there for a while 🤔
the color of the dirt is different and therefore the grass also has a different color @mild sage
Doesn't matter, grass doesn't change in respect to the ground it's on
I think prophunt maps should have items more into floor than players can camouflage
Lua noobs #public-announcements
u
New features announced in the Lua Documentation!
New functions:
- tfm.exec.addBonus
- tfm.exec.freezePlayer
- tfm.exec.removeBonus
- tfm.exec.setWorldGravity
New event:
- eventPlayerBonusGrabbed
New ingame command: /luahelp
Go check it out and learn more at https://atelier801.com/topic?f=5&t=451587&p=1#m13 !
lua noobs 
@viscid crypt remove our pinned messages ig
he's not lua
Yep
why are utility rooms public now?
i was sitting in utility and a bunch of randoms came in because apparently my utility is in the room list????
i dont want a pw on my room bcs i want my friends to be able to join me without having to ask for pw every time
I don't think they are
Just that if there are 4+ mice it''ll appear in the list just like any other room
now international rooms with more mice get on the room list, last time they werent iirc
prophunt?
i know what happens now, thanks @lime kelp
@mild sage In prophunt, there's a filter that's applied on top of the grass when you're not hidden, making it seem brighter than normal. When you hide, the colour of the grass returns to normal.
who created #ghosts
ghosts module delayed on killing players :/
it was brenower
is there any way to get your skill tree used while utility in tribe house, like deattach, cloud etc?
know one's skills? no
Is using /mort in football bannable and when it will be fixed.
bannable? you wont get banned for that, haha
I lent my account to my friend and they banned him for entering from another computer
something i can do?
Hello, I hope you are well, does anyone know information to encrypt a lua code with some kind of program or mode? please help
encrypt?
u can try encrypting and decrypting with the moon 🌜
you can compact the code in a single line if you want to run it too
You can do some research on Lua obfuscation
minifier
pacifier
he wants to encrypt lua so tig doesnt see it
TAT?
oo phatnom still remembers me <3
if i still remember ur old user correctly @open crypt :P
phatnomnomyom
i think i broke it
@merry parcel
@loud notch
@civic burrow
@open crypt bilovid
@inner carbon
Que velocidad 
@open crypt
I saw you online 👀
"Tocutoeltuco#0000 is nu online."
1 minute later: "Tocutoeltuco#0000 is nu offline."
how can I stalk you when you're simply in my friendlist? 😂
🤔 I could just add this functionality to my bot to mass-ping me whenever you connect
now that would be stalking 😂
brb gonna eat uwu
enjoy your meal!
thank u
Eating Bolodefchoco 


😳
@manic chasm

Is there a way to get types/autocomplete in vscode ?
for lua?
for the Transformice api ?
i'll look into it thanks 😄
there was an autocomplete for tfm lua by breno
lemme find it
Extension for Visual Studio Code - Module API support for Visual Studio Code
@austere turret
ooh nice thanks !
hello
Hi
Hi thief
Good
u?
Happy to hear i'm fine too! 
Basketball module is broken, the ball is getting bugged every time we want to play its like unplayable rn if anyone has contacts with the owner of the module can you please tell them
Also bingo
It's an issue tig-side :s
it's also on tig's side
There's been an ongoing issue with batata for the past couple of months. It doesn't really affect the game too much it's just an annoyance. The EN server leaderboard is broken. I thought someone would've fixed it by now but I guess not so I thought I'd finally say something
Can you describe how broken it is?
its broken
It doesn't display any names whatsoever despite many EN members being on the international leaderboard and no matter how much you refresh it it's still blank constantly
pls stop deleting the messages, it's annoying
@wise patio
Well, according to my list it is :P
@wise patio hey , why you stoped adding new maps to that module 😦
does anyone know the script Four in a row?
fire in the hole
connect four?
how do i play chess? pls help
./room #madchess
paamiss
i love you
lmao who tf made this
you can literally move every piece without waiting on ur opponent
yes
The madchess module is more fun with multiple people in the room, cause then everyone gets one piece that can move every 5 seconds
It’s..... not so fun with like... less than 10 people
i like common chess more
I like the chaos of madchess when it has enough people in it 😔
yeah it's fun
unless you want to leave the room later
then all popups are broken :P
I’ve never played 
Actually it doesn't even need the # in the room name
It's just /room madchess
As I'm pretty sure it's not a module
Also the old room picker menu (the one that can be accessed with the command "/x_imj" right now) lists it as "Micelabs madchess", I wonder what the whole Micelabs thing was about
It's a complete separate gamemode, it's just hidden
Like shaman rooms
micelabs was a small project of the tig and some ex admins devs
before module 801
(which had volley star or mouton prototypes)
Mouton used the Module801 API, at least I'm sure of that after checking some things in his code.
hard to read
On Discord’s dark mode maybe, but placed onto the sky, or something, it could be fine!
#Aurora

i love it
Wish we’d known there was gonna module like that coming out soon! We could’ve synced the neon sham set to match 
did you use addImage or is it xml?
add image
you have access?
nah is xml lol
ah
there are new issues
but will fix them before the big update
i will add assets for the stuff
and jack
am i still hosting aurora?
or it's tocu
i don't really remember
let me know if you need to debug shit
new maps looking neat
Still coulda synced the neon set to match for the update 
in record module some players can control other room record cuz they in records crew tribe or something they keep abusing there power by join players room and change maps and lock rooms , why modules crew or mods not doing anything
How do they lock it?
o i did not know that taco hosts fortmice
taco
@civic burrow they do !lock 1
Don't they need to be the room owners to do so?
no
they have there name in the module script
that give them power as the room owner
so they are admin in all rooms?
in records room only
yep
yea
alright, give me a list with their nicknames so that I can check ;)
give me a day or 2
tyt, it shall be solved!
pls bolod
make them stop the abusing
when i try to show my maps to ppl who join my record
they join and change maps
It'll be fixed, dw dw
thx ❤️
Patch being baked rn 🍕🍟🍝🍝
for the record 
so we eat modules?

yes
om nom nom
tribe name be like
Yeah it's an issue with the -
In this case why do you use tribe name instead of ID?
tfm.get.room.playerList[playerName].tribeId
because it needs to be the name
and is the same lol
devlper :stonks:
does anyone has a luascript for vanillamaps 1v1,2v2,... for me?
you mean racing scrpit for vanilla maps
if you wana play lua script to gather stats that wont work
cuz stats doesn’t count in lua
he is doing lua event...
oh
if he want to do vanilla maps without sham there some scritps i have
if with sham i dont have script for that
i used to do event lua games 2
Is there like a list of semi-modules that are currently working right now somewhere? I wanna try them later :)
Yes!
On forums, Thread "Available Module Rooms": https://atelier801.com/topic?f=6&t=892566
You can also check them on Discord by joining a specific server and typing !modules :P
ooh, thank you so much!!
#cbase seems to be missing
Some modules are listed as private
i can ask the owner if they wanna make it pb later :p
#basketball module isnt working correctly, it doesnt work at all it sends us to vanilla rooms.
Developers of all countries and teams and whatever
Exciting news for yall coming soon 🎉

HO
Another Lua update? 👀
pretty much
but very exciting for you all
Won't tell anything else! Should arrive in January or so :P
Guess that's something to look forward to then!
yep
Oh, you're talking about the new JavaScript API? I'm so excited!
can you play music with it?
otherwise is not very usefull api
can you use lua api + js api in one module?
can they also exchange data?
if no them is very useless api
Can I do Transformice with ray tracing using HTML and CSS in /lua?
ew never lol
i'm talking about the ||don't be curious and wait till january 😡 ||!
Patience
the day tig implements this shit i'm legit quitting
I think typescript would make more sense
Just think of all the advantages it brings..
brings nothing, just more bug that we know he'll never fix + bugs for the lua api and LESS attention to it (as if it gets any)
even worse if they kill lua
Duh, the js API will replace it
cute




