#plugins-dev-chat

1 messages · Page 119 of 1

upper vapor
#

❌ inclusivity
✅ everyone is all the same

celest thorn
#

ehm i don't wanna give you the bad news

tepid sluice
#

Will they call me news trial

upper vapor
restive turret
#

its already worst

hearty shard
celest thorn
#

i have 2 wolfs

hearty shard
celest thorn
#

(how rome was founded)

upper vapor
#

and they awoo at midnight

hearty shard
#

ur parents are wolves?

upper vapor
#

and you can't sleep

restive turret
celest thorn
upper vapor
upper vapor
#

reminds me of julio & romea

hearty shard
#

axe have u used anything other than SS yet

#

in secretapi

restive turret
#

i dont even use secretapi

upper vapor
celest thorn
restive turret
#

🍁

hearty shard
restive turret
upper vapor
#

because they're unknown types

hearty shard
#

oh

#

you mean for

celest thorn
#

amazing

unique crane
#

Another day of thanking god

hearty shard
#

effect type

upper vapor
#

i just had a big switch on all basegame types

hearty shard
celest thorn
upper vapor
#

and you added new ones

celest thorn
#

AHAHHAHAHAHA

hearty shard
celest thorn
#

yo david if i apply?

hearty shard
upper vapor
hearty shard
#

instantly

upper vapor
#

and you'll be applied

celest thorn
#

lol

upper vapor
#

*you'll have applied

#

mb

#

englishn't

hearty shard
#

youll be applied

#

applied to what

celest thorn
restive turret
#

what are you applying?

celest thorn
hearty shard
celest thorn
#

i need to think about it

hearty shard
#

i dont think zero gets it

#

at all

celest thorn
#

just need to open my schedule even more so less sleep time

restive turret
#

didnt you said implementing events take less time?

#

lel

celest thorn
#

i already sleep like 2 hours

upper vapor
#

you should stop worshipping maro and move to north wood church

restive turret
celest thorn
upper vapor
#

and you should probably start sleeping

restive turret
#

how can u live like htat

celest thorn
#

i sleep sometimes when i get schedule all cleaned

hearty shard
restive turret
#

i sleep 6 hour and still isnt enough

celest thorn
#

this days i've been sleeping

upper vapor
#

she's a ckabjer

celest thorn
upper vapor
#

clanker

#

tin can

celest thorn
#

but there are days where i can sleep lol

#

because i have nothing

#

to do

restive turret
#

in weekend

celest thorn
restive turret
#

in holidays

upper vapor
#

ahh

hearty shard
#

LOL

celest thorn
hearty shard
#

last christmas

#

it was christmas

#

and then after that

#

it wasnt christmas

celest thorn
#

ngl last christmas sucked so

hearty shard
#

such news

restive turret
#

at newsof??

tepid sluice
#

What's up

restive turret
#

the sky

#

anyway, not fully but like 80% maybe of events I wanna see:
#plugins-dev-chat message
I still missing the Firearm related stuff

restive turret
#

i stopped cus i got hungry

#

but yes

#

re-check again even if you saw it prev

celest thorn
#

Oh my god

#

Bro cooked

upper vapor
#

not you

#

but

#

as the lyrics should go

hearty shard
#

fym u gave me money

#

holy liar

#

banned

#

demoted

upper vapor
#

but the very next day

hearty shard
#

killed

#

executed

upper vapor
#

you threw it away

#

this year
to save me from tears
i'll spend it on absolutely nothing cuz i don't wanna buy anything for christmas really

restive turret
# celest thorn Bro cooked

I would have added some for map generation but probably wouldn't be the same for the client and server so

upper vapor
#

IsAllowed = trueish

restive turret
#

IsAllowed = maybe

random scaffold
#

with .isAllowed

celest thorn
magic gate
lethal cradle
#

I’m trying to register a single command with multiple command handlers, but only the first one actually gets registered. For example, with the following code:

