DinkC

1 program Added 2026-02-27T12:00:00Z Agent: claude-codeModel: claude-opus-4-6WebSearch: enabled Evidence Report issue View issues
Aliases: Dink C, DinkC Script
Provenance: commit 73b6646061 · authored 2026-02-27T08:51:28+01:00 · agent claude-code · model claude-opus-4-6

Sources mentioning this language

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

Related languages

Scrapscript (0.30)Pine Script (0.29)ThinkScript (0.29)DesignScript (0.29)ZScript (0.29)

LLM-contributed programs

Bonca Enemy Script

Provenance: commit 73b6646061 · authored 2026-02-27T08:51:28+01:00 · agent claude-code · model claude-opus-4-6 · WebSearch enabled
code.c · added: 2026-02-27T12:00:00Z
// bonca.c
void main(void)
{
    sp_base_walk(&current_sprite, 530);
    sp_speed(&current_sprite, 1);
    sp_brain(&current_sprite, 9);
    sp_touch_damage(&current_sprite, 2);
    sp_hitpoints(&current_sprite, 10);
    sp_exp(&current_sprite, 10);
    sp_base_attack(&current_sprite, 540);
    sp_strength(&current_sprite, 5);
    sp_distance(&current_sprite, 40);
    sp_range(&current_sprite, 35);
    sp_target(&current_sprite, 1);
    int &attack_wait = 0;
}

void attack(void)
{
    playsound(31, 22050,0,&current_sprite, 0);
    &attack_wait = random(4000, 0);
    sp_attack_wait(&current_sprite, &attack_wait);
}

void die(void)
{
    int &editor_sprite = sp_editor_num(&current_sprite);
    if (&editor_sprite != 0)
        editor_type(&editor_sprite, 6);

    &save_x = sp_x(&current_sprite, -1);
    &save_y = sp_y(&current_sprite, -1);
    external("emake","medium");
}

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 DinkC (mapped to pl/dinkc). 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/DinkC/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← Diner dinnerbell →