#off-topic

1 messages ยท Page 538 of 1

frank pasture
#

@jagged pollen you're more to me than that anyway ๐Ÿ˜—

elfin minnow
#

=profile @mossy saddle

jagged pollen
#

โค

elfin minnow
#

old acc

eternal apex
#

did u just kill barry tig

velvet crescent
#

He did

eternal apex
#

lovely

mellow zinc
#

rip

elfin minnow
eternal apex
#

o

#

sad days are coming

#

gary is almost completely replaced

velvet crescent
#

rippo

elfin minnow
#

When u had the trusted tag for the longest

eternal apex
#

didn't u get demoted a while back?

#

for a little while

frank pasture
#

Earliest I can find in my emails

#

Of when I first got deluxe chat

mellow zinc
#

nice scribble

frank pasture
#

Somehow must of emailed myself the config, cuz it would reset itself

mellow zinc
#

joseph

frank pasture
#

Smh

#

Donโ€™t make me do it back ๐Ÿ˜‚

#

my name is public info, but i still don't blurt it out

velvet crescent
#

Imagine having to look at a picture to know charlie's last name

#

pffft

frank pasture
#

roflll

mellow zinc
#

srry for not stalking people

frank pasture
#

on a random note, my dad gets his new car saturday

#

๐Ÿ‘€

mellow zinc
#

ok whats ur address

frank pasture
#

id say because we have security, but I'd rather not be swatted

#

cuz prob people here who do that shit

velvet crescent
#

lol

#

inb4 his car dissapears

frank pasture
#

HAHA

mellow zinc
#

lmao

#

๐Ÿ‘€

frank pasture
#

us and next door have a security guard

mellow zinc
#

rich

#

i be living in the slums man

frank pasture
#

rofl

#

id like to have money someday

#

i dont rely on parents, i dont like it

mellow zinc
#

us and next door have a security guard

frank pasture
#

but thats not me

mellow zinc
#

id like to have money someday

frank pasture
#

I

eternal apex
#

go get a job chaz

mellow zinc
#

just ask ur parents for 500k, they prob have that money lying around

eternal apex
#

like at a company

#

that sells stuff

frank pasture
#

I've looked around but couldn't find

#

Ideally remote job

eternal apex
#

rpf is hiring

frank pasture
#

rly

eternal apex
#

payment is currently a belly rub every 5 months

frank pasture
#

if u come irl

eternal apex
#

u'd have to pay all costs

frank pasture
#

cheaper to go red light district chappa

eternal apex
#

wouldn't be going to uk for that

frank pasture
#

rofl

#

if u do come uk come to mine

mellow zinc
#

no come mine

frank pasture
#

we have nice-

eternal apex
#

I doubt i'd be meeting any minemen

mellow zinc
#

why not

frank pasture
#

me and gians first meet was fun, I wanna meet more minemen

#

would be fun

mellow zinc
#

i play cs too

frank pasture
#

thats how he gets pussy

#

he tells them "I play CS"

eternal apex
#

the too isn't inclusive of me, because remember, I don't play cs

frank pasture
#

HAHA

eternal apex
#

i only play surf

#

that doesn't count

frank pasture
#

and MW

#

๐Ÿ˜

mellow zinc
#

-_-

#

u gotta launch cs to play surf

eternal apex
#

i need portal 3 to release still

#

been a while

frank pasture
#

wait

eternal apex
#

i'm still waiting tho

frank pasture
#

ITS COMING OUT?

eternal apex
#

no

frank pasture
#

I loved portal 2

eternal apex
#

wo wtf

#

no way

#

not to waht u just said

frank pasture
#

oh

eternal apex
#

little discord glitch happened

frank pasture
eternal apex
#

just ticked over to 12 am, and my "no", and your "I loved portal 2" timestamps said Tomorrow at 12:00 AM

frank pasture
#

I had to fork fucking base

eternal apex
#

u played portal stories mel?

frank pasture
#

because their shit is scuffed

#

I completed portal 2 as coop long ago

eternal apex
#

play portal stories mel

frank pasture
#

me and a friend voice called and completed it

#

whats that

eternal apex
#

it adds onto the story between portal 1 & 2

frank pasture
#

oh wow

eternal apex
#

it's a game

#

think of it as portal 1.5

frank pasture
#

never knew this came out

#

tf

#

thats amazing

eternal apex
#

it's unofficial

#

technically a mod, feels like a real game tho

elfin minnow
#

anyone have a pterodactyl api for node

eternal apex
#

yes I just found this after googling

frank pasture
#

I might have to try out Night Mode tonight

eternal apex
#

what's that?

frank pasture
#

the new phone has a "night mode" for pictures

eternal apex
#

o

frank pasture
#

apparently its supposed to compete with other phones

#

but ive never tried

#

It also has some "deep fusion" ai shit for pics

#

but I haven't noticed it

elfin minnow
#

i need it to check a node status

#

that one can only check if its in maintence mode

eternal apex
#

ping the node manually

#

i'm pretty sure that's how the panel and the node interact with each other, via get, pull, etc

#

I believe pterodactyl daemons are just web end points hooked up to some system stuff

frank pasture
#

I'm thinking of letting users disable modules but idk, it would just cancel any bukkit runnables under the class but idk, maybe a bad thing to add

eternal apex
#

@frank pasture pushing a new version of rpf now that adds support for overriding command handlers

frank pasture
#

๐Ÿ˜ฎ

eternal apex
#

create ur own command handler that extends BukkitCommandHandler, and @Override the process method

#

then, make a registerable

frank pasture
#

wow, ill try it then ๐Ÿ‘€

eternal apex
#

inject CommandHandlers

#

and do commandHandlers.overrideHandler("bukkit", YourCommandHandler.class, injector);