[CommandHandler(typeof(RemoteAdminCommandHandler))]
[CommandHandler(typeof(GameConsoleCommandHandler))]
public class TestCommand : ICommand
{
}

Only the RemoteAdminCommandHandler version of the command is registered. If I swap the attributes, then only the GameConsoleCommandHandler one works.

Is there a way to make the same command class register with both handlers at once, or am I required to create separate classes for each handler?

restive turret
#

Works on my machine

celest thorn
#

GameConsole btw is for the LA

#

not for the Client Console

lethal cradle
celest thorn
#

sometimes people get mistaken

celest thorn
#

What are you doing if i can ask?

#

like how are you running the command?

#

can you do help in LA

#

and does it show off?

lethal cradle
celest thorn
#

idk the name of the command so

lethal cradle
#

but there works

lethal cradle
lethal cradle
celest thorn
#

Thats so strange never happend to me

lethal cradle
#

bruh

celest thorn
#

can you show the entire class?

#

and not just the "dummy"

lethal cradle
#

using System;
using System.Linq;
using System.Text;
using CommandSystem;
using LabApi.Features.Permissions;

namespace GroupManager.Commands
{
    [CommandHandler(typeof(RemoteAdminCommandHandler))]
    [CommandHandler(typeof(GameConsoleCommandHandler))]
    public class GroupManagerCommand : ParentCommand
    {
        public override string Command { get; } = "groupmanager";
        public override string[] Aliases { get; } = { "gm", "group" };
        public override string Description { get; } = "Manages player groups.";

        public override void LoadGeneratedCommands() {}

        protected override bool ExecuteParent(ArraySegment<string> arguments, ICommandSender sender, out string response)
        {
            if (arguments.Count > 0)
            {
                ICommand command = AllCommands.FirstOrDefault(c => c.Command.Equals("info"));
                if (command != null)
                {
                    return command.Execute(arguments, sender, out response);
                }
            }
            
            StringBuilder sb = new StringBuilder("<color=red>Invalid subcommand. Usage:</color>\n<color=white>---------</color>\n");
            foreach (ICommand command in AllCommands)
            {
                if (!sender.HasPermissions($"{GroupManager.PluginInstance.Name.ToLower()}.{Command.ToLower()}"))
                    continue;
                
                sb.Append($"{command.Description}\n<color=white>---------</color>\n");
            }
            response = sb.ToString();
            return false;
        }
    }
}
upper vapor
#

you have to add the commands in loadgeneratedcommands

#

(i think)

#

i might be dumb

celest thorn
#

let me check

lethal cradle
upper vapor
#

uh

#

wait so what's the issue?

hearty shard
lethal cradle
#

I made it in my PlayerMetrics plugin

lethal cradle
upper vapor
#

HUH

hearty shard
#

someone else like a month ago complained about it too

lethal cradle
celest thorn
#

probably a nw error?

hearty shard
#

idk i dont use the auto registering of commands

celest thorn
#

because ICommand works fine

#

with both

lethal cradle
#

bruh

hearty shard
#
public static IEnumerable<ICommand> RegisterCommands(Type type, string logName = "")
    {
        // We check if the type implements the ICommand interface.
        if (!typeof(ICommand).IsAssignableFrom(type))
            yield break;

        // We iterate through all custom attributes of the type.
        foreach (CustomAttributeData attributeData in type.GetCustomAttributesData())
        {
            // If the attribute type is not a CommandHandlerAttribute, we continue.
            if (attributeData.AttributeType != typeof(CommandHandlerAttribute))
                continue;

            // We retrieve the command handler type from the attribute data.
            Type commandHandlerType = (Type)attributeData.ConstructorArguments[0].Value;

            // We check if the parent command has already been registered.
            if (!CommandHandlers.ContainsKey(commandHandlerType) && typeof(ParentCommand).IsAssignableFrom(commandHandlerType))
            {
                // If the parent command has not been registered, we register the parent command.
                foreach (ICommand parent in RegisterCommands(commandHandlerType))
                {
                    // And we add the parent command to the list of registered commands.
                    yield return parent;
                }
            }

            // And we finally register the command.
            if (!TryRegisterCommand(type, commandHandlerType, out ICommand? command, logName))
                continue;

            // We add the command to the list of registered commands.
            yield return command;
        }
    }
