Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Define the owner function
- function owner()
- -- Owner's information
- local owner_name = "peerless" -- Replace with the actual owner's username
- local owner_id = "12345678" -- Replace with the actual owner's ID
- -- Output the owner's information
- print("Owner's Name: " .. owner_name)
- print("Owner's ID: " .. owner_id)
- end
- -- Call the owner function
- owner()
- -- Define the function to print the executor's identity
- function printidentity()
- -- Check for the known executor identifiers
- local executor_name
- if is_syn_closure then
- executor_name = "Synapse X"
- elseif is_fluxus_closure then
- executor_name = "Fluxus"
- elseif is_sentinel_closure then
- executor_name = "Sentinel"
- elseif is_krnl_closure then
- executor_name = "KRNL"
- elseif is_proto_closure then
- executor_name = "ProtoSmasher"
- elseif is_calamari_closure then
- executor_name = "Calamari"
- elseif is_electron_closure then
- executor_name = "Electron"
- elseif is_elysian_closure then
- executor_name = "Elysian"
- else
- executor_name = "Unknown Executor"
- end
- -- Print the identity
- print("This script is running on: " .. executor_name)
- end
- -- Call the function
- printidentity()
- -- Closure to check if the executor is "Scripton"
- local is_scripton_closure = function()
- local executor_name = "Scripton"
- local current_executor = "Scripton"
- -- Compare the current executor with the expected one
- return current_executor == executor_name
- end
- -- Check if the script is running in "Scripton" and print the appropriate message
- if is_scripton_closure() then
- print("Script is running in the 'Scripton' executor.")
- else
- print("Script is not running in 'Scripton'.")
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement