#ot2-the-original-pubsta
652 messages ยท Page 36 of 1
so
hello = "thing"
print("{0}".format(hello))
becomes
hello = "thing"
print(f"{hello}")
@rare kernel is pumping out answers like a beast
fr
in the code?? orr??
you can use CTRL+H to search for all .format
and the replace it.
(I'm not responsible for your code breaking)
k
so where are you from panda
okk
north
bruuhhh verlaten gebied.
!mute 812851566380974122 please stop spamming Im afk!
:incoming_envelope: :ok_hand: applied mute to @jovial island until 2021-04-06 20:47 (59 minutes and 59 seconds).
Thanks!
wat studeer je dan
Yes ๐
no u
'overijssel'
bro
๐
ahh
What about you
mechatronics
tf
like if you can't decide so you would just choose that
eletrical engineering
LOl
I mean
elon musk
is a pro
in multiple disciplines
and he says the best thing is to learn multiple disciplines and try to link them to each other or sum ;)
and that mf a billionaire sooo
still a billionaire ok
anyways I needed either this or mechanical engineering alone
His behavior is just so commercial. It's like he is being 'so cool' for free ads
to study what I eventually wanna study
and this seemed more fun to me
but eventually wanna study biomedical engineering
What do you want to study eventually?
specializing in
Took awhile to get to there..
To be honest that is not my kind of koek
I mean it's an acquired taste ig
I get you haha.
but I think it's litt to like
combine biology and physics
and theyre both my fav subjects
Prob need a university for that. What are you in now? hbo?
what year?
so you're like 20 lol
sheepy == 20?
no your age? Or is it fr 20? xD
just turned 18
mbo year 2
i am going to tough, not about being good but the dutch like their titles. So if i got a mbo finished i aint gonna make more money than someone who finished a study from hbo.
depends
my brother
didnt finish
his mbo IT study
he makes a pretty decent salary
then again
he is
pretty damn good
at what he does
'decent' and HBO would be 'EXCELLENT'
dude mbo IT is as diffecult as some HBO studies lmaoo
coders = lazy people
What about you ! a? You doing/finished a study?
ethical?
yh
I did already 5 hours ago
he's been an unethical hacker now he's
lol
No like a college ๐
Yeah awesome stuff
u have?
Yo can he help me? lol im stuck on one page
yeah he makes
the trainings there
he probably could
he also found the hype bug in python
that was very trending beginning of march
I'm not in college xd
this one
not tryna flex but i got the Security Specialist certificate
LOL
finished it?
I didnt reach college yet
you 15?
But does he know van zant bank challange? I can't beat itttt, smoll brain
lol
Thanks!
My man already making discord bots. I just made websites back then.
legend
een challange datemyports heeft me 2 dagen van mn leven gekost
!rule 4
4. This is an English-speaking server, so please speak English to the best of your ability.
anyways
let me flex too a bit
once my bot is done
i can get it 240k members in a day
๐คช
I was thinking in my own language when reading the screenshot ๐
I really tried 'to the best of your my ability.' to not type in dutch
guess you failed ๐
def
prob won't get it tough but sure
Though*
ok
Does he want to?
Yeah sure
I am genuinely ready to smash a window after writing this abomination
possibly a computer too ๐ค
Hm, what were you coding?
Too small to read lmao
Python 3.10 pattern matching should help clean it up
Yes, that's super tiny.
Seems to have something to do with opcodes? Programming language? I dunno
But yeah, it's not stable yet
Yeah
here's the pastebin if you really want to become a corrupted demon or something https://pastebin.com/HfuSeNBD
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.
it's c++
and yeah - I'm trying to simulate a CPU on an arduino
if you don't value your sanity, go ahead
pattern matching seems to be a rust thing
i just feel python just copies the good stuff from other languages
not that its a bad strat or anything
ha
@grim seal so my vaccine got scheduled today
This tuesday 3 1/2 hour drive away at 10 am
ffs
Lol
I mean, loads of other langs have it
And python getting it is amazing
its like, i wish it wasn't so far away but w/e
Which one are you doing
guys my bed feels abused
I'm not prepared for summer
We don't have AC and live in the desert
yes and just as hot
actually it's somehow hotter right now than it was earlier this evening
my whole body is slightly moist and I hate it
This image is slightly different but I can't tell what makes it different
looks just about the same
is it? the first image looked darker
first image still looks somewhat darker
but it's like... brighter in some parts
like only the edges are darker
meanwhile, the right one is darker overall
weather getting worse?
can i ask ansible question here ?
Akarys is a great emoji for some reason
I'll make sure to let him know you said that
@barren marsh Have you made a bot yourself?
Not really tbh
Never finished one
Not got the time
I know how to ofc just don't have the free time to do it
You got much knowledge about it so you prob set your own bar too high haha
Lmao
I mean I always start my discord bots wanting it to be like the best possible code
And then I find limitations in the library and go complain to the dpy discord and get banned
lol
And then you saw something else that was better and you rework your whole bot....
Relatable.
Yep lol
Right now i got one fixed goal music.
One of the big annoyances was something to do with command groups (can't quite remember what exactly)
I refrain from using those to be honest.
I find them overrated.
rule 5 go brrr
@cogs.command()
async def foo(...):
try:
...
except:
raise ...
@cogs.command()
async def bar(...):
try:
...
except:
raise ...
@cogs.command()
async def spam(...):
try:
...
except:
raise ...โ
```vs```py
@one.error
@two.error
@three.error
async def my_error(ctx, error):
raise MyCustomException(...)โ
why not just
async def my_error(ctx, error):
raise MyCustomException(...)โ
one.error(my_error)
two.error(my_error)
three.error(my_error)
Hehehe, true true, to be fair i don't help anyone doing it and as long as groovy also is up i will keep mine up. If groovy gets banned i will take it down.
Because that's ugly lol
But yea probably still nicer
way less ugly than seperate handlers
What where you trying to make that would cause this many errors.
could even wrap the dpy error decorator in your own and make it work with multiple errors
It was cogs management I think
There's a bug in the cog errors so I overrode them and did myself
Basically if you try to unload a cog that's not loaded it'll always give ExtensionNotLoaded or something even if it's invalid and so should be ExtensionNotFound (or something like that)
You got an event for that tough -> discord.ext.commands.Cog.cog_command_error
def wrap_multiple(err_dec):
def inner(f):
err_dec(f)
return f
return inner
@wrap_multiple(one.error)
@wrap_multiple(two.error)
@wrap_multiple(three.error)
async def my_error(ctx, error):
raise MyCustomException(...)โ
There was other stuff in the cog too and there isn't an equivalent of that for command groups
Fairs lol
Nice code.
Shame it's not native though
Time to make your own discord.py ig
Lmao
Again though not got the time xD
tbh theres a few things that i monkey patch into discord.py by default
like the ability to have multiple pre/post command hooks
What do you guys think about ytdl?
!ytdl
Per PyDis' Rule 5, we are unable to assist with questions related to youtube-dl, commonly used by Discord bots to stream audio, as its use violates YouTube's Terms of Service.
For reference, this usage is covered by the following clauses in YouTube's TOS, as of 2019-07-22:
The following restrictions apply to your use of the Service. You are not allowed to:
1. access, reproduce, download, distribute, transmit, broadcast, display, sell, license, alter, modify or otherwise use any part of the Service or any Content except: (a) as specifically permitted by the Service; (b) with prior written permission from YouTube and, if applicable, the respective rights holders; or (c) as permitted by applicable law;
3. access the Service using any automated means (such as robots, botnets or scrapers) except: (a) in the case of public search engines, in accordance with YouTubeโs robots.txt file; (b) with YouTubeโs prior written permission; or (c) as permitted by applicable law;
9. use the Service to view or listen to Content other than for personal, non-commercial use (for example, you may not publicly screen videos or stream music from the Service)
I know that but i was asking about your opinion.
Dang, must be bad if it has its own command
honestly its 99% the #discord-bots channel
i don't really like breaking ToSs if I can avoid it
might acshually ask joe for stats on that at some point,
as for my personal opinion: ytdl is a tool, one that is often abused. its great for archival purposes.
hmm
Noice
Although a fair portion of that is gonna be criticising Lucas lol
Maby built in system to send message when it detects ytdl in a message or the package name.
I see prob 1 person a day asking about ytdl
6 people yelling at someone for breaking rule 5 is far more effective than an automated system, even if not a good thing.
lol
๐
Such a shame though i think music bots are great.
hmm but you can literally play music with things which are way greater
ehhh, why bother with inferior quality if you could also have superior quality?
yea, what vinam said
True but if you wanna listen together and that one friend is too broke to afford spotify
then like, start a watchtogether?
also spotify audio quality is sometimes worse than youtube lol
the superiour way is to buy your music properly, as lossless files.
My friends are difficult people okay
tbh i dont understand listening songs together either, i mainly listen to songs while doing other work
CD is like 1400KBPS
cd quality is 44.1 KHz/16 bit
i have this:
yep
because its uncompressed
flac is a bit better, still lossless but compressed a bit
my. god. 200 mb file for 04:38 of audio lol
to be fair that file is a special case
most of my stuff is along these lines
what's wrong with mp3s smh
quality
what
uh
xD
thats now how it works
no it works for me.
This triggered so many people ๐
something about that sounds very wrong
Mp3 is really compressed. I have a friend who hears the difference between flac and mp3 stuff. While I don't really
i tried it sometime ago and thats what happened for me
oh yes. I have a video to test that
yeah, me neither
it's all the same
my guess is mp3 will just read the audio and ignore all the video at the end
it was a beeeepp noise for the whole file
did you know you could just put the bytes of a zip file after a png image and it will work
vlc just detects that its actually a mp4
windows media player crashes
and most zip software can recover the zip as well
this made me smile
I think so as well. But it probably depends on how the program reads it.
Checking headers >>> checking extension
kinda expected ๐คฃ
i am one of those people. its 80% equipment
Who uses groove?
i wonder how airsonic would cope
I feel like they improved groove recently
I'll come back when it works for me.
lmao
a weird error message too.
the superiour way to any local player is hosting your own web player (and then removing its capabilities for downsampling lmao)
Well, this is awkward
I just use spotify since we have a family plan
I renamed middle_aged_dads_taking_selfies.mp4 to middle_aged_dads_taking_selfies.mp3 and yet it still played the video
Same, offline is the nice part
airsonic server
any subsonic client
basically selfhosted spotify with lossless quality
checkmate
I should probably archive the files at some point, spotify isn't eternal.
You think i got too much time on my hands?
also I barely noticed I paused on the exact point the cat where my profile picture comes was screenshotted
i mean, to each their own
but i will continue to enjoy that i can steam a 6000kbps file
I am the exact opposite of an audiophile, so I do not care much
wierd flex but ok
audiophobic
Exactly
most audio philes are around 2000kbps this guy is on a new level.
I think you meant files
?
I must be terribly misunderstanding, I guess D:
kbps it the bitrate of the file
to be fair that file is a special case
its something called oscilloscope music, where the soundwaves draw a image on a xy oscilloscope. For that there can be absolutely no compression.
yes but you said philes
pun
How does it sound better if i may ask
What kind of speakers do you pair that with?
there is audiophile and audio file
the former is a person that likes high quality audio - phile is the postfix for "someone who likes that"
the latter is a file that contains audio
remember when you stored code in audio cassettes
as i explained, the absurdly high quality of that is required because of the fact its music that draws a image on a xy oscilloscope, not because of the listening quality
everything above 600kbps is fine for me quality wise
Thanks for the explanation 
funnily enough, i can actually share that since the artist makes the files avaliable for free
https://airsonic.yadamiel.com/ext/share/LGjkp?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJhbm9ueW1vdXMiLCJwYXRoIjoiL2V4dC9zaGFyZS9MR2prcCIsImlzcyI6ImFpcnNvbmljIiwiZXhwIjoxNjQ5MzQ3ODkxfQ.Ojpn3SQhfgfVe26FOjo-0h-V6BcZVrcfe17ETof5-SM
look for a track called shade, that is the 6000kbps one
damn
iq151 loaded it line by line, so you had to pause after longer lines to give the CPU time to decode the line
wild
mega
I don't understand.
Why there is 1
hm
Genius, ty
np
how 
No, why x^2/(x^2+6), tend to 1
exactly hm
But infinity/infinity is undefined
what if its 4 5 or smth
x tends to infinity
eh?
ye olde limites
well
take the numerator x^2 to the denominator
you get
1/(1+6/x^2)
= 1/(1+0)
=1/1
=1
bleargh we need latex command on @rustic harbor
ikr
what will be undefined?
u got me there
bruh lol
what do you mean take it to the denominator though
wont that change the value
ikr
divide numerator and denominator by x^2
ooh
ah yes calculus
so 6/x^2, etc, tend to 0
fun times
calculus pretty pog
just l'hopital twice
Formal derivatives, the epsilon-delta definition, and why L'Hรดpital's rule works.
Enjoy these videos? Consider sharing one or two.
Supported by viewers: http://3b1b.co/eoc7-thanks
Home page: https://www.3blue1brown.com
3blue1brown is a channel about animating math, in all senses of the word animate. And you know the drill ...
I like this
smh
3blue1brown does his stuff pretty well
l'hopital should be the last resort
shouldnt it be 0.something?
what's the point of the derivative formula ๐ฅด
Perfect
l'hopital everything
like they teach you it for one chapter in most textbooks
actualy 0.0_
unless its very obvious
no need for that anymore hahahahah
oh so you just assume it as 0
:/
ah
Maybe donโt write whatever youโre about to write, if you were gonna write something
70 chocolate balls, for my 17th birthday, from a friend of mine
my friends don't do secret santa or anything
That was really funny
Ah
That sounds good.
Yeah. He was gonna get 170 (since I was 17), but they didnโt have that many. So he got 70 instead
lol
Sounds like a nice friend.
The strangest and most unexpected gift every, but also really funny
No way I could eat that many loll
I usually donโt eat a lot of sweets and candy either
But then when I was in boarding school, I managed to get it under control, even though my father would always try to give me more sweets to take with me XD
Hahaha
My father promised a new phone if I get 95% average on my 10th grade annual exams ๐ฅด.
its on 2022 lmao.
also 95% !!!
too high init?
yeah i dont eat chocs or cookies nomore
Best gift was a cat-eared jacked for my 18th bd. I chose the gift myself but we spent the evening very nicely and all
What does 95% mean? We just have AโF grades here
A+ heh
We donโt have that either lol
95% is A+ or A1
90 - 100 percent marks = A1 (A+)
80 - 90 = A2 (A-)
and so on.
In my uni we had score % translated to grade. So 90%+ would be the best grade (5), 80%+ next one (4.5)... And 50%+ to even pass (3, failing is 2).
Ah, okay. We just have pure A, B, C, D, E and F here
in JEE even percentages don't say much considering that thousands score the same
percentile is used more
its about the average score of all other students right? even if all students got F.. and you get a D... its A
amirite
depending on how other students score?
yeah that's the idea
I think this is called "grading in the curve"? Or sth like that
The top person is counted as 100% from which grades are calculated
oh I see.
theres always a couple of people who get 100/100... so umm??
How to break the curve: everyone needs to score 0. XD
ahahha
Make the test hard enough
yeah
That doesnโt sound like a system that would promote collaboration
flawed imo.
At my uni teachers considered tests to be well-made if around half people failed and had to retake it
We used to have a quota for grades here, to follow certain set distributions, but we got rid of that system
ves, are you in college or school?
High school. Iโm 17; 18 this summer
Suggest more topics here!
bruh.
there is no person to my right
๐ค
What do you like about that person?
But they were more behind me than on my either side...
The person is new in the company. Idk what I like about them but they have this delicate aura about them (quite petite, soft voice, etc) so I want to protect them. Like, I can't control thinking about it in this way. It's weird
Is that a crush? ๐ค
That sounds cute
probably
My crushes usually are based on banter, it's weird
Doesnโt have to be a crush. You can just like people in general
I'm panromantic, i get a lot of crushes XD
Hahaha, then I would bet itโs a crush
middle schools kids think differently.
I'm 25 XD
yo
oh god would i like to revert to first grade
loll.
send holp
I actually calculated what "straight across earth" would be for my position and it's off the coast of NZ, at almost the same distance from NZ that NZ is from AU
lol
and haha you cant really look at people of the other gender too without getting noticed by peers. Daaaamn.
I was once exactly 12h apart from my partner - they were in NZ XD
oh.
Ah, thatโs fun. I also did that a while back, and it to either New Zealand or Australia. Canโt remember which one
Or a vest ;)
I bet that the opposite side of my country is the US.
YOOO
i'd probably end up in water
antipodes being balanced, etc etc
your sense of humor is ๐ฏ
lol
You're Swedish, right? You would land south of NZ. I'm Polish, so it's easy XD
vester is Swedish? cool
i wonder where i would go if i dug a hole like that
hmm.
don't worry, if you go back to your native land.. we can figure it out together ๐
yes
ys
zeeshanok#3813
India and US are both in the northern hemisphere
So
no
you too would probably end up in water
oh.
yes
*ys
but I'm very close to the equator tho. closer than the rest of India anyways
bruh.
Get coords on Google maps, switch N/S and do 180-(your E/W)[switched letter]
take a skewer and poke a hole in a globe. EZ
.bm 829357578763894856 after eating lunch ๐ฅด
u are around 1000km away from the equator @lucid osprey
wtff
I said closer that the rest of India.
wait its 8 degree north.
bryg i will reach adamstown
Just as I said
naah I'm from the northest place from the southest district. agreed.
But manual calculations are more nerdy~
it's all water
zee you live in UAE now right?
yes
hmm.
yes
.topic
imitation game is good
@dusky cliff you were dead right when you said the opposite side was water.
really kewl.
I'm near the coast of Mexico
wait thats not Mexico
oh wait it is Mexico.
there's very little land which is antipodal to land
Mhm.
yes
Aah, cool! Yes, Iโm Swedish :)
I'm wondering if I'll survive. I just wrote my mentor that the script cannot work as designed because the tool is messed up and we need to rethink how to do it...
Interstellar is great
Please no caps :c
MATRIX IS GR8
lol sorry............ i tink
fax doe
interstellar is big brain
i still cant understand the blackhole scene
the last part?
ye
ok
AQW
I hate this topic for many reasons.
.topic
Ugh...
Suggest more topics here!
bruh.
bruh
Whoever the head of Google is.
Sundar Pitchai?
Mandate a mass deletion via a fake court order of all backups and live code. Nuke everything
Or just become a not evil company not sure which
lol.
@gusty rivet ah i only checked for numbers between 999 and 10000
problem is you cant len an int
len(str(my_number))
?
Thats cheating
what are you trying to do
find the number of digits?
just take log base 10
and add 1
Oh god, not Neper
I don't like this guy
Well I guess he made the base e logarithmic, not base 10
Napier?
.topic
not heard of it
What is it?
its my brothers hint
idk what it is exactly but
i googled it
it's smth like
forging
a website's
hyperlink
and then
let an actual user
use the link
so it logs in
for you
@spiral snow what would you order if you weren't worried about how you were perceived?
Very intimate channel name
ctx?
I must add
a conversation in pygen
im here
that is gonna look so weird in 3 minutes
the answer i have been waiting for pls
@upbeat sandal if pinging this channel was a pickup line of sorts, then it was smooth af
lol
that was not intended, no
Shame
@spiral snow I had asked what you would order
a latte ,two mcguffins and a bag of chips
idk what a mcguffin is but "a latte" is fine as long as you specify what size, if there are sizes.
eyy
oh no i dont know starbucks sizes
Mine too D:
ill just immediatly opt out with grande
Time to code a new one
you can just say small/medium/large
medium ):
that's fine
okay uh
remind me not to commit
i just changed my bot source to my duck source
but like
lul, that otn name
selfduck is a verb ๐
no dirty smh
I suppose ducking yourself is pretty dirty...
but alas, what don't people do to get into #duck-pond

