Jailbreak lacking admins [PART 2] Robot Admins

Contivalious

Poster
=(e)=
Joined
Jun 10, 2018
Messages
160
I would like to propose a new suggestion to help with moderating the Jailbreak server.

Introducing SpegortMcBort

Within our sub community I have noticed the lack of admins (in Jailbreak) on the server
and so I had decided that the only way to have admins on 24/7 is to create a robot that can
negotiate and administrate using the power of AI. This AI bot (SpegortMcBort) is the solution to our problems by
teaching the bot how to act in JailBreak by having it learn from eGO admins

Together we can come and pursue this goal by putting our full attention on the development
of this bot.

Deviating from the possibility of wasting the time of many users and administrators, only
individuals interested in the project should participate so we have a healthy research
environment. Remember this is for the better of eGO.


This is a joke don't take anything seriously
 
It's insane the remarkable pace that AI is advancing that everything I just said could be a possible future. Lowkey how cool would it be to have an AI admin
 
if break rule
ban
if don't break rule
don't ban

done ez pz AI
 
if break rule
ban
if don't break rule
don't ban

done ez pz AI

Add in
Admin joined = no powers
admin left = use powers
If
{
player = breakrules;

then
kickplayer;
}
if
{
kick = 3;

then
player = ban;
}
 
Damn if this AI so smart to understand free damage. Every CT is going to get banned.
 
Add in
Admin joined = no powers
admin left = use powers
If
{
player = breakrules;

then
kickplayer;
}
if
{
kick = 3;

then
player = ban;
}

if player = breakrules then kickplayer end
That if statement will always trigger. You're not comparing to see if player is equal to breakrules, you're setting player to breakrules, thus returning true.
 
import random
ran = random.Random()
for player in players:
ban = ran.randint(0,1)
if ban:
player.ban("permanent")

When I'm done half of humanity will still exist
 
Last edited:
I think we could just get Hammer to bring it down on everyone, all good
 
Last edited:
import random
ran = random.Random()
for player in players:
ban = ran.randint(0,1)
if ban:
player.ban("permanent")

When I'm done half of humanity will still exist

why stop there, lets just run a while(true) and have 50% deleted at a time until everyone is gone
 
I basically made something similar to this for an old FiveM community I used to own.

local warnings = 0

AddEventHandler('chatMessage', function(source, name, message)
for k,v in pairs(swearwords) do
if string.match(message, v) then
warnings = warnings + 1
if warnings == 1 then
TriggerClientEvent('chatMessage', source, 'sRP', {255,255,255}, 'That kind of language is uncalled for, you have been warned. Use of this language again will lead to a kick.')
CancelEvent()
print('Player ' .. name .. ' used foul language. They now have ' .. warnings .. 'warnings(s).')
else
DropPlayer(source, 'That kind of language is uncalled for.')
CancelEvent()
print('Player ' .. name .. ' was kicked for using foul language.')
end
end
end
end)


of course, there was another .lua which defines swearwords but.


anyway, it would be extremely difficult for the AI to exactly understand how a rule was broken. Chat commands, are easy since they can be defined easily. There would be a lot of money to be paid if we could create an AI admin for CSGO servers. Think of the possibilities.
 
I thought so hard that I decided to not do it because it would be a bad idea.
 
find.shitpost
found
find.expections
found
It's a joke
true.(0)
false(1)
ban.(0 & 1)
ban.completed

"You have been banned"





Slowly loses brains cells
 
I know this is a joke, but if there is a lack of admins, please tell me at what times and i'll try my best to get on.
 

Latest posts

Back
Top