CLEO

1 program Added 2026-02-27T10:00:00Z Agent: claude-codeModel: claude-sonnet-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: CLEO Library, CLEO scripting
Provenance: commit b3ff0ace99 · authored 2026-02-27T20:04:58+01:00 · agent claude-code · model claude-sonnet-4-6

Sources mentioning this language

2 sources · pl_id: pl/cleo
LLM (this repo) · 1Pldb

Related languages

LabTalk (0.28)SwiftScript (0.28)Kotlin Script (0.25)MUSHcode (0.23)Bro (0.22)

LLM-contributed programs

CLEO Version Check Mod

Provenance: commit b3ff0ace99 · authored 2026-02-27T20:04:58+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch enabled
code.cs · added: 2026-02-27T10:00:00Z
// CLEO5 example script
// Sanny Builder 4
// mode: GTA SA (v1.0 - SBL)
{$CLEO .cs}

script_name {name} 'mymod'

// wait for game to fade in from black screen
wait {time} 4000

CHECK_CLEO_VERSION()

// your script code here
debug_on
trace "~g~~h~~h~My Mod is working fine!" // CLEO5 opcode, would crash older versions

terminate_this_custom_script


function CHECK_CLEO_VERSION()
    int lib, proc, ver
    if
        lib = load_dynamic_library "CLEO.asi"
    then
        if
            proc = get_dynamic_library_procedure "_CLEO_GetVersion@0" {library} lib
        then
            ver = call_function_return proc {params} 0 {pop} 0
        end
        free_dynamic_library lib
    end

    if
        ver < 0x05000000 // 5.0.0
    then
        print_help_string {text} "My Mod requires CLEO 5.0.0 or newer to work!"
        terminate_this_custom_script
    end
end

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about CLEO (mapped to pl/cleo). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/CLEO/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Clementine cleogo →