Skip to content

Instantly share code, notes, and snippets.

View marcoths's full-sized avatar

Marco Hernandez marcoths

View GitHub Profile
@marcoths
marcoths / SCORM_cheat.js
Created March 30, 2025 19:49 — forked from OmkarKirpan/SCORM_cheat.js
SCORM LMS Hack
let ok = SCORM_GetAPI()
// setting lesson_status
ok.LMSSetValue('cmi.core.lesson_status', 'completed')
ok.LMSGetValue('cmi.core.lesson_status')
// setting score
ok.LMSSetValue('cmi.core.score.raw', '100')
ok.LMSGetValue('cmi.core.score.raw')
// Saving
ok.LMSCommit()
ok.LMSFinish()