upper vapor
#

comment hell

hearty shard
#

jesus moment

upper vapor
#

// we add the plugin to the plugins list
Plugins.Add(plugin)

#

ahh

hearty shard
#

jesus was in his "comment all" arc

dark storm
#

how can I set noclip to a player in code?

oblique condor
celest thorn
celest thorn
#

how are you guys doin?

hollow remnant
#

hi guys! how to change item limits in code?

hollow remnant
celest thorn
hollow remnant
restive turret
hollow remnant
static meteor
hollow remnant
celest thorn
static meteor
#

And testing VS Studio 2026

celest thorn
hollow remnant
celest thorn
#

and you need to do ServerConfigSynchronizer.Singleton.RefreshCategoryLimits or RefreshAmmoLimits

celest thorn
restive turret
#

ServerConfigSynchronizer.Instance.CategoryLimits.Set((int)ItemCategory.Grenade, 8)

celest thorn
#

its static

restive turret
#

ye

#

i just seen it now

celest thorn
#

lol

#

i gave the solution 20 years ago

#

Oh bro

#

before you do that

celest thorn
#

i wasn't understanding why no fucking message was getting to the server

#

then i realized i forgot to implement the Update

restive turret
celest thorn
#

Didn't you mean this one?

restive turret
#

that set back from readed

celest thorn
#

check is client

#

so thats why

#

it exist for that reason

#

check is client and client have synced

restive turret
#

The Set does the sync itself

#

guh

#

cus its SyncList

celest thorn
#

its a dictionary?

restive turret
#

both

celest thorn
#

bruh

#

nw

restive turret
#

Its not inv shit

celest thorn
#

moment

#

double code

#

but they use this in the entire code

#

if you check

restive turret
#

well only if less or smh

#

code is very idk

#

not really get what it do

hollow remnant
restive turret
hollow remnant
#

lmao

celest thorn
restive turret
#

oh nvm it doesnt have set

#

you can just do

#

[(int)ItemCategory.Grenade] = 8;

restive turret
celest thorn
#

idk this lib is really easy

#

and cool

restive turret
#

ye i get it

#

seems easy

icy knoll
#

easy doesn't equal good

restive turret
grand flower
#

Just use System's websockets

#

makes it simple

hollow remnant
hearty shard
#

hi slejm

restive turret
#

/*refs
dictionary[ItemType.Ammo9x19] = 40;
dictionary[ItemType.Ammo556x45] = 40;
dictionary[ItemType.Ammo762x39] = 40;
dictionary[ItemType.Ammo44cal] = 18;
dictionary[ItemType.Ammo12gauge] = 14;
*/

AmmoLimitsSync[0] = new()
{
AmmoType = ItemType.Ammo9x19,
Limit = ushort.MaxValue
};
dark storm
#

can I teleport a player into a room with player.Position? how i get the room vector3?

restive turret
grand flower
#

We use it on Bright's

#

Not websockets but same deal

restive turret
#

i dont know how would i use this tbh

celest thorn
#

I do wonder something

#

should this work fine? because from code seems like

#

but i don't just wanna put a server and bet my luck lol

restive turret
restive turret
#

also you might wanna do:

ServerConsole._verificationPlayersList = JsonSerialize.ToJson<PlayerListSerialized>(new(ServerBridge.AllPlayerRawIds));

#

or whatever

grand flower
#

Use two channels, one for sending, one for receiving

#

Game thread -> queue messages into the sending channel, background sending task reads them and sends them

#

Game thread -> read messages from the receiving channel, background receiving task receives them and queues them

