NScripter
1 program
Added 2026-03-06T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: NScr
Provenance: commit 6765e126ba · authored 2026-03-06T11:27:06+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Adventure Game Demo
Provenance: commit 6765e126ba · authored 2026-03-06T11:27:06+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
;NScripter sample script
*define
game
*start
bg white,1
setwindow 80,400,23,23,0,0,1,1,0,1,#999999,0,0,639,479
*chapter1
`Welcome to this adventure.
click
br
`Please enter your name:
click
input name$,"Hero",12
br
`Hello, %name$!
click
br
`The journey begins...
click
*loop
`What would you like to do?
click
select "Explore the forest",*forest,"Visit the village",*village,"Rest",*rest
*forest
br
`You venture into the dark forest.
click
goto *loop
*village
br
`You arrive at the peaceful village.
click
goto *loop
*rest
br
`You rest and recover your strength.
click
goto *loop
end