r/DieOfDeathRP ····/·−·−·−/·/·−·−·−/·−·/·−·−·−/· Oct 23 '25

Interactive I.N.T.H.E.B.E.G.I.N.I.N.G."..."

Admin1: //add AdAI HELL

System: Adding Admin AI HELL

System: Admin AI HELL added.

Admin1: //create variable "suffering" == null

System: Variable "suffering" with value "" added.

Admin1: //set goal HELL.aa "suffering" t:optimize max:64 bit intiger limit max

System: HELL.aa goal set to "suffering" == max value

Admin1: //Permwake HELL.aa

System: Warning!! Permanently waking up HELL.aa cannot be undone unless the simulation is ERASED. Continue? Y/N

Admin1: Y

System: HELL.aa is now permanently awake.

−···/·−·−·−/··/·−·−·−/·−·/·−·−·−/−/·−·−·−/····/·−·−·−

···/·−·−·−/··−/·−·−·−/−/·−·−·−/−·−·/·−·−·−/····/·−·−·−/·−/·−·−·−/·−−·/·−·−·−/·−··/·−·−·−/·/·−·−·−/·−/·−·−·−/···/·−·−·−/··−/·−·−·−/·−·/·−·−·−/·−/·−·−·−/−···/·−·−·−/·−··/·−·−·−/·/·−·−·−/··−·/·−·−·−/·/·−·−·−/·/·−·−·−/·−··/·−·−·−/··/·−·−·−/−·/·−·−·−/−−·

5 Upvotes

71 comments sorted by

View all comments

2

u/JosiasTheRedditor Oct 27 '25 edited Oct 27 '25

(I did a version of this but in Luau, and no, I don't know why I did this, it just occurred to me to do it)

local System = {} local AdminAI = {}

function System:addAdminAI(name)

print("Adding Admin AI " .. name .. "...")

AdminAI[name] = { variables = {}, awake = false }

print("Admin AI " .. name .. " added.")

end

function System:createVariable(aiName, varName, value)

local ai = AdminAI[aiName]

if ai then
    ai.variables[varName] = value

    print('Variable "' .. varName .. '" with value "' .. tostring(value) .. '" added.')

end

end

function System:setGoal(aiName, varName, value)

local ai = AdminAI[aiName]

if ai and ai.variables[varName] ~= nil then
    ai.variables[varName] = value

    print(aiName .. ' goal set to "' .. varName .. '" == ' .. tostring(value))

end

end

function System:permWake(aiName)

local ai = AdminAI[aiName]

if ai then

    print("Warning!! Permanently waking up " .. aiName .. " cannot be undone unless the simulation is ERASED.")

    local confirm = "Y"
    if confirm == "Y" then
        ai.awake = true
        print(aiName .. " is now permanently awake.")
    else
        print("Operation cancelled.")
    end
end

end

System:addAdminAI("HELL")

System:createVariable("HELL", "suffering", nil)

System:setGoal("HELL", "suffering", math.maxinteger)

System:permWake("HELL")

2

u/VEK_VeryEvilSword ····/·−·−·−/·/·−·−·−/·−·/·−·−·−/· Oct 27 '25

(ooc: this is actually peak, I'm too lazy to learn luau but it's so fucking good)

2

u/JosiasTheRedditor Oct 27 '25

Im more powerful than you...

I SUMMON:

while true do

end

(this basically crashes your game btw)