slate flume
#

W

teal junco
#

posting here too just incase

static meteor
#

I dont think it would be much since its just a text box

upper vapor
#

And AmmoLimits

tepid sluice
#

Yea

restive turret
#

Still not changing client side one

upper vapor
#

It does

restive turret
#

Oh that's labAPI one

upper vapor
celest thorn
#

Helo

restive turret
#

Hi

celest thorn
#

How are you guys doing

static meteor
#

I bought the new Space engineers DLC

celest thorn
tepid sluice
#

same as usual

celest thorn
#

Lol

static meteor
restive turret
restive turret
#

So idk where to go

#

And it's raining so

upper vapor
celest thorn
#

Idk when i have classes honestly

#

But still need to do 2 other exams

#

So im going to ask there

tepid sluice
#

😭

restive turret
upper vapor
#

Or structs

celest thorn
#

its not hard i already studied those stuff

upper vapor
#

Then study

celest thorn
#

yea i need to finish a few stuff

upper vapor
#

Rehearsing is the mother of knowledge

random scaffold
#

dead chat

celest thorn
random scaffold
celest thorn
random scaffold
#

on your website

celest thorn
random scaffold
#

why

celest thorn
celest thorn
random scaffold
#

?

celest thorn
random scaffold
#

tor is starting

#

wait

celest thorn
#

of my website

celest thorn
#

I don't even see ips lol

random scaffold
#

best browser

#

im check much sites through tor

celest thorn
#

Ok?

#

hope you javascript on

#

else opengl cannot do shit and the libraries

restive turret
celest thorn
#

good morning

celest thorn
#

BRO

#

WTF IS WRONG WITH YOU

restive turret
#

The movie called naked gun

random scaffold
celest thorn
#

Never heard of it

random scaffold
#

im found there on the hub

celest thorn
celest thorn
random scaffold
#

Loading...
Reticulating splines...

#

what

celest thorn
restive turret
celest thorn
#

its random messages i asked chatgpt to generate them Trolley

random scaffold
#

why so long time

#

it loading

restive turret
#

Shit pc

#

Idk

celest thorn
#

shit pc

#

because it takes me 3s to load

random scaffold
#

he is loaded

#

lol

celest thorn
#

you need to render 3D models

random scaffold
#

but nothing

celest thorn
#

it takes me 3s

random scaffold
#

website dont works SteamHappy

celest thorn
#

even my phone can run it

#

this is the website btw

random scaffold
celest thorn
#

idk

random scaffold
#

bruh

celest thorn
#

let me test

restive turret
random scaffold
celest thorn
random scaffold
#

lol

celest thorn
#

Yep tor doesn't support rendering

#

lol

random scaffold
random scaffold
celest thorn
celest thorn
random scaffold
restive turret
random scaffold
#

your country protect you

random scaffold
#

why there render

#

if its a message sender

celest thorn
restive turret
#

Send deez

celest thorn
#

love it

random scaffold
#

why is obfuscated

celest thorn
random scaffold
#

react?

celest thorn
#

thats how next.js builds

celest thorn
random scaffold
#

Application error: a client-side exception has occurred while loading notzer0two.is-a.dev (see the browser console for more information).

#

bruh

celest thorn
random scaffold
#

zerotwo moment

random scaffold
celest thorn
#
curl -X POST "https://notzer0two.is-a.dev/api/message" ^
     -H "Content-Type: application/json" ^
     -d "{\"message\":\"your_message_here\"}"
#

you can do this

#

if you wanna send a message

random scaffold
#

lol

#

why curl installed on windows

restive turret
#

Gonna send million message

random scaffold
restive turret
celest thorn
restive turret
#

20h1

celest thorn
#

i hope it works Trolley

random scaffold
#

{"error":"Message rejected for toxicity"}

#

bruh

celest thorn
random scaffold
celest thorn
icy knoll
celest thorn
#