#

aight, update ur version to 1.4.12

#

on jars and bukkit

frank pasture
#

oke lemme do now

eternal apex
#

sorry in advance if it doesn't work, I haven't tested. Gonna go over it more thoroughly tomorrow

frank pasture
#
public class PluginCmdHandler extends BukkitCommandHandler {
    @Override
    protected boolean process(User user, Command command) {
        return super.process(user, command);
    }
}```
#

this?

#

and np

eternal apex
#

yep that's good

frank pasture
#

so that would check the map

#

and return if they can use?

eternal apex
#

ye

frank pasture
#

dope

eternal apex
#

well

#

sorta

#

u gotta check if command is an instanceof SpoofCommand first

#

or actually just do it on all

#

do whatever u want

frank pasture
#

it will only apply to spoof cmds anyway?

eternal apex
#

ye

frank pasture
#
public class CommandRegisterable extends StartupRegisterable {

    @Inject
    private CommandHandlers commandHandlers;

    @Override
    protected void execute() {
        commandHandlers.overrideHandler("bukkit", PluginCmdHandler.class, injector);
    }
}```
#

this?

eternal apex
#

yep

frank pasture
#

boom

eternal apex
#

maybe

#

lemme check the boot priority real quick

frank pasture
#

ye was gonna say idk which 1 I need to choose

eternal apex
#

set it to AFTER_COMMANDS

frank pasture
#

alright will do now, will;

#
    @Override
    protected boolean process(User user, Command command) {
        return plugin.getConfig().getStringList("settings.whitelisted").contains(user.getId());
    }```
#

work and is it good to do?

#

or should I store them

eternal apex
#

that'd work

frank pasture
#

I always would store config elements, but people said that config is cached anyway

primal pecan
#

At the moment debating on a good motherboard to go with.

eternal apex
#

config is cached, and i'll show u how to use rpf's config mapper at a later stage

frank pasture
#

๐Ÿ˜ฎ

#

spoof is much nicer, ive got to implement your framework on my other plugins yet

#

its on the todo

eternal apex
#

actually, can you show me the spoof config?

#

is it on the repo?

frank pasture
#

Lemme upload to the repo, I haven;t made 1 yet

#

but it will be same as old

#

added @eternal apex

#

pull repo you'll see it

eternal apex
#

rpf could handle everything except this

#

because that is very misleading

#

it's called "list", yet it's not a list

frank pasture
#

well these are per module

#

the idea is when a dev adds their module, they'd tell u to add a section to config

#

to configure that module

#

unless your config manager system could inject into modules

#

and provide something for them

eternal apex
#

rpf might be able to handle that actually

#

lemme test real quick

frank pasture
#

๐Ÿ˜ฎ

#

Once spoof releases I'm gonna make feluxs site, and add rpf :3

boreal escarp
#

Roasted pig framework?

frank pasture
#

it will be on a part of the site

#

to show appreciation

eternal apex
#

here's an example tho ^

#

so that'd map to your "bungee.enabled" key

frank pasture
#

woah yeah

#

You have access to spoofapi repo, so you're welcome to add to that if its needed with framework

#
[16:33:26 INFO]: [SF] Loading API..
[16:33:26 INFO]: [io.felux.spoof.command.PanelCommand@299ab7fd, io.felux.spoof.command.ReloadCommand@13f442d9, me.piggypiglet.framework.commands.implementations.HelpCommand@5f139af6, me.piggypiglet.framework.minecraft.commands.HelpCommand@5417564a]
[16:33:26 INFO]: [io.felux.spoof.command.PanelCommand@299ab7fd, io.felux.spoof.command.ReloadCommand@13f442d9, me.piggypiglet.framework.commands.implementations.HelpCommand@5f139af6, me.piggypiglet.framework.minecraft.commands.HelpCommand@5417564a]
[16:33:26 INFO]: [SF] Bootstrap process completed.```
#

u left debugs xd

eternal apex
#

oof

#

i'll fix that in a sec

frank pasture
#

process method let me run the cmd

#

even tho I wasn't whitelisted

mellow zinc
#

smh

eternal apex
#

that's nice

frank pasture
#

xdd

#
public class PluginCmdHandler extends BukkitCommandHandler {

    @Inject
    private Spoof plugin;

    @Override
    protected boolean process(User user, Command command) {
        return user.getId().equalsIgnoreCase("CONSOLE") || plugin.getConfig().getStringList("settings.whitelisted").contains(user.getId());
    }
}```
eternal apex
#

just disable it for now, will have to look into it tomorrow

frank pasture
#

ye its np, in no rush, still doing the panel gui

boreal escarp
frank pasture
#

already done

primal pecan
#

Does it expand in slots or just pages for players?

frank pasture
#

rn neither, but I'll prob have it add the page buttons

velvet crescent
#

that's neat, although gamemode full caps yuck

frank pasture
#

ye was temp

#

will drop it soon

primal pecan
#

you need a inventory api or already have one @frank pasture ?

frank pasture
#

im using base by hazebyte atm, as not much else out there @primal pecan

primal pecan
#

Ah yeah I have seen that by the creator of CratesPlus ain't it?

#

Dinosaur

frank pasture
#

ye

primal pecan
#

I'll look into seeing what's difference from my api to that. Been building a few private versions lately.

#

Current API has runnables that update inventories with flashing, scrolling, and moving. Just need to finish up Pagination API to automatically create new pages probably.

frank pasture
#

this is rly weird, this api takes ages on first run to pull the players

#

@eternal apex see this base api lags idk why

eternal apex
#

ouch

velvet crescent
#

jesus

frank pasture
#

it only does that for player ones, but idk why

#

its aids

#

tps is fine too

boreal escarp
#

F

frank pasture
#

a big F ๐Ÿ˜ฆ

boreal escarp
mellow zinc
#

:cri:

frank pasture
#
[17:18:22 INFO]: Siri issued server command: /spoof panel
[17:18:24 INFO]: Took 0ms to get players.
[17:18:27 INFO]: plugin.getName() = Spoof
[17:18:27 INFO]: <Siri> Notch
[17:18:28 INFO]: UUID of player Notch is 069a79f4-44e9-4726-a5be-fca90e38aaf5
[17:18:28 INFO]: Notch[/52.160.176.56:56944] logged in with entity id 358 at ([world]168.5, 69.0, 252.5)
[17:18:28 INFO]: Siri issued server command: /spoof panel
[17:18:34 INFO]: Took 4541ms to get players.```
#

