@DaVince
I implemented source download in SSJ (after solving a nasty segfault mentioned in the Programming board that ruined my night...), and using it, proceeded to track down the cause of your KR crashes:
C:\Users\fatce\Documents\Sphere Studio\Projects>ssj kr
SSJ 3.0a3 minisphere Console Debugger (x64)
a powerful JavaScript debugger for minisphere
(c) 2016 Fat Cerberus
starting C:/Users/fatce/Documents/Sphere Studio/Projects/kr/... OK.
connecting to 127.0.0.1:1208... OK.
verifying... OK.
querying target... OK.
game title: Kefka's Revenge
author: KRTeam
=> # 0: eval() at scripts/game.js:12
12: GetSystemFont().drawText(15,10,"LOADING...");
scripts/game.js:12 eval()
(ssj) c
FATAL UNCAUGHT - TypeError: number required, found '83' (stack index 1)
at: maps/Aresidence1.rmp/onEnter:2
=> # 1: global() at maps/Aresidence1.rmp/onEnter:2
2: SetPersonX('daughterslaughter', '83');
maps/Aresidence1.rmp/onEnter:2 global()
(ssj) l
1: dispTown = "Family home";
=> 2: SetPersonX('daughterslaughter', '83');
3: SetPersonX('workdude', '277');
4: SetPersonY('workdude', '212');
5: SetPersonDirection('workdude', 'west');
6: IgnorePersonObstructions('kid', true);
Unfortunately KR does things like this a lot, which is what makes it so hard to support. But now you can see source for map scripts directly in the debugger, which is awesome!