Imgflip Logo Icon

The humble Hideo Kojima:

The humble Hideo Kojima: | we should have like a rule that if a user gets into too much "drama" they just get banned | image tagged in the humble hideo kojima | made w/ Imgflip meme maker
126 views 4 upvotes Made by AwesomeBadassF_ckingEvilPumpkin 6 days ago in MS_memer_group
The humble Hideo Kojima: memeCaption this Meme
34 Comments
3 ups, 6d,
6 replies
was gonna add a feature to msmgsite where verified users (email, 10k, 30 day, etc) can vote on a user and if they get enough votes they get automatically temp banned

community mute feature
1 up, 6d,
1 reply
HELL YEAH
0 ups, 6d
wouldnt work on mods, for obvious reasons, but also because the way the ban system is set up they could just unban themselves
1 up, 6d,
1 reply
more websites should have this
0 ups, 6d
thats what ive been thinking like????

although larger websites would have to deal with bots farming points to ban people
1 up, 5d,
1 reply
And you're sure people can't team up or create alts to exploit this?
0 ups, 5d,
1 reply
itd be difficult and if i catch them doing it ill permaban the accounts
1 up, 5d,
1 reply
Nice. Do you plan on implementing IP bans?
1 up, 5d,
2 replies
ive been working on it. for the community ban thing, if two accounts with the same ip vote on the same person, they will both get automatically banned. thanks modbot
1 up, 5d
OML TJATS AWESOME
0 ups, 5d,
1 reply
for how long lol
0 ups, 5d,
1 reply
mmmmmm a month
0 ups, 5d
W
1 up, 6d,
1 reply
YOU CHANGED UR NAME NOOOOO
0 ups, 6d,
1 reply
what, so???
1 up, 6d,
1 reply
i legit didn't recognize you. and 32-bit was so iconic man
0 ups, 5d,
1 reply
its only for 1 month total
1 up, 5d
ight
1 up, 6d,
1 reply
democracy
0 ups, 6d,
1 reply
1 up, 6d
MURICA RAHHH
0 ups, 5d
this concept seems so familiar
0 ups, 6d
yes
0 ups, 6d
0 ups, 6d,
1 reply
Isn't that part of the MSMG?

To list a few:
Rewrite
Memeus
Medkit/Skeleton_Bone
Toady
Masq

And the list goes on.
0 ups, 6d,
1 reply
theyre all still here
0 ups, 6d,
1 reply


Exactly
And the new rule ensures that the future of the MSMG will be better and bright.
0 ups, 6d,
1 reply
well i was saying it wasnt already part of msmg
0 ups, 5d,
1 reply
Nor has the rule been set yet. It's still on probation. How do the moderators and owners feel about this?
0 ups, 5d,
1 reply
its not gonna happen
0 ups, 5d
Ok
0 ups, 5d
Get ai generated code Jumpscafe
package com.example.mazegame

import android.content.Context
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.Paint
import android.view.MotionEvent
import android.view.View

class GameView(context: Context) : View(context) {

private val playerPaint = Paint().apply { color = Color.BLUE }
private val wallPaint = Paint().apply { color = Color.BLACK }
private val goalPaint = Paint().apply { color = Color.GREEN }

private val maze = arrayOf(
intArrayOf(1,1,1,1,1,1),
intArrayOf(1,0,0,0,0,1),
intArrayOf(1,0,1,1,0,1),
intArrayOf(1,0,1,0,0,1),
intArrayOf(1,0,0,0,1,1),
intArrayOf(1,1,1,0,0,1),
intArrayOf(1,1,1,1,1,1)
)

private var cellSize = 0
private var playerX = 1
private var playerY = 1
private val goalX = 4
private val goalY = 5

override fun onDraw(canvas: Canvas) {
super.onDraw(canvas)
cellSize = width / maze[0].size

for (y in maze.indices) {
for (x in maze[0].indices) {
val paint = when {
x == goalX && y == goalY -> goalPaint
maze[y][x] == 1 -> wallPaint
else -> null
}

paint?.let {
canvas.drawRect(
x * cellSize.toFloat(),
y * cellSize.toFloat(),
(x + 1) * cellSize.toFloat(),
(y + 1) * cellSize.toFloat(),
paint
)
}
}
}

// Draw player
canvas.drawCircle(
playerX * cellSize + cellSize / 2f,
playerY * cellSize + cellSize / 2f,
cellSize / 3f,
playerPaint
)
}

override fun onTouchEvent(event: MotionEvent): Boolean {
if (event.action == MotionEvent.ACTION_DOWN) {
val x = event.x
val y = event.y

val playerCenterX = playerX * cellSize + cellSize / 2f
val playerCenterY = playerY * cellSize + cellSize / 2f

val dx = x - playerCenterX
val dy = y - playerCenterY

if (Math.abs(dx) > Math.abs(dy)) {
if (dx > 0) movePlayer(1, 0) else movePlayer(-1, 0)
} else {
if (dy > 0) movePlayer(0, 1) else movePlayer(0, -1)
}
}

return true
0 ups, 6d
EXACTLY
0 ups, 6d
4 in one week
The humble Hideo Kojima: memeCaption this Meme
Created with the Imgflip Meme Generator
IMAGE DESCRIPTION:
we should have like a rule that if a user gets into too much "drama" they just get banned