yikes

#

rly strange, for some reason my Spoof API takes that long to fetch players

elfin minnow
#

first ran took none

#

second took like 5 seconds

#

L

frank pasture
#

ye its really fucking strange

#

i think its this shit api

#

YEP

#

shit fucking inventory api

#
[17:24:08 INFO]: Siri issued server command: /spoof fetch
[17:24:08 INFO]: Took 0ms to get players (via command).
[17:24:17 INFO]: plugin.getName() = Spoof
[17:24:18 INFO]: <Siri> Notch
[17:24:18 INFO]: UUID of player Notch is 069a79f4-44e9-4726-a5be-fca90e38aaf5
[17:24:18 INFO]: Notch[/235.51.106.76:57453] logged in with entity id 289 at ([world]168.5, 69.0, 252.5)
[17:24:19 INFO]: Siri issued server command: /spoof fetch
[17:24:19 INFO]: Took 0ms to get players (via command).```
#

took 0ms when doing via a command.

elfin minnow
mellow zinc
boreal escarp
#

@fallow crow not here.

frank pasture
#

what happened

boreal escarp
#

Idm

frank pasture
#

@elfin minnow nice avatar

arctic raptor
#

Damn tig

elfin minnow
#

ty

#

nnn

mellow zinc
#

-_-

#

who failed already

arctic raptor
#

Tig did

elfin minnow
#

no

frank pasture
#

HAHA

mellow zinc
#

11.6mil trees

boreal escarp
#

o

jagged pollen
#

๐Ÿ˜ฎ 3 days ago it was 8mil

split basalt
primal pecan
#

I'll be donating 2k sometime soon.

boreal escarp
#

o

mellow zinc
#

donating to me

primal pecan
#

@frank pasture it could be taking awhile to the inventory's size?

#

I didn't want to use that api as it's quite big and thought it would take awhile to load.

#

nah @mellow zinc lol

mellow zinc
#

๐Ÿ˜ 

primal pecan
#

lol

boreal escarp
#

Donate to me then 0_BingShrug

arctic raptor
#

Nah

#

Make some sales and make some pay ๐Ÿ‘

#

@boreal escarp

boreal escarp
#

..

opal drift
mellow zinc
#

pretty cool but no spook

velvet crescent
#

Weak.

magic summit
#

Anyone remembers when Mojang added the option, that you can have left and right arm/leg with deparate textures (And layers)?

#

It feels for me like if it was there forever

primal pecan
#

lol

#

The size of the text was too large to be real anyways

#

And the spider starts on the text and not on the outside of it

velvet crescent
#

I thought we were in australia when I saw the spiders size

jade oasis
#

big servers in rate my server dont take feedback and just want to boost their own ego

my opinion

#

also the spider looks real when you're on your phone

velvet crescent
#

the text is too small tho

jade oasis
#

ye

pure bane
#

Sup

primal pecan
#

Sup

jade oasis
#

clip how was halloween

boreal escarp
#

He ate all the candies

pale grotto
#

@pure bane

mellow zinc
#

im scarred

boreal escarp
#

:)))

#

I ASKED WHERE IS THE MAP, B!TCH

#

(Idk what dora would say lmao, never watched an ep of her cartoon)

mellow zinc
#

keep it that way

boreal escarp
#

Not planning on doing that at almost 18 JOIEY

mellow zinc
#

good

boreal escarp
jade oasis
#

@pale grotto be dropping 1s here

boreal escarp
pale grotto
#

OPMines is a scam

jade oasis
#

F

boreal escarp
jade oasis
#

level is here tag him if u want to tell him

mellow zinc
#

@lev

pale grotto
#

Oh I left a review too

jade oasis
#

hes a chill dude

pale grotto
mellow zinc
#

tired of all these pay-to-win servers

boreal escarp
#

2018

pale grotto
#

2018?

jade oasis
#

looks like a message for a party they send in my year's group chat

boreal escarp
#

Oh, the date was too pixeled and I thought it say 2018

jade oasis
#

big dum

boreal escarp
#

Will miss 0_NitroMoto lmao

pale grotto
#

I said something along the lines of "why the fuck are y'all dm advertising" and got banned instantly

boreal escarp
#

Cole, buy me 0_NitroMoto pls

mellow zinc
#

no me

boreal escarp
mellow zinc
#

u actually have the best emotes

#

i need to know what servers ur in

boreal escarp
#

A lot

mellow zinc
#

im in like 2

pale grotto
boreal escarp
pale grotto
velvet crescent
#

OPmines is honestly trash

boreal escarp
#

I asked you nicely mister Cole smh

velvet crescent
#

The amount of dm advertisement the server is doing is actually sad

pale grotto
#

exactly

mellow zinc
#

gaby how about i buy u nitro and u buy me nitro

pale grotto
#

that's probably the only reason they got a playerbase

#

idc if u advertise

#

But stop spamming everyone in their fm

boreal escarp
jade oasis
#

๐Ÿ’ฐ

boreal escarp
pale grotto
#

@velvet crescent plus their ad looks like a 12 year old girls wrote it

#

2015 faction vibes

mellow zinc
#

hcf better than factions

pale grotto
#

Everyone DM levels with the ad he sent us

#

Lmao

mellow zinc
#

nah thats toxic

jade oasis
#

Levels is a chill dude

#

other owner "VoxaDub" is responsible for advertising I believe

pale grotto
#

Sounds accurate lol

boreal escarp
velvet crescent
#

If you encourage people to dm advertise, you aren't an owner, moreorless a cuck

pale grotto
#

^

velvet crescent
woven prairie
#

Uhm, @velvet crescent just sent me a DM telling me to join his Discord server for PAYPAL INVITE REWARDS and his Minecraft server that offers a WEEKLY PAYOUT of $500 PAYPAL and $1000 BUYCRAFT

velvet crescent
#

imagine me having 500$ pffft

boreal escarp
#

P))

velvet crescent
#

get real :p

pale grotto
#

You're a cuck frosty

#

MinusOne @velvet crescent

velvet crescent
#

weeewooo

mellow zinc
#

๐Ÿ˜ 

velvet crescent
#

What gamemode @woven prairie

woven prairie
#

Unique Factions and SkyBlock

velvet crescent
#

on top of that 1.8 amirite ๐Ÿ˜‚

woven prairie
#

ofc

velvet crescent
woven prairie
#

I heard you're already planning season 2 with a flawless cannoning jar?

velvet crescent
#

That's just disturbing Kaliber..

mellow zinc
#

LOL

woven prairie
#

Is that a selfie

mellow zinc
#

yes

#

sorry

#

i shall delete

woven prairie
#

๐Ÿ˜ฎ

mellow zinc
#

how to report?

jagged pollen
#

DM @honest thistle

elfin minnow
#

dont report me thanks down

mellow zinc
#

i might have to tbh

#

for inappriopriate avatar on such a month

#

NNN

elfin minnow
opal drift
#

@velvet crescent nice review

#

salty much kid lool

frank pasture
#

Err??

mellow zinc
elfin minnow
#

@opal drift thats not very nice, no toxicity please.

woven prairie
#

o

opal drift
#

x)

naive barn
#

anybody want to help me with some testing?

mellow zinc
#

is it possible
we can colour the side strip
just like the bots
do
!!!

pure bane
#

voice-1

frank pasture
#

Imagine

mellow zinc
#

come??

frank pasture
#

No

mellow zinc
#

come itll be fun

#

party no

frank pasture
#

Honestly my battery has lasted so well today

mellow zinc
#

test it out with the mic on

frank pasture
#

Woke up at 8:30 am or so this morning, itโ€™s now 11:37pm and Iโ€™m at 40% battery

#

Pretty fucking amazing

primal pecan
#

sup

mellow zinc
primal pecan
#

for the IPhone 11 Pro Max @frank pasture ?

#

Yeah it lasts forever for me lol.

frank pasture
#

Yeah

primal pecan
#

I usually wake up at 7am and it'll last till I go to sleep around 9pm and put it on the charge.

frank pasture
#

Today was the first day I could fully test it

#

Camera is fucking insane tho

#

I absolutely love it

primal pecan
#

ye love the camera.

elfin minnow
#

my phone poppin

primal pecan
#

I'm out of space tho

elfin minnow
#

already

#

what

frank pasture
#

3 cameras is nice

primal pecan
#

Ye.

frank pasture
#

And tf

elfin minnow
#

how tf u fill 64 gbs

primal pecan
#

64gb?

#

I got the 512gb

elfin minnow
#

i have 64

primal pecan
#

I got 512

elfin minnow
#

but have used like none

#

BRUh

mellow zinc
primal pecan
#

charlie has 256gb

#

50% of my storage is on Spotify

#

other half is on camera.

elfin minnow
#

o u downloaded em all

primal pecan
#

well I don't need to.

frank pasture
#

Tf 64gb

#

I couldnโ€™t bare

primal pecan
#

you should've got higher.

frank pasture
#

I went with the 256gb space gray 11 pro max

primal pecan
#

You wanna know how much was on my last one?

frank pasture
#

512 is too silly

#

And 64 is way too small

primal pecan
#

16gb

#

lmao

#

I had a 1tb ICloud for all my shit.

#

I still do.

frank pasture
#

I canโ€™t of used only 16gb lmao

primal pecan
#

it tells ya usually

#

but ye most of your photos are backed up

#

to ICloud

#

I don't think they delete off your phone hto

elfin minnow
frank pasture
#

Yeah seems like it

#

I need to move them from iCloud

#

Back to my phone

primal pecan
#

I gotta reinstall Discord on my phone lol

#

I've got like 5 apps on my phone and that bout it.

#

YouTube, Spotify, Snapchat, Shazam, and Authy

#

used to have steam authenticator but haven't used steam in awile.

frank pasture
#

Wow

#

Never knew this was a thing

primal pecan
#

well it checks if you have the phone but I think it's new.

#

I never had that pop up as I check on my pc

frank pasture
#

See now Iโ€™m worried if I turn off iCloud

#

Will it delete from my@phone

primal pecan
#

your phone won't backup to ICloud

#

so if you lost it

#

you won't have your current data on it

#

I wouldn't turn it off

#

only the stuff it had backed up before you turned it off

#

Happened to me lol

frank pasture
#

So I deleted a pic off iCloud and it disappeared from my phone

#

So seems like they arenโ€™t stored on my phone

primal pecan
#

check your recovery

#

in ICloud

#

where they are kept for 30 days

#

ye it will delete it off your phone I guess then if it's synced.

#

you can disable that in the app settings I think 1m

#

ye

#

in Photos

#

there's a option called iCloud Photos

#
Automatically upload and safely store all  your photos and videos in iCloud so you can browse, search, and share from any of your devices.
#

@frank pasture

#

Opinions on the Airpods Pro?

#

To me I don't need it as I have Beats Solo 3, but if I feel that I can't deal with the current Beats I have I might go for the Beats Pro the issue is that the metal clamp may be annoying to keep it on for a long period of time.

frank pasture
#

Eh it seems nice but Iโ€™m happy with my AirPods series 2

#

The pro are nice but crazy expensive

pure bane
nova star
#

I have a spotify prem acc

#

but I don't want to hook it here

jagged pollen
#

user settings > connections

mellow zinc
#

it doesnt need to be displayed ^

frank pasture
#

Well GG me

#

Deleted the pics so they go to the recently deleted

#

Turned off iCloud

#

Pics were completely gone

jagged pollen
#

oof rip

frank pasture
#

Ok nvm my heart went, turned on iCloud they came back, so somehow got to figure to take these pics off iCloud

arctic raptor
#

Spotify perm acct, I'd be careful admitting that you have a cracked acct.

#

Some people here get report happy cause they discord staff wannabes

#

Very similar situation happened to someone else I know here who got banned for probably just saying thst

mellow zinc
#

how do u know its cracked

frank pasture
#

Yep someone here got banned for a bullshit reason in relation to that

#

Because discord seem to fucking banning every c* for literally nothing

#

Also cough lol

arctic raptor
#

@mellow zinc because you can't get "permanent" accounts without cracking them lmao

#

Unless you just work for Spotify or something

mellow zinc
#

doesnt prem stand for premium?

frank pasture
#

Reminds me of a dude on twitter who pretended he was a dev at Hytale

#

Premium pron

arctic raptor
#

Oh did he say prem

mellow zinc
#

๐Ÿคฆ

arctic raptor
#

Lmao

#

Nobody says prem I saw perm

frank pasture
#

NoNutNovember kinda a waste

#

Nobody rly gonna stick with it

mellow zinc
#

agree

frank pasture
#

But yeah going back discoed seem to ban for shit reasons

#

Someone here recently got one

#

Literally messages can be taken out of context

arctic raptor
#

Yep

mellow zinc
#

does that someone start with a c

#

xd

#

unluko

frank pasture
#

RIP

arctic raptor
#

That's what happens when the entire staff team of Discord is Furries who some don't understand tons of English

frank pasture
#

I said naughty word the bot removed

arctic raptor
#

Oops I might get banned for saying they're all Furries

frank pasture
#

Yeah discord are hoes

pure bane
#

L

jagged pollen
#

naughty charlie

mellow zinc
#

if u delete the messages then it is completely wiped from discord

frank pasture
#

I wanted to say hunt but with a c

arctic raptor
#

@pure bane where's my steak

frank pasture
#

Kail thatโ€™s why I often remove my messages

#

Every week I do w wipe

#

Across discordโ€™s

arctic raptor
#

That's a pain in the ass

frank pasture
#

No

#

Iโ€™d say the word but discord would try ban me

arctic raptor
#

Lmao

#

I think ik what you're

#

Yes

frank pasture
#

๐Ÿ˜‚

#

In case discord are watching, I hire slaves to delete my messages

#

I pay them 1 rupee an hour

mellow zinc
#

ah yes

arctic raptor
#

Same

#

Jesus 1 rupee

frank pasture
#

10 rupees gets them 1/8 of a chocolate bar

#

Good times

arctic raptor
#

That's not even 1/4 of a penny

frank pasture
#

HAHA

arctic raptor
#

It's like 0.010

#

Yeaj

frank pasture
#

Holy fuck thatโ€™s low

arctic raptor
#

Yeah they're eco is a bit screwed

mellow zinc
#

lmao

primal pecan
#

I feel bad for building pcs

#

a Indian guy was on the discord for pcpartpicker

frank pasture
#

10 rupees is 0.14 dollars

mellow zinc
#

on the bright side, rupees arent zimbabwean dollars

arctic raptor
#

I love how the spikes on that line graph is like

primal pecan
#

said he had a 500k rupe budget

arctic raptor
#

One millionth of 1

frank pasture
#

The spikes on that graph are more unstable than female moods

arctic raptor
#

LOL

primal pecan
#

50k*

arctic raptor
#

That's like 700 bucks

primal pecan
#

ye

#

but to them it's 50k rupes

#

a lot ish idk

#

idk how it's weighted for em.

#

the cast system is weird.

pure bane
#

@everyone

proper fableBOT
#

The 'everyone' mention is disabled so you can't annoy people.

frank pasture
#

As you guys have wanted a selfie for a while, hereโ€™s me with my new iPhone 11 Pro Max

primal pecan
#

lol

frank pasture
#

As we talking about rupees

pure bane
#

come to room-1

primal pecan
#

wrong channel clip

#

ah.

boreal escarp
#

pay me @pure bane

mellow zinc
#

and me

primal pecan
#

but u are already in it lol

pure bane
#

pay me

frank pasture
#

Yeah clip pay wm too

#

Iโ€™ll be your son

primal pecan
#

& clip has to pay for his kid's lego sets.

frank pasture
#

If I get paid

primal pecan
#

He can't afford for voice chat like dat.

frank pasture
#

And told how to make my plugins thrive

#

Also clip I might bring back deluxe prison sometime

#

Cuz Iโ€™m bored

#

Tho idk if you still have the original spawn

primal pecan
#

you know it took forever to find my old ai api which I am likely soon to put on GitHub.

frank pasture
#

Oof

primal pecan
#

publicly for ai moving 1.8 based.

pure bane
#

moving is easy

frank pasture
#

Clip teach me then

primal pecan
#

well my new api has moving, chatting, block break, and fishing.

pure bane
#

call a moving company

primal pecan
#

lmao

frank pasture
#

HAHA

arctic raptor
#

Expensive

frank pasture
#

Just hire Rajesh

boreal escarp
#

that's what I said, pay me, clip

frank pasture
#

For 1 rupee

arctic raptor
#

Rajesh

arctic raptor
#

LMAO

frank pasture
#

I meant Rakesh but my phone

arctic raptor
#

What about Rahkeem

frank pasture
#

Wanted to change it

#

To another fucking Indian name

#

All the same

#

Just 1 letter difference

pure bane
#

if everyone sends me 5 bucks i can buy some more legos

arctic raptor
#

Legos

arctic raptor
#

I have an entire like city of legos

frank pasture
#

If everyone sends me discord nitro $10 I can boost the server

arctic raptor
#

One problem though

primal pecan
#

lemme see if my money is transferred @pure bane

#

shit wrong person

arctic raptor
#

It's in about a trillion pieces in multiple boxes

primal pecan
#

I gotta remove all my auth from this laptop soon lol

#

pack it up and ship it back to California to get my money back.

#

It's a deformed laptop which is hella hot (not in a good way)

arctic raptor
#

Just fac reset it

primal pecan
#

once I get the 2.2k I spent it'll be time to get the boss pc lol

#

Upgrading my office to some of the max hardware even though in a year or two it'll be outdated by new stuff coming out.

frank pasture
#

Yeah technology gets outdated so quickly

#

Itโ€™s shocking

primal pecan
#

Did you hear NVDIA's new graphic card?

#

the god dam GTX 1650 lmao

#

they had a GTX 1660 already.

naive agate
#

bb @frank pasture

frank pasture
#

@naive agate baby โค

#

And holy fuck

jagged pollen
#

:p

naive agate
#

I orange now

primal pecan
#

weird.

naive agate
#

?

primal pecan
#

weird color.

naive agate
#

๐Ÿ˜ญ

primal pecan
#

got recommended this insane edit but eh it's still gta 5 but with mods and some editing.

#

not sure if I can send that or not.

frank pasture
#

The new COD has RTX, idk if Iโ€™ve noticed difference

#

But eh

primal pecan
#

It's supposed to be for more lightning but doesn't really do anything to me

naive agate
#

fr?

primal pecan
#

I usually just have it disabled.

#

I've been averaging 40+ kills a game in team deathmatch and have been leveling up slowly but likely need to get a new account so been playing for fun mostly.

arctic raptor
#

I still cant get the new cod working >:(

primal pecan
#

Why?

#

What's the issue lol

naive agate
#

^^

primal pecan
#

and put the code in etc?

#

I did it through nvdia experience for the code

#

then set up a account and boom

arctic raptor
#

Yep

primal pecan
#

and what's the issue lol

arctic raptor
#

It crashes on startup

primal pecan
#

it logs why it did lol

#

usually

arctic raptor
#

I see the small loading screen

#

Then when it goes to open the full screen loading screen I hear the sound Effect for one of the logos for about half a second

primal pecan
#
Run the Battle.net Desktop app.
Click the icon of the Call of Duty: Modern Warfare
Click on the Options
After that, click on the Scan and Repair
Click the โ€œBegin Scanโ€
arctic raptor
#

Then it gives me the black screen with a cursor

#

Then closes

#

I've done that already

#

I've also completely un installed and reinstalled the game

primal pecan
#

tried all the methods etc?

#

view a bunch of these

arctic raptor
#

Yes I've done literally everything I could find

primal pecan
#

what graphivcs card?

#

gtx?

arctic raptor
#

GTX 960m

mellow zinc
#

ooooooff thats why

primal pecan
#

1m

arctic raptor
#

Yeah no, that's not why

primal pecan
#

that isn't

mellow zinc
#

come back when ur game loads + more than 30fps ๐Ÿ‘‹

arctic raptor
#

My graphics card is literally higher than the reccomended so piss off

primal pecan
#

@mellow zinc if you aren't going to help what's with the point with responding?

arctic raptor
#

If I can run GTAV on high and some ultra settings with a visual pack at 50fps, then I can run mw

primal pecan
#

there's been issues with not just you but a lot of people with loading.

#

it's not about settings etc but it is heavier to let you know.

#

try above as it could be the directx

arctic raptor
#

I'll try it in a sec

#

Gotta make my food and then set my stuff back up

primal pecan
#

another option

#

did you try deleting the folder for players? for cod modern warfare?

#

in documents then the call of the duty folder then the players folder

#

as in the BETA people had to delete the players2 folder to fix the beta issue.

frank pasture
#

See thatโ€™s where Iโ€™d feel specs do matter, me and piggy both was able to run the game fine - tho taking into account high specs

primal pecan
#

I can as well.

#

I have the same proc but different graphics than ya I think chazz

#

you got the rtx 2070 don't ya?

frank pasture
#

2060

#

Cuz laptop

primal pecan
#

well you can get a rtx 2080

#

in a laptop

frank pasture
#

Rly

primal pecan
#

it's just going to cost more.

#

ye

#

you can get a i9-9900k

#

rtx 2080

#

in a laptop

frank pasture
#

Geeez

primal pecan
#

Predator I think has it

frank pasture
#

Prob more cuz I kept with razer maybe idk

primal pecan
#

4k usd

frank pasture
#

Isnโ€™t the predator massive tho

primal pecan
#

I think for the base

frank pasture
#

In size

primal pecan
#

6lb

#

I think.

frank pasture
#

Holy fuck

naive agate
#

damn

#

I need that

primal pecan
#

need that for the IPhone

#

if it was in the new iphone

#

I'd upgrade with no issue lol

#

i don't really care for the animation but eh

#

it works.

naive agate
#

I need that for my my body

mellow zinc
#

mood

arctic raptor
#

@primal pecan I cant even find the directory it wants me to go to

frank pasture
#

I mean the new iPhone has fast charging with the box

#

Which is lush

arctic raptor
#

Only the pro models ^^

frank pasture
#

Yeah

arctic raptor
#

which is so dumb

frank pasture
#

I got mine in the box xd

#

But eh

#

Apple do it on purpose

arctic raptor
#

Fast charger is only like $10 more expensive

#

its just a cheap-ass way of adding an extra selling point to the pro phones

frank pasture
#

Apparently the new screen can get very bright but havenโ€™t seen it yet

#

Because only applies automatically ๐Ÿ˜ฆ

arctic raptor
#

Yeah well their screen also went down in resolution

#

XR even has a little over 1080p

#

all the 11's have 720p lmao

frank pasture
#

But OLEF

#

oled

arctic raptor
#

Yeah but thats so stupid

#

At least get 1080p like come on

frank pasture
#

Tho I gotta shout apple on the pros cameras

#

Like they are fucking bomb

primal pecan
#

Eh I don't really mind.

#

for the quality

#

as it still is a pro camera.

#

great photos etc

frank pasture
#

I donโ€™t mind the screen

arctic raptor
#

cant watch youtube on 1080p or 4k without it stretching

frank pasture
#

Itโ€™s an OLED which I prefer

primal pecan
#

It's still bigger than my old phone.

#

iPhone 7s

#

I might build a custom desk so I can have a build in charger where it'll lay in a portion of it idk.

#

I think it's a waste to be fair but could be useful.

#

for a cleaner/sleek design

arctic raptor
#
-Go to the configuration file(s) location.

(%USERPROFILE%\Documents\My Games\Call Of Duty: Modern Warfare\Saved\Config\WindowsNoEditor\)
frank pasture
#

Itโ€™s funny I paid extra for my AirPods wireless charging and never used them

primal pecan
#

my games I think is where they installed it

#

mine didn't go to my games

#

did you use Steam or?

arctic raptor
#

Its not on steam

primal pecan
#

mine just went straight into my Documents directory

frank pasture
arctic raptor
#

which is dumb

primal pecan
#

Nah

arctic raptor
#

cause I like being able to change to a new PC

#

wait

#

nvm I am stupid

#

battle.net will just let me reinstall it on a new pc lmfao

primal pecan
#

ye.

frank pasture
#

Yeah ๐Ÿ˜‚๐Ÿ˜‚

#

Was gonna say

primal pecan
#

lol

arctic raptor
primal pecan
#

were you tryna transfer it or somethin?

#

ye.

arctic raptor
#

nah

primal pecan
#

I'm likely getting the i9-9900k idk yet.

#

and the rtx 2080

arctic raptor
primal pecan
#

ti I don't need and don't want to pay another $400 for a slight difference

#

weird

arctic raptor
#

there is no Saved folder

primal pecan
#

mine isn't that big

#

yours looks outdated

#

mine is all neat and shit lol

arctic raptor
#

thats a different on

#

one

primal pecan
#

ah wrong folder

#

1sec

arctic raptor
#

Usually games have 2 different directories

#

like gta has the one in documents and then the steam one

primal pecan
#

I'm just waiting for GTA 6 as it seems like the most hyped game tbh

#

but it likely won't be till the new xbox two

arctic raptor
#

its gonna take them a couple more years

primal pecan
#

well if you base it off red dead

#

that was 10 years for a wait

arctic raptor
#

yep

primal pecan
#

for a huge difference in comparison.

arctic raptor
#

they're still focusing on GTA V content

primal pecan
#

well you know some of the stuff got supposedly leaked

arctic raptor
#

cause they make a SHIT TON of $$$$

primal pecan
#

for the gta 6.

#

for the location it'd be placed in.

arctic raptor
#

whats the loc?

primal pecan
#

I forget there should be articles tho

#

all over the internet

arctic raptor
#

ah

primal pecan
#

One article I just searched said:

arctic raptor
#

last thing I heard was they were gonna remove multi character in story mode and make the main character an off duty cop or some shit idr

primal pecan
#
17 April 2019: According to the recent reports, GTA 6 and Sony PS5 will launch in 2020, and the game location will be based on Miami and New York City. 4 April 2019: 
#
The MarketWatch report citing an industry analyst who says Sony is eyeing a potential purchase of Take-Two Interactive which will make the GTA VI be SONY PS5 exclusive.
arctic raptor
#

Miami and New York??

primal pecan
#

out

#

ouch

#

sony ps5 I hope not lol

arctic raptor
#

seriously

#

sony exclusive

primal pecan
#

well like they did for spiderman tbh

arctic raptor
#

Rockstar best know thats going to fuck their sales

primal pecan
#

I wasn't buying the ps4 just for spiderman

#

ye.

#

I would buy a custom console just for rockstar tbh

arctic raptor
#

The amount of PC and Xbox people on GTA well over powers ps4

primal pecan
#

ye.

#

Well you know I wonder how long till a cheat mod is out when it's released to be fair lol

arctic raptor
#

lol

#

okay so this directx thing

primal pecan
#

ye.

arctic raptor
#

Am I in the wrong folder

primal pecan
#

Don't ask me lol

#

I was just going over multiple articles.

#

it could be wrong/outdated.

#

as I had no issues for the game.

arctic raptor
#

I hear a brigade of like 4 fire departments passing my house

primal pecan
#

loading screens 426fps on MW

#

game play ~100fps

#

on max settings.

arctic raptor
#

nice

primal pecan
#

Idc about rtx tho

arctic raptor
#

me: cant even launch the stupid game

primal pecan
#

the graphics card could be a issue but I really doubt it is.

arctic raptor
#

I updated the drivers and its above the reccomended

#

so I doubt it

golden echo
#

this moment that you think if to join voice room 1..

arctic raptor
#

just do it

primal pecan
#

what is that english and do it lol

#

I'm not joining as my fans are heavy as hell rn as I am tryna play some mc solo

arctic raptor
#

idk where this players folder is

elfin minnow
#

secrets only

primal pecan
#

where is your call of duty folder located in

#

@arctic raptor

#

not the program fileso ne

arctic raptor
#

program files x86

#

og

primal pecan
#

there's another folder

arctic raptor
#

oh

#

idk

primal pecan
#

there has to be lol

#

1sec

arctic raptor
#

yeah there is I just have no idea where

primal pecan
#

look for this file

#

on your drive

#

ppsod.dat

#

it's one of the files in the folder

#

could help idk

arctic raptor
#

lol I just realized I only have 80gb left on my ssd

primal pecan
#

just letting you know @arctic raptor

#

it tells you why you crashed

#

if you find the folder

arctic raptor
#

well I gotta find it first

primal pecan
#

lol

#

I crashed as I didn't have my charger plugged in

arctic raptor
#

js this game isnt very good at documentation for issues

primal pecan
#

running at 2fps

#

well it did release last week to be fair lol

arctic raptor
#

Yeah but come on

primal pecan
#

I'd expect some bugs but ye.

arctic raptor
#

if this is a known issue how did it get out of Beta

primal pecan
#

release date

arctic raptor
#

lol

arctic raptor
#

pre-maturely released

primal pecan
#

I would ask for you to screenshare but quite busy rn lmao to sorta help.

arctic raptor
#

lol

primal pecan
#

well I still can just gotta move where you won't hear my annoying ac in my home.

#

up to you lol if you really want to play or can find the folder yourself

#

didn't it ask you where it'd install?

arctic raptor
#

probably but I didnt pay attention since it was 1am and I was tired af

#

idm background noise

primal pecan
#

well the minimum settings you likely have

#

the recommended settings eh

#
Recommended Specifications
Here are recommended Specs to run at 60FPS in most situations with all options set to medium:
OS: Windows 10 64 Bit (latest Service Pack)
CPU: Intel Core i5-2500K or AMD Ryzen R5 1600X processor
RAM: 12GB RAM
HDD: 175GB HD space
Video: NVIDIA GeForce GTX 970 / GTX 1660 or Radeon R9 390 / AMD RX 580
DirectX: Requires DirectX 12 compatible system
Network: Broadband Internet connection
Sound Card: DirectX Compatible
#

is your os 32 bit or 64 bit?

arctic raptor
#

I have an i5-6700K with a gtx 960m

#

Win10 Pro 64bit

#

16gb ram

#

4gb Vram

#

512gb ssd, 1tb hdd

primal pecan
arctic raptor
primal pecan
#

documents folder?

arctic raptor
#

none

primal pecan
#

they have weird tips lol

arctic raptor
#

I searched the entre drive so It should of showed up

primal pecan
#
Limit other bandwidth-heavy applications
#
Have you tried restarting your router? 
#

as it loafds

#

well did you try running it from the battle.net app?

#

and not directly from the .exe for call of duty modern warfare

arctic raptor
#

yes

primal pecan
#

weird.

#

You know what's even weirder.

arctic raptor
#

?

primal pecan
#

My bluetooth disables as soon as I launch it for my Beats

#

COD MW I mean

arctic raptor
#

lmao

primal pecan
#

as soon as it launches my beats go into a mode that requires me to listen by the microphone's speaker which isn't good.

#

or to plug them in with a wire

#

have you tried closing everything in the background Drew?

#

when trying to run it

arctic raptor
#

mhmmm

#

It also looks like its stretching itself out to the screen

primal pecan
#

that shouldn't mean it doesn't load

#

but if you tap out it isn't correct

arctic raptor
#

wdym

primal pecan
#

it usually is full screen

#

and if you aren't in it's screen it won't load for you like update that it's working correctly

#

check your game settings as it could be the resolution that's messing it up

#

as if you have multiple monitors you need to make sure you select the display one for it to use

arctic raptor
#

and it is using my display 1

primal pecan
#

nvm the shit I said is after it's loaded 1m

#

maybe look for a user_keys.kb file

#

this is all the other folder has

#

other than the archive folder for it or a blank folder for gpu report

#

@arctic raptor potentially see if your drive(s) if you have multiple have a file starting with this

#
crashdump_
#

it's a compressed zip which keeps your crash data

#

might be helpful to find the correct directory.

native furnace
#

hey is there a plugin that like gives a player that has been on like a 3 death losing streak? (for example like this player died 3 times in a row so they get a speed boost for their next life?)

primal pecan
#

Wrong place to ask, but not that I know of for free on Spigot.

#

But I may be wrong.

nocturne fossil
#

Heyo Kyle

primal pecan
#

sup

nocturne fossil
#

Hru

primal pecan
#

Alright, waiting to get my email for my return label so I know what to put on my package.

arctic raptor
primal pecan
#

maybe try now?

#

either the game is fine and it's the graphics I have no idea lol

arctic raptor
#

I seriously highly doubt its my graphics card

primal pecan
#

I forget for Windows 10 Home/Pro does the caps lock look like this?

arctic raptor
#

huh

primal pecan
#

like the UI

#

when you enable/disable caps.

arctic raptor
#

I just have a keyboard light

primal pecan
#

Mine switches between the unlock and lock for when you have it enabled.

#

ah lol

#

Could be due to the manufacturer or a custom setting idk.

arctic raptor
#

crashed again

primal pecan
#

weird.

#

maybe send them a email and they can look into it.