#off-topic
1 messages ยท Page 475 of 1
https://github.com/games647/LambdaAttack maybe i'll just update this, and use a plugin to handle authentication for the bots, to keep the server in online mode
I don't think it'd be too hard to add in some simple pathfinding ai
hook it up to dialogflow, so it can converse with users
Would work ig, but i dont think anyone wants a tool like that
Its basically ddos in a nutshell
๐
i guess
it only supports offline clients
that's their problem
shouldn't be cracking the game
most cracked servers have an anti bot plugin anyway
at least I'd hope they do
true
Can agree there
Rn my new one votes on the server (all plugins deal with the votes as they desire)
I wanna add donating too
The whole idea of spoofing isn't to add 100s of random players tho
Thats where most get the idea wrong
Spoof 10-20% of your real count, so you've got real players chatting
--
I'm going to run an experiment when its done, I think
lol
voting is a meme
I found an exploit on minecraftservers.org a while back, for some reason their ip checking doesn't account for ipv6 addresses
My idea is once the spoofer is complete, get a setup from MCM and run 2 identical servers.
One spoofed, another isn't
so, connect to an ipv6 vpn, and you can vote infinitely
everyone gonna go for the spoofed one ofc
they fixed it eventually though
dunno if they saw what I was doing, someone told them, etc
rip
minecraft-server-list.com slots used to go for like 30k
dayum
i believe mcsl slots are monthly tho
Yeah
still, overall more expensive than .org
100000%
iirc
does hypickle buy slots?
it's amazing they've kept their numbers for this long
server list slots
@eternal apex are you any good with fluctuation?
Not sure what you mean
I need to build a system which fluctuates a number
periodically
The idea is to essentially replicate a real server, how it goes up, goes down, may go down again, go up etc
not really, but my recommendation is to not handle the actual timing of that in java
java's timing utils are utter trash, I'm sure there's a better language out there for the task
obviously, you can still handle the actual number changing through a java app, but the java app should be ran from another non-java app that handles when fluctuating happens
someone make sense of this for me
Lol
Oh I see, thank you. I'd prob need to handle it 'in-house', I just need to figure a nice system.
I know it will need to generate a random num Ig
and a chance (%) of it going up or down
Mackenzie, make him verify first
The dude wasted money on UltraPerms lol
Black
black
once you go black you can't got back
hahahaa
I touched that site a long time ago
Lel
I'd love to boot that site offline
o boi
have yous heard of 8chan?
Should I ask that dude if I could get a copy of UltraPerms to see if he mentions he got it from BSMC?
REEE
I wish google would show nice results
not some random crap
Dumb idea, can I make the Creeper Aw-man plugin for fun ๐
time to work on this bad boi
I love this guy's english lol
hahahah
u need that cash money
I'm trying to see if he got shit from BSMC
Lol that grammar tho. Remind me of an English lesson of "sentence scrambler"
ask him to restart his server, and ask him for the startup log once it's fully started
bsmc plugins often show a message on startup saying "cracked by asshole253"

k
Hopefully he isnt reading this chat
Check latest.log for a "Cracked by" on enable
and disable plugin
ez
"The plugin has been disabled due to your support of leaked plugins"
https://github.com/help-chat/Gary/blob/master/src/main/java/me/piggypiglet/gary/core/handlers/chat/HastebinScanner.java gary finds leakers
pls no hate on my code
ik
I have a feeling they know what I'm up to..
just build a plugin that gets their log
thinksmart
Lol
oops
Mc.logs helps
thats not what I wanted
Wait i mean
Suggest taking this convo else where,
- Don't include yourself in piracy talk, including plugin leaks.
@muted fern We're trying to see if that dude is using leaked plugins
@eternal apex @fallow crow so status update, launching the game via steam fails, but if I launch the game using command-line, it seems to work..