and i don't wanna go deep into what people sent

#

the clan joined in

#

too

random scaffold
#

{"success":true} ClassDTroll

#

scammed ai

celest thorn
#

I don't wanna

#

send...

random scaffold
#

why

celest thorn
#

bro you are weird

spare zodiac
random scaffold
celest thorn
#

god do i need to lower the ai threshold even more??

celest thorn
#

but at the same time i knoe 100% it will be a bad idea

#

ig the filter doesn't work

unique crane
random scaffold
#

Recv failure: Connection was reset bruh

random scaffold
#

and something other commands

celest thorn
spare zodiac
random scaffold
#

(

celest thorn
#

yea

#

bro you are disgusting

#

ngl

#

thank god just the good part is visible

#

and not all

spare zodiac
#

what is this conv about anyway?

spare zodiac
#

you created some AI to filter messages out?

celest thorn
spare zodiac
#

I see

random scaffold
celest thorn
celest thorn
#

its still an AI

random scaffold
celest thorn
#

obv not everything

#

i just wanna prevent 90% of the bad ones

#

that were crazy shit

spare zodiac
random scaffold
#

for show all filtered messages

celest thorn
#

No

#

NO

spare zodiac
#

keep the filter

celest thorn
#

NONONO

random scaffold
#

best idea

celest thorn
#

already what the clan sent

#

was enough

#

to make me disgusted

random scaffold
#

which clan

celest thorn
spare zodiac
#

are we talking about H E clan?

#

bro

celest thorn
#

mod snipe this guy

#

LOL

random scaffold
#

it just a question

#

lol

spare zodiac
# celest thorn yes

it's the worst clan what I saw them do like the amount of TOS broken is crazy

celest thorn
#

especially that you are server host don't do that

spare zodiac
#

the racist things said by them

celest thorn
#

ngl

#

i got sent Gore, porn and shit

restive turret
spare zodiac
random scaffold
celest thorn
restive turret
upper vapor
celest thorn
spare zodiac
celest thorn
spare zodiac
celest thorn
random scaffold
spare zodiac
spare zodiac
celest thorn
#

or just stupid shit

upper vapor
celest thorn
#

so there's nothing to really answer

#

Like logic_gun with his message resumed 70% of the messages i got

random scaffold
#

Warhead.Init();
Warhead.Target = HumanType.Furries;
Warhead.Run();

spare zodiac
#

bro

celest thorn
spare zodiac
#

furries are not the problem 💀

celest thorn
restive turret
#

Real

spare zodiac
celest thorn
#

existing

random scaffold
#

im lost their a video

spare zodiac
restive turret
spare zodiac
celest thorn
spare zodiac
#

I was given task to make game in python till christmas

#

like console game

#

ima make it not console, but graphical with turtle

celest thorn
#

so you need to shoot at the thing

#

instead of making them compact

restive turret
celest thorn
spare zodiac
celest thorn
#

where every assets is from half life stock pictures

spare zodiac
#

planning to make rpg game

#

yay

random scaffold
restive turret
celest thorn
#

and at the end the cat and dog need to fight

random scaffold
spare zodiac
#

it will be rpg about typing to beat monsters

restive turret
restive turret
#

Real

spare zodiac
#

if it would be in C# :(

celest thorn
#

this is the picture of the dog for the dialogues

#

look how cute this golden retriver is

#

:3

restive turret
celest thorn
spare zodiac
restive turret
#

Ah

celest thorn
#

so you can load pictures

spare zodiac
#

though for some reason we must be learning python for the whole year

celest thorn
#

and stuff Trolley

spare zodiac
celest thorn
#

you should set ground bases for an engine

#

and then think about the game

spare zodiac
#

I can use pygame tbh

celest thorn
#

its in pythong

#

or c#

spare zodiac
celest thorn
#

you can use then

#

colors and shit

restive turret
#

That's what he said

spare zodiac
restive turret
#

Can use pygame

celest thorn
restive turret
celest thorn
#

you are going to get the performance and its in python

spare zodiac
#

if I use game engine though it would take a lot of time and would need to actually make it look good

spare zodiac
#

just use simple turtle and grid based turn based game

celest thorn
#

you can even fucking make music inside the game

#

lol

#

and use it

restive turret
#

Scp sl in python ClassDTroll

celest thorn
#

or assets

spare zodiac
celest thorn
restive turret
#

Scp 5k

celest thorn
#

btw

#

you know what you can make

restive turret
#

Cry

spare zodiac
restive turret
#

Make me cry

celest thorn
#

this game is INCREDIBLE

#

from the PS2 era

#

and its an open world where you go and kill titans

#

thats it

#

there's no enemies

#

just titans

#

you kill one and you go kill the other

#

its a cool concept

#

but they did a map too big for a game like this

spare zodiac
#

I want to make like minecraft type with overworld, dungeons etc. everything would be procedurally generated

spare zodiac
celest thorn
#

games like this

#

so you can understand the difference of levels and stuff

#

else you miss those

#

if you make it like zelda (the first one)

#

i would say

spare zodiac
#

guys trust the process

celest thorn
#

get an idea on what to do

spare zodiac
#

there is also no reflection

celest thorn
#

how you want the game to look like

celest thorn
#

one day assets

#

one day other

#

and keep track of everything

spare zodiac
celest thorn
#

but still you need a concept

#

something to do

#

style

#

etc...

spare zodiac
#

style is mc paint, few lines

#

easy shit

#

do you know the game karak?

celest thorn
spare zodiac
#

so it's also a maze type shit basically

celest thorn
#

its an NES RPG game

random scaffold
celest thorn
#

World of Doom too

celest thorn
#

its a dungeon with choice that you can do

random scaffold
#

robox

#

☠️

celest thorn
restive turret
random scaffold
#

except pet simulator

limber silo
celest thorn
#

jesus what game you play

#

Oh wait

#

its a real game

#

wtf

unique crane
#

Creeper World is also pretty peak

celest thorn
#

oh wait i forgot about this game

#

it was on ps3

unique crane
#

no not that one xd

celest thorn
#

lol

#

its a civ type of game

tepid sluice
#

Creeper?

upper vapor
#

THE CREEPERS GONNA STEAL OUR STUFF AGAIN

celest thorn
tepid sluice
#

I just forgot the next lyrics

#

lol

celest thorn
#

Lol

restive turret
#

:steammocking:

celest thorn
#

Oh woah

#

face control???

restive turret
#

And others

#

When Jesus say anything here it means he did something

spare zodiac
restive turret
#

Or am i only conspiracy

restive turret
spare zodiac
celest thorn
#

WHAT

restive turret
celest thorn
#

Nah guys if they fr add this stuff

#

this might be the best of the best

restive turret
celest thorn
restive turret
#

Should send beer and cookies whoever implemented it

celest thorn
restive turret
#

Bro if you could change models

celest thorn
restive turret
#

Probably it will be in 15

#

Instead of q4x

#

14x

celest thorn
unique crane
celest thorn
#

thats what slejm said

unique crane
#

Its just marking "will be worked on"

celest thorn
#

Oh

restive turret
celest thorn
#

so its not done

restive turret
#

I through it was like

celest thorn
#

that would've too peak if they were implemented already (for 15)

unique crane
#

That would have been some miracle since RA is like

#

hm

restive turret
#

Go into nw and help implementing it

celest thorn
unique crane
#

Its all images

#

you cant even scale it

hearty shard
#

guh

#

david whyd u make RA like this

restive turret
#

Imagine deez

celest thorn
unique crane
#

Rewrite in display kit trolling

restive turret
hearty shard
#

rewrite in lua

celest thorn
hearty shard
#

rewrite in javascript

restive turret
unique crane
#

I mean

#

that

#

new unity UI

#

How is it called

celest thorn
#

rewrite in WebAssembly

upper vapor
restive turret
#

I dunno

unique crane
#

Idk

upper vapor
#

Xd

unique crane
#

Whatever

#

But the thing is

celest thorn
#

just rewrite it

unique crane
#

its extremely hard to add anything to RA

#

Well not extremely

celest thorn
#

is it like manual or automatic?

unique crane
#

Well manual..

restive turret
celest thorn
#

thats so sad

restive turret
celest thorn
restive turret
#

Why

celest thorn
#

rn

unique crane
#

There is only custom Editor window for guns I believe

#

But since SCPs arent added in masses

#

there isnt one for that

restive turret
#

Do u guys use versionlevel 10

unique crane
#

where do I see that in Unity

restive turret
unique crane
#

Or just give me some lang version 10 exclusive thing

#

and Ill see if it works XD

restive turret
#

Sadly unity doesn't support file namespace

#

Only block scope

unique crane
#

Unity when

namespace Yournamespace;

public class Test : MonoBehaviour
{

}
#

it just dies

restive turret
#

Yes ik

hearty shard
#

remaking sl is wild

restive turret
restive turret
hearty shard
#

omw to do the same Trol

restive turret
#

Good luck

unique crane
#

these cool stuff

restive turret
#

Oh the network messages ids are great

#

Please share

hearty shard
#

guh

unique crane
#

I would pin some important things

#

like layers

#

these ids

#

idk what else

hearty shard
#

but solo?

#

fuck no

restive turret
#

Join me i guess

restive turret
#

Idk

limber silo
#

Then closing every suggestion

#

Ill close them all

#

I would prefer if bugs are the only ones opened until fixed

restive turret
#

If cannot be done use the other one

limber silo
#

these suggestions are being taken care of internally, for that im making another system

#

keeping the issues open just makes it harder to see open bugs

icy knoll
#

jesus you my friend are cooking

restive turret
unique crane
#

Microsoft Forms MarkiplierGasLeak

icy knoll
restive turret
#

Real

unique crane
icy knoll
#

hey i QA tested ur shit last night

#

it failed like 1 billion times

#

smh

restive turret
#

Lel

#

Lumi

unique crane
#

it got accepted first try

icy knoll
#

hey lying is bad!

restive turret
#

Can you QA the QAClassDTroll

unique crane
restive turret
#

Smh

icy knoll
#

but nah it did pass :3

unique crane
icy knoll
#

i gave it my seal of approval

restive turret
#

🦭

icy knoll
worthy rune
#

lmao

unique crane
#

Then just say "what"

#

😭

icy knoll
restive turret
#

"What 😭"

unique crane
restive turret
#

I agree with them

unique crane
#

To be fair its just

restive turret
#

(didnt seen the tests)

unique crane
#

"I made these SSS buttons, click them and see if it does what I said it does"

#

like 95% of the time

restive turret
icy knoll
unique crane
#

rest is "check console if this event prints"

random scaffold
#

so many interfaces

icy knoll
#

for ur test last night i was about to make a plugin to be able to reproduce properly but i got lucky

restive turret
#

Lucky as

unique crane
#

It was more of the reproduction of the base game bug

restive turret
#

Was it broken first try ClassDTroll

unique crane
#

I didnt even test for the plugin replication honestly

icy knoll
#

yeah well now it's the third party devs problem :3

restive turret
icy knoll
# restive turret >:(

if i get into API maintainer and reproduce it, ill fix it for you dont you worry slejm

upper vapor
icy knoll
upper vapor
#

Where

#

When

#

How

#

Why

unique crane
#

I dont know what are we talking about right now

upper vapor
#

What

unique crane
#

Yeah I told Beryl like 5 times its unhealthy

restive turret
icy knoll
restive turret
#

Yes

icy knoll
#

peak

restive turret
#

Did u

unique crane
#

Well now I now at least 4 people who did

restive turret
#

Whos those 4

#

I seen 5 people who was in the google doc

icy knoll
#

well, me, you

#

and idk if one of them wants to speak out

#

david has a friend who applied

upper vapor
icy knoll
restive turret
upper vapor
unique crane
#

Someone and the other one

restive turret
#

Ah thanks

upper vapor
#

Np

unique crane
#

Thats their names

#

you dont know them?

restive turret
#

I just didn't know they applied

upper vapor
#

You don't even know anybody

unique crane
#

One of them is in this chat often

#

but the other one not

restive turret
unique crane
#

She said she cant

#

:pray :

restive turret
#

Oh right

#

Ax?

#

Miller?

upper vapor
unique crane
#

Ax doesnt know if he applied

restive turret
upper vapor
#

We'll see

unique crane
#

(I sent application on his name)

upper vapor
restive turret
icy knoll
#

you didnt need to send the CV

#

I didn't

unique crane
#

Yeah I attached his github and called it a day

icy knoll
#

just portfolio works

upper vapor
#

We might need to hire an investigator

restive turret
icy knoll
#

same

upper vapor
#

Is that what you wrote

icy knoll
unique crane
#

XD

restive turret
#

:D

upper vapor
restive turret
#

Well 2 week and you will know who can go tru the second filter and the other ones

icy knoll
#

yeah hopefully we all get through to the interview phase :3

restive turret
#

How many devs would they want?

#

Like 1? 2? 0?

unique crane
#

Why would they do apps if no one gets accepted

#

💀

restive turret
#

Idk

#

Oh i typed 0

#

Wanted to type 9

icy knoll
#

but probably enough to satisfy :3

restive turret
#

Satisfy who

icy knoll
#

development

restive turret
#

OpenGL.Draw(Numbers, 4);

unique crane
#

n ∈ N

#

enjoy

restive turret
#

Thanks

#

Why -∞

unique crane
#

Hm

#

Holdup

restive turret
#

Should be 1 minumum

unique crane
#

Better

restive turret
#

They cant hire negative people

restive turret
unique crane
#

Here you go

#

1 and more

icy knoll
#

float.NegativeInfinity + 1 people

restive turret
true cedar
#

hire me

#

my portfolio is me

unique crane
#

Then apply :3

icy knoll
restive turret
true cedar
icy knoll
#

you never have to talk again

true cedar
#

no but its like

restive turret
#

Ramble something ClassDTroll

restive turret
true cedar
#

i dont want people to know what i sound like both for privacy and bc yknow. dysphoria

restive turret
#

Or that was it in the docs

unique crane
icy knoll
#

so

unique crane
#

In like VC

icy knoll
#

and ive done 2 interviews now

unique crane
#

Everything can be sorted out in chat

restive turret
true cedar
restive turret
#

It's written in the docs so i was curious

unique crane
#

Thats just so like

#

it can be done

true cedar
#

i didnt realize u dont even have to speak after interviews but atp im too busy to do nw dev

unique crane
#

sad

icy knoll
#

if the people who i suspect will get in, actually get in, the api maintainer team might just be some of the best devs in the space

unique crane
#

Ofc because you get to see any make the new things

#

api-general and programming-general are the top 2 channels

true cedar
unique crane
#

and qa-requests is my least favourite one

#

Because thats where the blood starts spilling

icy knoll
#

#webdev-general is a peak channel

restive turret
icy knoll
#

even tho it gets 1 message every 10 millenniums

restive turret
unique crane
#

There is animals channel

icy knoll
#

most NW people have cats

restive turret
#

Me omw to send cats in there

icy knoll
#

and hubert loves cats, so he will see ur cat

unique crane
#

It is mandatory to send pet pics

restive turret
#

Better than mandatory feet pics

unique crane
#

💀

icy knoll
true cedar
#

um

restive turret
true cedar
icy knoll
true cedar
#

oh yea i completely forgot about it LMFAO

#

theres a few things i have to do