Skip to content

Instantly share code, notes, and snippets.

@marcoths
Forked from OmkarKirpan/SCORM_cheat.js
Created March 30, 2025 19:49
Show Gist options
  • Select an option

  • Save marcoths/a8f384c1f84c3b1bd06d8a2ec7ab3678 to your computer and use it in GitHub Desktop.

Select an option

Save marcoths/a8f384c1f84c3b1bd06d8a2ec7ab3678 to your computer and use it in GitHub Desktop.
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()
@marcoths
Copy link
Copy Markdown
Author

scorm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment