Fun with dialogues.

This commit is contained in:
Mari the Deer 2021-09-14 18:40:22 +02:00
commit f6f2854bf6
96 changed files with 1565 additions and 161 deletions

View file

@ -623,6 +623,15 @@ extend Class SWWMHandler
if ( e.Args[0] != consoleplayer ) return;
checklist.Clear();
}
else if ( e.Name ~== "swwmstorepuzzlecnt" )
{
let s = SWWMStats.Find(players[e.Args[0]]);
if ( s )
{
s.puzzlecnt = e.Args[1];
s.realpuzzlecnt = e.Args[2];
}
}
// cheats go here
else CheatEvent(e);
}