I don't really do that shit normally doe
so izza steam issue
Seems to be @eternal apex
the game still requires steam to function, obviously
but that's as simple as running it in the background and launching the game from comamnd-line
tbh idrk what's going on but i'm sure i'll work it out
realistic? https://i.imgur.com/1VzOQmW.png
Are you tryin to make a fake player count thing
so what's the real count in that
Simulating that 300 is the real count
i guess that could look somewhat realistic then
if you really want to make it realistic you'd have the count account for times when there's less americans and shit online
as tbh a 300 player server is prob gonna have more than 40 joining at same time
ahh ye
tho tbh, the way this would work is
it gets the real genuine count
and it adds / removes
from a % boundary
The values from the screenshot https://i.imgur.com/1VzOQmW.png work fine for large counts
How does this look? Should I edit anything to make it easier to read?
but when it comes to small counts, its rly bad
jesus that's hard to read
^
ah f
haha, I did my best okay
no, minecraft spacing is very weird. Some letters take up less space and some take more.
16 = max username count
that way the | is the same
It's hard to calculate them
ahh
Actually that depends more on texturepacks
Some texturepacks use monospaced style fonts
urgh, this makes this table unusable. I want it to look the same on every screen
You're not going to have any luck doing that unless you have a mandatory texturepack
your best option is looking at those other plugins that use all of the rows
Do you know any? I haven't really seen this before.
I think this looks okay. I don't think I'll change it. Thanks for your opinion
Columns I meant
Kinda like this https://www.spigotmc.org/resources/bungeetablistplus.313/
List<String> usernames = Arrays.asList("Siri", "PiggyPiglet", "funnycube", "Frcsty", "LagClear");
for (int i = 0; i < usernames.size(); i++) {
String username = usernames.get(i);
StringBuilder spaces = new StringBuilder();
for (int j = 0; j < 16 - username.toCharArray().length + 3; j++) {
spaces.append(" ");
}
System.out.println("#" + i + " | " + username + spaces.toString() + "|");
}```
welcome
perfectly aligned bars
Charlie
Change your output font to something like Arial or times new Roman then redo it
just don't have lines at the end :leldog:
or just get the name length and subtract it from like 15 to get them all lined for each name
thats what i did
Wait is this in the scoreboard or tablist
if u read
I found this online. java private List<Character> char7 = Arrays.asList('ยฐ', '~', '@'); private List<Character> char5 = Arrays.asList('"', '{', '}', '(', ')', '*', 'f', 'k', '<', '>'); private List<Character> char4 = Arrays.asList('I', 't', ' ', '[', ']', 'โฌ'); private List<Character> char3 = Arrays.asList('l', '`', 'ยณ', '\''); private List<Character> char2 = Arrays.asList(',', '.', '!', 'i', 'ยด', ':', ';', '|');
This is how many space each char takes up.
Jumbo, is this in the scoreboard or tablist
The chat
haha alright. For the plugin I'm recoding I've added a queue. A lot of items can be in the queue and I want users to be able to see who's in the queue etc. It's hard finding a clean way to display some of the info.
Why don't you have it like this
<username>:
- <info1>
- <info2>
<username>: - repeat
Or use scoreboard idk
Wouldn't that take too much space @velvet crescent ?
depends
And other scoreboard plugins would replace it instantly Mitch
it would certainly look organised
I mean if you made it so it has pages, that would be a solution
oof
Or using JSON hover msg things
JSON Derulo
Oh yeah! smart
the dev version of the singer
json would kinda work ye
although if the person didn't know they'd be confused
(not really sure what you're doing so :p)
#1 | Siri (Hover for information)
That's a bit spammy
perhaps fix the spacing a bit and use a circle emote instead of the lines
I think I'll go with the JSON tho
And reformat the number text part on the heading lines
Jumbo show us the json aswell
Doing it right now.
charlie, monitor a server of a similar size and see how much it fluctuates. Copy the pattern, change some variables
json 
Honestly you'd really need like an AI or something to study it on a per server basis @eternal apex
Piggy good idea, tho idk any apis that let me check often
have algorithms for multiple different server sizes
ie, 100, 300, 600, 1000, 2000, etc
minetrack charlie
oh
Well if you wanted it to be completely self contained and be done without forcing the consumer to do the leg work
@echo badge
I could add a config perhaps
I can also show more info like team members etc.
@eternal apex One option would be a config ig
also ye that looks decent
sure, just pre-populate it with data you've already found
cuz for a smaller server, 10-20% add/remove looks better than 0.01
which is more for a larger server
noice
Yep! I'm going with this. Thanks a lot everyone
cough this a skyblock core?
I'll send you the plugin in PM
๐ฎ
The spigot page ...
@echo badge You spelt "woth" wrong
yeye
I think it's an ftop style plugin
since its not a big tooltip, how about adding an empty line at the beginning and at the end?
also a space before and after the click this message
Had to modify minetrack https://i.imgur.com/mQZAyZf.png
to do logging stuff but eh
hell ye https://i.imgur.com/c3jdlqW.png
oof #ecloud-updates is finna get spammed by vk
Idk why my gallery still contains this image xD
Basically it was a printer made by me in my plot
I'm not afraid to show the server name, cause the server is already dead
ty, its not actually core
its my spoofer
But the idea is to mask it so if someone sent their server log
it wouldn't reveal
controversial topic, a spoofer
lol
its powerful tho
I need to figure the best way to hve this, the idea is u specify a min and max %
of the real count to spoof
lemmo ty for vote amirite https://i.imgur.com/7CpCOZ2.png
lel
lol
wdym?
that config is trash, I got a nicer one dw
what do you want me to make it?
%player_name% ?
will probs just add papi support and remove the current <player> translator
add %player% for those who dont want papi
and allow papi support
lol wtf
so one fake player works
but other doesnt
My friend owns the acc Fortnite ๐ฎ
Yeah ๐
Charlie sure
Im actually confuse
%player% you noob
getting an NPE so gotta fix that first
(unlimited formats so that's nice)
ingore me I was thinking of something else
ye so weirdly the account needs to login twoce
ye that's an issue with papi sometimes
ah good
was gonna say
i was looking at my code like wtffffff it broke ๐ฆ
generally was about to be heartbroken
it doesn't happen all the time but sometimes you gotta relog
'-'
we out here chilling
ofc
dont become diz
๐
fair enough
make ur list cuter
only bukkit :?
U using cracked server
or u own the acc siri now
Fair ๐
hahaha
How much purchased it for?
Well im pretty sure I saw it for sale
oh no
lol
fair enough
;3
localhost :?
yee, I could move it to a proper instance
Portforward it to your ip?
dig
Dig
ah
No no
Morning
weewoo
litty
what other plugins u made in the past charlie
I need to fix essentials issue by giving the acc a random IP
My most notable is RankVouchers
hit 40k downloads before I quit spigot
ouch
gotta figure how to bind it an IP
Get a servers ip dump
haahahaha
i mean ill hook u up
๐
1s
lmao
you are faking player accounts or?
ye
interesting
๐
@boreal escarp https://i.imgur.com/QFMeQ3k.gifv
@boreal escarp oops sorry Gabe**
O.o
oof
HI CLIP
I see you using an op join plugin
didn't even bother changing the message smh
Why u spoofing
I'm kinda liking it tbh
cuz spoofing helps ur server lol
Or u just changing an online players name
Cheater
Make them all mine blocks
Set the spoofed to npcs and set pathfinder goals to walk around your spawn
I wanna make them chat
but I need AI
for chatting
I wanna have them welcome new players
Maybe maxims AI thing will work
that he uses for QAPlugin
https://i.imgur.com/ozcny9Q.png randomly generated IPs now
@fallow crow Are you the developer of essentials?
Yeah
:leldog:
o thats a nice plugin charlie
i think im gonna implement my fluctuation
and get setup from MCM
and leave it on there ๐
Someone help me here, my friend (who only has a mum), his mum lives on benifits and getting him 6 laptops each for only 1 game.
It's insane
He already has 2 desktops and 4 other laptops
scummy
Ikr
Thats what I home
I swear.. most everyone who is learning IT in grade 11 are gonna be in big trouble..
Every contents learning in grade 11 are about learning Pascal
oh well
in grade 10 i learned C and in 11 Java, my school was pretty cool
Lol
At grade 8, IT class were already a nightmare
And yes, it's Pascal, but more advanced in grade 11
When we had exam about Pascal in grade 8, unfortunately only me and 1 other student passed
In my class we also had a subject that was called "computer architecture" and i remember that when we got deep into the hardware half of the class didn't pass xD
At the point of time nearly everyone around me asked for help. Well the teacher is smart enough to provide 6 questions, each 1 question
So that he would prevent me to help lel
pft
@woven prairie sorry for @ but does it happen to know how to test a server performances? To see how it will handle 100 players for example
download more ram
fr you memers
what the fock lol
Bot the server
any tool for that gian?
saw this but idk https://github.com/plushmonkey/avalanche
Guys. I need some suggestions about the purpose of playing UNO in minecraft ๐
@jagged pollen /clear ?
can you remove named items from the inventory @jagged pollen ?
โค
๐
the plan was having check and remove command, ended up adding all of that 
still waiting for ess to add that option to their plugin but fuck it
i dont wait for anyone ๐
๐
why would u give up?
This guy "purchased" UltraPerms but doesn't know where the logs are?! wtf
ยฏ_(ใ)_/ยฏ
That's dank 
He thinks I'm asking for luckperms logs or some shit
@boreal escarp https://img.aboodyy.net/19.08.07_18-48.png
The only thing i hate about Itemstack is long lore ๐
nicer? lol it looks ๐ฅ
use this โช instead of -
perhaps "from the player's inventory" @jagged pollen ?
ABoo I like it
@eternal apex
I dont see cracked shit https://pastebin.com/raw/BtwikxjS
Referring to this mesage: https://discordapp.com/channels/164280494874165248/164523548390457355/608594488767545353
its nice @velvet crescent 
It's not bad, it could be nicer โค
aBoo, please try my suggestion
wont do anything now :p
๐
wait wasn't he already using UP ?
idc
Lemme get on laptop baby girl
okay bb
Jesus Charlie
LMAO
(talking bout the domain)
Obviously
or bad
That's og
Good
Smh
xdd
Yeah ๐ญ
lmfao look @ the game im playing according to discord
Add friend lol
lMAO
ITS NOT EVEN EDDITED
i got 200iq
tf
lmao
wanna know how?
wait people with under 1iq will never know
ahhh xd
lol
wew
o
nice
Spoof.gg - The Premium Solution for Minecraft Servers
idk
i need someone good with english / marketing
Buy this now, or I delete your paypal account
hahahahaha
boom thousands of sales
nah
"We have sold over 750 copies as of last week!"
lmao
Still getting an NPE Charlie ,-,
150kb download wtf
I take a pic in front of my dads rarri
Lmao
@fallow crow you know your spoof plugin?
I suggest changing your /spoof command name to something less obvious
why tho
Just make the No Permission message configurable and by default make it look like the default MC "Unknown Command" message ;)
1.14 auto complete
its renamed to Core
And make it so people cant use tab to find the plugin
1.14 auto complete
but the plugin name is called Core
There still has to be a way to make it not show up on Auto Complete
and drew already is unknown cmd
it doesnt matter if it does
only /core will show
and it can be disabled with another plugin
yep
so tbh i see it the server owners fault
if they cant add a blocking plugin
I need to build a license panel too
How would I got about breaking a block instantly, would I give a player a high amount of haste or what?
Break it with anything or specifically a tool
nah not checking for tools or such, just wanna instabreak some blocks with their hand
is there 
well that's naturally tho
ohh
/ __/__ ___ ___ / _/ ___ ____ _
_\ \/ _ \/ _ \/ _ \/ _/ _ / _ `/ _ `/
/___/ .__/\___/\___/_/ (_) \_, /\_, /
/_/ /___//___/ ```
niuce
wait I could use this Charlie
BlockDamageEvent
since I can check when the player starts mining
(wasn't able to find the "premine" one)
ah okay that's what you meant
hm?
I would just go with Spoof
or SpoofCore
it's private right?
dang boi
I broke essentials earlier
legit completely broke the plugin
@manic grail why'd you invite me to this discord?
felt good
valk, report it to barry if he was DM advertising (dm @honest thistle and he will respond)
if the player doesn't have permission to the command, it wont show up in the tab complete list
But if he guessed the command and sent it, it will send him the no permission command
Which would be good if u made it changeable for the server owner to set their unknown message, cuz the unknown message is changeable too
How much for that spoof thingo @fallow crow
@velvet crescent why would he report someone for that?
because it's annoying af? I also recommend reporting people who DM advertise to discord
as it's against their TOS
Dont report to barry such a things LOL
pretty sure the guy said he was invited here
he diud
Yes
not someone was DM advertising to him
okay then I missunderstood his message
If someone random msg me and invite me to a server I just ignore the msg lol, no need for drama
1.1mb upload
nah I usually report to discord if I have time
woah
(mostly due to the fact that if they messaged me they will message tons of others)
I only report the bots to dbl discord.
SpoofCore
so it's a fake players plugin?
That would be affirmative
Players will be able to move/make actions right?
So not like this one
=plugin playersimulator
I use it to test
wew
cool
Yea thats what im talking about
well im just saying that it will be unique unlike that one 
And want u to know about that
Great!
but
Good luck!
does it come with a force op function?
no Frosty tho
Am i allowed to post discord invite links in #606650907597340693 ? Haven't seen anything in the rules related to that but i think the bot removes links that do
That's not allowed.
You can post a link to your website, thread, etc. but not a discord invite link.
lmao never benchmarkj a shit gpu
@naive barn discord links not allowed
p.p
lmao ikr
f
Do people use those service teams
Why do they exist if there's literally a channel for posting freelance offers
Why need freelance finders
it is
solved @arctic raptor
๐ Was just letting you know.
thanks
there's a few reason people may want to go through service teams (even though fluent is not really a service team):
- Secure payments. Many freelancers get false chargebacks, etc; which means they lose money they worked to get. At the same time, i've known trustable freelancers with strong CV screwing over clients. Having a impartial platform mediate the issue for you is extremely useful. Paypal may have a say, but disputes through paypal are hard to do since you need to give all context needed to the paypal employee doing the dispute resolution.
- No more time wasted with clients "wanting" something and then bugging you down with the bill. In the case of fluent for example, clients must write their entire comission details, budget and timeframe BEFORE the project starts. I'm currently working with many enterprise networks and even then i'm having some not properly describe projects and leading to me learn less or give them a price, and then learning i need to do extra work. Sometimes you can say you won't do it, sometimes that's going to lead to less damage than sacrificing time and doing a non-profitable deal
Uhhh
Lol I dont deal with all that chargeback bullshit
The second money hits my paypal I either transfer it into my bank account or to a different account
Gian hey bb
which is fine, but if you get to - in your account you need to put money back into paypal
Even with normal one on one, we write down the commission details, budget, and timeframe before the project starts... Otherwsie, there's nothing to go off, lmao
But, hey. To each their own
Deleting 14,000 files with file zila is the slowest process
rm -rf drew
depends on the clients gian. I've had clients (albeit not the most reputable) asking for a thing, and then adding new features one by one.
If it reaches a point, you can just not do it, but if it's minor - medium; you have to do it
To be fair, a big chunk of my enteprise clients actually do ask for a lot of changes after my project is done. Some of them are fine with paying extra, some are difficult
i think the "service teams" are just for noobs trying t oget into the scene who would have a hard time getting exposure otherwise
that being said it seems everyone just buys from individuals who are already established
Service teams help freelances find work
yeah
thats why people will go work for them
^
lul
Agree about the changing part
Alot of people change their mind about things uve already done
happens
^^^
which means a client can come to me and say
"i won't pay the rest of 50% and lead you to a loss"
I used to do Modeling, i've been scammed by not taking 50% down
happened
Also they get new idea while ure doing the job which requires u to change somethings uve already done if its related
I spent 6 hours modeling something for someone to not get paid
who wants a plugin named "Servername-etc"
usually with a bad idea
most really good ideas are already on the market
let's be honest
what size was the project?
a client once asked me to make a minigame about people jumping over a pit in minecraft
paid 75 EUR for me to do it, and then kept adding new features to it
Yea u can sell it to another client or just upload it to mcm or something
until it started taking a lot of time
But that doesn't always work out
who wants a plugin that makes players jump over a pit
over and over?
go to one ledge, turn back and jump to the other
just that
and some particles
which weren't making it less pointless
Thats what I did
I resold all my for fun models or the ones I got scammed out of
plus another thing
when you resell clients' work (even if you are right), you're trashing your reputation
can't afford that
It happens sometimes Stefatorus, but u got 50%.. better than nothing
yeah, true
True that
but that's what we were talking about
oh I dont resell anything I custom made for people when they commissioned me to make it
Its in the purchase plan when they hire me to make something custom its theirs and nobody elses unless they give it to other people
I just don't like the fact that owners of service teams take a large cut, lmao
My company is looking for designers, we only take 20%
20% is a ton
I haven't dealt with a server team before nor been with one, cant tell why people hate teams
The point of design is just to get a little bit of extra recognition
i for example give new enterprise clients a 30$ coupon. I need to get that money from somewhere
You've literally done no work, used the freelancers portfolio to showcase what "you" offer, and are now taking 20% just because I chose to work with him? lmao, issa no from me
that's going to scare people away Charlie. Even if you are right, if there's a rumor you're giving out client's product, that's super unprofessional
i'd rather lose 50%, even though that doens't really happen now since i take 100% upfront
Except in my case I am a designer myself..
so you can't say I've done no goddamn work
Wow 100% upfront
I've spent countless hours working with people and making things for their resource packs
Do clients accept that
I'm not saying it like that
@woven prairie it depends on the case. In my case, i give coupons to server owners paid from my part (upwards of 60% ticket sum), spend countless hours trying to get clients, asking most my own clients to go through the platform when working with me to get more people on, and also spend time working on the bot, website, etc
let's remember companies make around 50% of the cut of a employee
Most of my model work was made for a personal project or for fun
I enjoyed making images come to life
โบ CityLife Website: https://mccitylife.enjin.com/ โบ CityLife IP: mc-citylife.com โบ CityLife Discord: https://discord.gg/UKsrgRs -----------------------------...
they pay you 20$ a hour to resolve client's incidents, they sell your time for 100$ a hour
that's 80%
IBM iirc
it is different slightly, they give you safety
it's a fixed amount of money you earn; but they still take a big chunk off
way larger than 30%, which is what i take
well ure talking about irl job (full time job mostly) which gives u more that $1000 monthly and not 100
I only take 20 and apprenetly thats large
That's a flex, lmao
To earn 2k
fluent gets less than 5% of what i earn
tomorrow i've planned to work on my public resources lukas
ah
fluent just started a couple of weeks ago, it's not yet getting money in
i mean technically it is, but it's from my own clients i've redirected to work through it
let's remember songoda pays her devs 75 EUR a week (iirc)
not like i agree with that, but that's the truth
juck
there are many people that don't know how to self-advertise and run a business
Well tbh, it is the truth
in the capitalist world, it's about what talent you get and how much money you manage to juice off their naiveness
let's remember we don't call our boss at work a partner
it's a boss
The person who is doing the actual job always take the amount after their 'company' take a cut
thing is for companies that cut is around 70-80%
what
Yea true
for me it's 30%
like wtf
it's normal Drew
I just changed mine to 10%
what job is it?
and they only take 10%
Like I said any design sales is just to help the designer get recognition
how big of a company is it?
as i said, ive never worked in a service team and im not thinking to. But its not same as a irl job
brought in $1500 USD so far
