News:

The moderation team is holding a poll on the topic of the site's connection to Scratch. More details can be found here. Your feedback is appreciated.

Main Menu

If this gets a post ID of 32768, we advance!

Started by solitaire, Dec 29, 2021, 11:00:10 PM

Previous topic - Next topic

are you a cat or a dog person

cats
5 (38.5%)
dogs
3 (23.1%)
hamsters
1 (7.7%)
birds
2 (15.4%)
lizards
2 (15.4%)

Total Members Voted: 13

Luigis_Pizza

Imma do each song, in order, after this one

doesn't
Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


PkmnQ

Quote from: PkmnQ on Dec 01, 2023, 01:39:54 AMWith there being more than three active users now, it might be an interesting idea to bring this back.

There are 2 scores: TP (triplepost points) and NP (ninja points).

TP is the main system of points. Every time you triplepost, you get N^2 + 1 TP, where N is the amount of NP you have. Also, your NP count gets reset. After you triplepost once, you can triplepost again to get more TP.

Obviously, if you want to get more TP, you also need more NP. How do you get it? Simple. Just ninja someone on their 2nd post. When you do that, you get 2N+1, where this time N is the amount of NP the person you ninja'd had. Also, their NP count gets reset.

Here is an example. The parts in square brackets show the point gain.
i_am_user_971: One...
i_am_user_971: Two...
LetterH1234: Interrupted lol [+1 NP]
i_am_user_971: D:<
i_am_user_971: Attempt 2 at tripleposting
i_am_user_971: Yes! [+1 TP]
LetterH1234: :(
LetterH1234: At least I can get 2 TP
/USERNAME/: Or can you? [+3 NP, LetterH1234 -1 NP]
/USERNAME/: I'm gonna get 10 TP now!
i_am_user_971: Not a chance! [+7 NP, /USERNAME/ -3 NP]
i_am_user_971: Here we go!
i_am_user_971: That's what you get, H. [+50 NP]
LetterH1234: AAAAAAAAAAAAAAA

The first number on the leaderboard is their TP, and in parentheses is the NP.
PkmnQ - 1 (0)

Last updated: Post #3

State as JSON:
{"leaderboard":{"PkmnQ":[1,0]},"lastUser":"PkmnQ","count":0}

No need to keep track of the scores yourself, I'll try to update the leaderboard every page, sometimes earlier.
However, if you do want to keep track of the scores yourself, here&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#39;s how.
1. Go to the page where you'll find the post directly after where you left off.
2. Open the browser console.
3. Set lastPost to the post where you left off, and currentState to the previous state.
4. Run this:
Code (js) Select
currentState = [...document.querySelectorAll("#forumposts .post_wrapper")].filter(a => (currentPost = parseInt((a.querySelector(".page_number")?.innerText ?? "#1").slice(1))) > lastPost && (lastPost = currentPost)).map(a => a.querySelector(".poster a").innerText).reduce((state, user) => {
    if (!(user in state.leaderboard)) state.leaderboard[user] = [0,0]
    if (state.lastUser !== user) {
        if (state.count === 2) {
            state.leaderboard[user][1] += 2 * state.leaderboard[state.lastUser][1] + 1
            state.leaderboard[state.lastUser][1] = 0
        }
        state.count = 0
        state.lastUser = user
    }
    if (++state.count === 3) {
        state.leaderboard[user][0] += state.leaderboard[user][1] ** 2 + 1
        state.leaderboard[user][1] = 0
        state.count = 0
    }
    return state
}, currentState)
5. Use console.log(JSON.stringify(currentState)) to get the state as an easily copyable string.
6. If you are already on the last page, great, you have your final state. I just realized I forgot to make a way to turn the state into a leaderboard, so I'll do that whenever I update this thread next. Otherwise, copy currentState as a string, go to the next page, have lastPost be the last post of the previous page, paste currentState, and repeat from 4.
This counts as the first post of a triple post, by the way.
Quickly, I must save the Q's!
I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction

Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


PkmnQ

Quote from: PkmnQ on Dec 01, 2023, 01:39:54 AMWith there being more than three active users now, it might be an interesting idea to bring this back.

There are 2 scores: TP (triplepost points) and NP (ninja points).

TP is the main system of points. Every time you triplepost, you get N^2 + 1 TP, where N is the amount of NP you have. Also, your NP count gets reset. After you triplepost once, you can triplepost again to get more TP.

Obviously, if you want to get more TP, you also need more NP. How do you get it? Simple. Just ninja someone on their 2nd post. When you do that, you get 2N+1, where this time N is the amount of NP the person you ninja'd had. Also, their NP count gets reset.

Here is an example. The parts in square brackets show the point gain.
i_am_user_971: One...
i_am_user_971: Two...
LetterH1234: Interrupted lol [+1 NP]
i_am_user_971: D:<
i_am_user_971: Attempt 2 at tripleposting
i_am_user_971: Yes! [+1 TP]
LetterH1234: :(
LetterH1234: At least I can get 2 TP
/USERNAME/: Or can you? [+3 NP, LetterH1234 -1 NP]
/USERNAME/: I'm gonna get 10 TP now!
i_am_user_971: Not a chance! [+7 NP, /USERNAME/ -3 NP]
i_am_user_971: Here we go!
i_am_user_971: That's what you get, H. [+50 NP]
LetterH1234: AAAAAAAAAAAAAAA

The first number on the leaderboard is their TP, and in parentheses is the NP.
PkmnQ - 1 (0)

Last updated: Post #3

State as JSON:
{"leaderboard":{"PkmnQ":[1,0]},"lastUser":"PkmnQ","count":0}

No need to keep track of the scores yourself, I'll try to update the leaderboard every page, sometimes earlier.
However, if you do want to keep track of the scores yourself, here&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#39;s how.
1. Go to the page where you'll find the post directly after where you left off.
2. Open the browser console.
3. Set lastPost to the post where you left off, and currentState to the previous state.
4. Run this:
Code (js) Select
currentState = [...document.querySelectorAll("#forumposts .post_wrapper")].filter(a => (currentPost = parseInt((a.querySelector(".page_number")?.innerText ?? "#1").slice(1))) > lastPost && (lastPost = currentPost)).map(a => a.querySelector(".poster a").innerText).reduce((state, user) => {
    if (!(user in state.leaderboard)) state.leaderboard[user] = [0,0]
    if (state.lastUser !== user) {
        if (state.count === 2) {
            state.leaderboard[user][1] += 2 * state.leaderboard[state.lastUser][1] + 1
            state.leaderboard[state.lastUser][1] = 0
        }
        state.count = 0
        state.lastUser = user
    }
    if (++state.count === 3) {
        state.leaderboard[user][0] += state.leaderboard[user][1] ** 2 + 1
        state.leaderboard[user][1] = 0
        state.count = 0
    }
    return state
}, currentState)
5. Use console.log(JSON.stringify(currentState)) to get the state as an easily copyable string.
6. If you are already on the last page, great, you have your final state. I just realized I forgot to make a way to turn the state into a leaderboard, so I'll do that whenever I update this thread next. Otherwise, copy currentState as a string, go to the next page, have lastPost be the last post of the previous page, paste currentState, and repeat from 4.
This counts as the first post of a triple post, by the way.
Quickly, I must save the Q's!
I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction

Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


PkmnQ

Quote from: PkmnQ on Dec 01, 2023, 01:39:54 AMWith there being more than three active users now, it might be an interesting idea to bring this back.

There are 2 scores: TP (triplepost points) and NP (ninja points).

TP is the main system of points. Every time you triplepost, you get N^2 + 1 TP, where N is the amount of NP you have. Also, your NP count gets reset. After you triplepost once, you can triplepost again to get more TP.

Obviously, if you want to get more TP, you also need more NP. How do you get it? Simple. Just ninja someone on their 2nd post. When you do that, you get 2N+1, where this time N is the amount of NP the person you ninja'd had. Also, their NP count gets reset.

Here is an example. The parts in square brackets show the point gain.
i_am_user_971: One...
i_am_user_971: Two...
LetterH1234: Interrupted lol [+1 NP]
i_am_user_971: D:<
i_am_user_971: Attempt 2 at tripleposting
i_am_user_971: Yes! [+1 TP]
LetterH1234: :(
LetterH1234: At least I can get 2 TP
/USERNAME/: Or can you? [+3 NP, LetterH1234 -1 NP]
/USERNAME/: I'm gonna get 10 TP now!
i_am_user_971: Not a chance! [+7 NP, /USERNAME/ -3 NP]
i_am_user_971: Here we go!
i_am_user_971: That's what you get, H. [+50 NP]
LetterH1234: AAAAAAAAAAAAAAA

The first number on the leaderboard is their TP, and in parentheses is the NP.
PkmnQ - 1 (0)

Last updated: Post #3

State as JSON:
{"leaderboard":{"PkmnQ":[1,0]},"lastUser":"PkmnQ","count":0}

No need to keep track of the scores yourself, I'll try to update the leaderboard every page, sometimes earlier.
However, if you do want to keep track of the scores yourself, here's how.
1. Go to the page where you'll find the post directly after where you left off.
2. Open the browser console.
3. Set lastPost to the post where you left off, and currentState to the previous state.
4. Run this:
Code (js) Select
currentState = [...document.querySelectorAll("#forumposts .post_wrapper")].filter(a => (currentPost = parseInt((a.querySelector(".page_number")?.innerText ?? "#1").slice(1))) > lastPost && (lastPost = currentPost)).map(a => a.querySelector(".poster a").innerText).reduce((state, user) => {
if (!(user in state.leaderboard)) state.leaderboard[user] = [0,0]
if (state.lastUser !== user) {
if (state.count === 2) {
state.leaderboard[user][1] += 2 * state.leaderboard[state.lastUser][1] + 1
state.leaderboard[state.lastUser][1] = 0
}
state.count = 0
state.lastUser = user
}
if (++state.count === 3) {
state.leaderboard[user][0] += state.leaderboard[user][1] ** 2 + 1
state.leaderboard[user][1] = 0
state.count = 0
}
return state
}, currentState)
5. Use console.log(JSON.stringify(currentState)) to get the state as an easily copyable string.
6. If you are already on the last page, great, you have your final state. I just realized I forgot to make a way to turn the state into a leaderboard, so I'll do that whenever I update this thread next. Otherwise, copy currentState as a string, go to the next page, have lastPost be the last post of the previous page, paste currentState, and repeat from 4.
This counts as the first post of a triple post, by the way.
Quickly, I must save the Q's!
I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction

Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


PkmnQ

Quote from: PkmnQ on Dec 01, 2023, 01:39:54 AMWith there being more than three active users now, it might be an interesting idea to bring this back.

There are 2 scores: TP (triplepost points) and NP (ninja points).

TP is the main system of points. Every time you triplepost, you get N^2 + 1 TP, where N is the amount of NP you have. Also, your NP count gets reset. After you triplepost once, you can triplepost again to get more TP.

Obviously, if you want to get more TP, you also need more NP. How do you get it? Simple. Just ninja someone on their 2nd post. When you do that, you get 2N+1, where this time N is the amount of NP the person you ninja'd had. Also, their NP count gets reset.

Here is an example. The parts in square brackets show the point gain.
i_am_user_971: One...
i_am_user_971: Two...
LetterH1234: Interrupted lol [+1 NP]
i_am_user_971: D:<
i_am_user_971: Attempt 2 at tripleposting
i_am_user_971: Yes! [+1 TP]
LetterH1234: :(
LetterH1234: At least I can get 2 TP
/USERNAME/: Or can you? [+3 NP, LetterH1234 -1 NP]
/USERNAME/: I'm gonna get 10 TP now!
i_am_user_971: Not a chance! [+7 NP, /USERNAME/ -3 NP]
i_am_user_971: Here we go!
i_am_user_971: That's what you get, H. [+50 NP]
LetterH1234: AAAAAAAAAAAAAAA

The first number on the leaderboard is their TP, and in parentheses is the NP.
PkmnQ - 1 (0)

Last updated: Post #3

State as JSON:
{"leaderboard":{"PkmnQ":[1,0]},"lastUser":"PkmnQ","count":0}

No need to keep track of the scores yourself, I'll try to update the leaderboard every page, sometimes earlier.
However, if you do want to keep track of the scores yourself, here&amp;amp;amp;amp;amp;amp;amp;amp;amp;#39;s how.
1. Go to the page where you'll find the post directly after where you left off.
2. Open the browser console.
3. Set lastPost to the post where you left off, and currentState to the previous state.
4. Run this:
Code (js) Select
currentState = [...document.querySelectorAll("#forumposts .post_wrapper")].filter(a => (currentPost = parseInt((a.querySelector(".page_number")?.innerText ?? "#1").slice(1))) > lastPost && (lastPost = currentPost)).map(a => a.querySelector(".poster a").innerText).reduce((state, user) => {
    if (!(user in state.leaderboard)) state.leaderboard[user] = [0,0]
    if (state.lastUser !== user) {
        if (state.count === 2) {
            state.leaderboard[user][1] += 2 * state.leaderboard[state.lastUser][1] + 1
            state.leaderboard[state.lastUser][1] = 0
        }
        state.count = 0
        state.lastUser = user
    }
    if (++state.count === 3) {
        state.leaderboard[user][0] += state.leaderboard[user][1] ** 2 + 1
        state.leaderboard[user][1] = 0
        state.count = 0
    }
    return state
}, currentState)
5. Use console.log(JSON.stringify(currentState)) to get the state as an easily copyable string.
6. If you are already on the last page, great, you have your final state. I just realized I forgot to make a way to turn the state into a leaderboard, so I'll do that whenever I update this thread next. Otherwise, copy currentState as a string, go to the next page, have lastPost be the last post of the previous page, paste currentState, and repeat from 4.
This counts as the first post of a triple post, by the way.
Quickly, I must save the Q's!
I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction

Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


PkmnQ

Quickly, I must save the Q's!
I'm a vowelless neither transparent nor translucent mammal of the genus Neogale, I guess. :/ B)
On a journey to a new domain full of enrichment, With auras and curses for your entertainment, The concept of collectibles spent to unblock your path, Is stretched far to create an interesting aftermath. The ideas start simple at their most plain, Followed by golden power breaking constraints, Along with barriers to check you've cleared things out, Although double vision puts their power in doubt. Why raise up when you can instead replace, And why take just some when you can completely erase? Replacing with nothing may sound like obliteration, But there's a good reason for its differentiation. Special colors that melt, fortify, and wash, And blockages not even gold can squash, A loft rumored to be haunted by a certain curse, And a metal whose purity demonstrates its worth. You've just reached amounts less than none, One thing is clear: It has only just begun.
Tip: Use c͢ombining cha͊racters, because ye᷂s.
Quine list

Threads that I think should be played more: link chain Pre-posted Destruction

Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


solitaire







Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

#31323
explain
Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)


Luigis_Pizza

Nah I'd win
Status Message: Herring is going to send me to jail
Manipulating 3 peoples signatures now...
Call me Luigi or Matt/Matthew. I like JJBA. I released a game on gamejolt under Ernie_Games_Official. Made the 666666th post and I used to be the most active because I have no life...
JoJo's Bizarre Adventure is awesome
My discord is phantomluigi, please contact me if you want to chat im bored (or send me an email)