Yes.
No.
Yes
I...
when i right click firefox lefts click too, like if i am right clicking on a link it opens it in new tab
is this a client side bug or did firefox add this feature
use chrome
or brave
or edge
or operagx
or browser
edge best
ikr
how do i talk to a game server ?
with ur mouth
Bugs and features are often the same things
I'm trying to talk to a game server like factorio
how can I ?
i'm trying to move the player
!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.
It's safe to assume any game like that has antibotting rules ๐คท
"Game server like factorio" means you want some general solution, so even if it's legal in one game, it may be used to the ones where it's prohibited. And generally things that allow such communication have public api for that reason. This does not. So it's at least gray area
i don't understand you breh, i just want to control the player that's all
And that's against ToS of most games. So against rules of this server as well

!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.
Read this again
Not "bro"
lol
Doesn't mean we will help you with it
This server also doesn't help with ethical hacking/pentesting. Even though it's legal
you don't, that doesn't mean others not want to
no it actually does
i know i won't get help for that
no, it's against the server rules
ikr
learning how to communicate between a server and a client is ilegal ??
yesterday the talk about general ethical hacking using python was shut down in general
factorio allowed us to do that
or communicate with a server that u can legally communicate with
factorio
you started with "game server like factorio" meaning you wanted something more general than just factorio
no
as I already said here
just factorio
as I said, unless they have a special api, any solution for factorio can be used to other stuff where it's against tos
so we cannot help you
but we cant be sure about that
i think you guys misunderstand everything
they have
ig
someone did in the twitch
so if they have public api, there's documentation on it
i don't know
that's wiki. I want api
and here is the api
it's written in lua
and here is the RCON
also why did you want the api ?
to help you understand the docs
because that's how you communicate with the server legally
wut
waht is a cake
what is factorio?
yes. api is a set of functions that the devs left there for people to use
lua 
game
just ddos it
hmm
!rule 5
oh you guys were hidden there??
5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.
talking abt a game is breaking rules?
im not providing help
talking about ddos is
scroll up
about botting the game. that's why I wanted api docs
ah
https://lua-api.factorio.com/latest/LuaControl.html this seems to control the character/player
Factorio modding ๐
I never played factorio nor did anything in lua. But I just like APIs and how they interact
@tribal tinsel don't you read the docs /
i don't know anything about api
Lmao
luaโข๏ธ
You should play factorio
i just saw the trailer...
but if you want to code something, you gotta know something about it.
as I said, api is a set of functions to get a state of something or change the state. you need to play with it in the code (probably with some tutorials because I don't know lua nor factorio - but I can help you find functions that seem to do a thing you want)
(\s)
o/
o7
I have enough weird APIs at work, thank you...
seriously, I had api which calls itself "rest-like not restful" and has "?WHERE=" as parameter? and recently JSONRPC with shit documentation hidden behind a registration which requires you to provide two references from people working for the manufacturer...
but i don't find any movement
look
forexample this
character_running_speed
it's a function
That's beyond security by obscurity
but where can i run it
Security by lack of documentation
can you not interrupt
@keen burrow
Well, I was answering Nicky 
teleport says it moves, but it's kinda weird
"Note: You can also pass 1 or 2 numbers as the parameters and they will be used as relative teleport coordinates 'teleport(0, 1)' to move the entity 1 tile positive y. 'teleport(4)' to move the entity 4 tiles to the positive x."
?
do you play factorio ?
Yeah I do
https://www.reddit.com/r/factorio/comments/b4i1yx/controlling_the_player_through_a_mod/
"The game doesn't have any built in API for building and moving, You will have to build it from constituent methods.
For instance building is just creating an entity and removing an item.
Moving is done by seting the walking state each tick: https://lua-api.factorio.com/latest/LuaControl.html#LuaControl.walking_state
Etc."
https://wiki.factorio.com/Tutorial:Modding_tutorial/Gangsir how to mod factorio tutorial?
WoW mods are also in Lua
garry's mod uses lua too iirc
heresy
@keen burrow you guys are lua?
and Crayta (game for writing games) uses Lua
I don't like Lua
game for writing games 
I haven't used it ever, although I was in eeeeearly alpha (pre-alpha) of Crayta, even before it had lua XD
what's modding 
amirite
Lua for making a full game would suck really bad
oh
It is fine as a mod API though
feel bad for roblox devs then
why do you think so?
afaik roblox is like that as well
roblox devs are technically modding tho
well... fair
well technically, but they do make full fledged games no
WHAT"S MODDING


how bad is it
