Add preliminary implementation of PayFine, PayFineThief and GoToJail instructions

This commit is contained in:
scrawl 2014-01-09 01:49:58 +01:00
parent baf55df7a1
commit 6f9113fe88
10 changed files with 65 additions and 14 deletions

View file

@ -244,6 +244,9 @@ namespace Compiler
extensions.registerFunction ("getpcjumping", 'l', "", opcodeGetPcJumping);
extensions.registerInstruction ("wakeuppc", "", opcodeWakeUpPc);
extensions.registerInstruction ("playbink", "Sl", opcodePlayBink);
extensions.registerInstruction ("payfine", "", opcodePayFine);
extensions.registerInstruction ("payfinethief", "", opcodePayFineThief);
extensions.registerInstruction ("gotojail", "", opcodeGoToJail);
extensions.registerFunction ("getlocked", 'l', "", opcodeGetLocked, opcodeGetLockedExplicit);
extensions.registerFunction ("geteffect", 'l', "S", opcodeGetEffect, opcodeGetEffectExplicit);
extensions.registerInstruction ("addsoulgem", "cc", opcodeAddSoulGem, opcodeAddSoulGemExplicit);