04-20-2016, 06:43 AM
Well here is a way to crash the server
Create a plugin or add this code for example into the file Plugins/Core/main.lua under line (93):
This will create a block area with x = y = z = 10, with the for loop we write out-of-bounds. This should crash the server directly at startup, if not change the number 1000 to a bigger number.
Create a plugin or add this code for example into the file Plugins/Core/main.lua under line (93):
Code:
local area = cBlockArea()
area:Create(10, 10, 10)
for i = 10, 1000 do
area:SetBlockType(i, i, i, 1)
end
This will create a block area with x = y = z = 10, with the for loop we write out-of-bounds. This should crash the server directly at startup, if not change the number 1000 to a bigger number.