mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 07:32:02 +00:00
15 lines
379 B
Plaintext
15 lines
379 B
Plaintext
// Computer file types script, used by NTSL2++
|
|
|
|
/datum/computer_file/script
|
|
var/code = "" // Stored data in string format.
|
|
filetype = "NTS"
|
|
var/block_size = 1500
|
|
|
|
/datum/computer_file/script/clone()
|
|
var/datum/computer_file/script/temp = ..()
|
|
temp.code = code
|
|
return temp
|
|
|
|
/datum/computer_file/script/proc/calculate_size()
|
|
size = max(1, round(length(code) / block_size))
|