47
edits
Peterkohaut (talk | contribs) m |
Peterkohaut (talk | contribs) |
||
Line 12: | Line 12: | ||
}} | }} | ||
'''Blade Runner''' is a point and click adventure game that is telling a plot that run parallel to the 1982 film of the same name. A detective named Ray McCoy is tasked with hunting down a group of dangerous replicants, bio-engineered androids designed to look and act like humans. | '''Blade Runner''' is a point and click adventure game that is telling a plot that run parallel to the 1982 film of the same name. A detective named Ray McCoy is tasked with hunting down a group of dangerous replicants, bio-engineered androids designed to look and act like humans. | ||
== Debugger commands == | |||
To open debugger press CTRL+D | |||
=== scene === | |||
Usage: | |||
scene [<setId> <sceneId>] | |||
Arguments: | |||
setId - set id from this page | |||
sceneID - scene id from this page | |||
If both arguments are specified, command will change current set and scene. Warning: if current chapter does not contain specified set and scene, game will crash - use 'chapter' command. | |||
If no argument are specified, command will print current set and scene. | |||
=== chapter === | |||
Usage: | |||
chapter <chapter> | |||
Arguments: | |||
chapter - between 1 and 5 (including) | |||
This command will change current chapter but will not change set and scene. Videos, sets and scenes are chapter specific and this command must be used to load relevant resources before using 'scene' command. | |||
=== loop === | |||
Usage: | |||
loop [<loopId>] | |||
Arguments: | |||
loopId - which loop to play, must be a integer and valid for current scene | |||
If loopId is not specified, command will list all video loops for currently loaded scene. | |||
If loopId is specified, command will play specified video loop for currently loaded scene. | |||
=== var === | |||
Usage: | |||
var <id> [<value>] | |||
Arguments: | |||
id - which variable to get or set, partial list is available here [https://github.com/scummvm/scummvm/blob/master/engines/bladerunner/game_constants.h] | |||
value - value to set | |||
If value argument is not specified, command will print value of specified variable | |||
If value argument is specified, command will set value of specified variable | |||
=== flag === | |||
Usage: | |||
flag <id> [<value>] | |||
Arguments: | |||
id - which flag to get or set, partial list is available here [https://github.com/scummvm/scummvm/blob/master/engines/bladerunner/game_constants.h] | |||
value - value to set, must be 0 or 1 | |||
If value argument is not specified, command will print value of specified flag | |||
If value argument is specified, command will set value of specified flag | |||
=== anim === | |||
Usage: | |||
anim <actorId> [<animationMode>] | |||
Arguments: | |||
actorId - id of actor, 0 - player, list is available here [https://github.com/scummvm/scummvm/blob/master/engines/bladerunner/game_constants.h] | |||
animationMode - which animation to play, list does not exist but values can be derived from actor scripts available here [https://github.com/scummvm/scummvm/tree/master/engines/bladerunner/script/ai] | |||
If animationMode argument is not specified, command will print current animation for the actor | |||
If animationMode argument is specified, command will change animation for the actor - it will trigger scripted functionality | |||
=== goal === | |||
Usage: | |||
goal <actorId> [<goal>] | |||
Arguments: | |||
actorId - id of actor, 0 - player, list is available here [https://github.com/scummvm/scummvm/blob/master/engines/bladerunner/game_constants.h] | |||
goal - id of the goal to set, list does not exist but values can be derived from actor scripts available here [https://github.com/scummvm/scummvm/tree/master/engines/bladerunner/script/ai] | |||
If goal argument is not specified, command will print current goal for the actor | |||
If goal argument is specified, command will change goal for the actor - it will trigger scripted functionality | |||
=== pos === | |||
Usage: | |||
pos <actorId> [(<setId> <x> <y> <z> <facing>)|<otherActorId>] | |||
Arguments: | |||
actorId - id of actor, 0 - player, list is available here [https://github.com/scummvm/scummvm/blob/master/engines/bladerunner/game_constants.h] | |||
setId - id of the set to set (oh boy), list is available on this page | |||
x, y, z - i will not explain these | |||
facing - angle of actor - number between 0 and 1023 | |||
otherActorId - to quickly move actor to another one, list is available here [https://github.com/scummvm/scummvm/blob/master/engines/bladerunner/game_constants.h] | |||
If only actorId argument is specified, command will print current position of the actor | |||
If argument otherActorId is specified, command will change position of the actor to the other actor, warning: do not move player (0) to another actor as he will disappear | |||
If set, x, y, z and facing argument are specified, command will move actor to specified location, warning: do not move player (0) to another set as he will disappear | |||
=== say === | |||
Usage: | |||
say <actorId> [<sentenceId>] | |||
Arguments: | |||
actorId - id of actor, 0 - player, list is available here [https://github.com/scummvm/scummvm/blob/master/engines/bladerunner/game_constants.h] | |||
sentenceId - id of the sentence to say, list does not exist but values can be derived from all the scene and actors scripts available here [https://github.com/scummvm/scummvm/tree/master/engines/bladerunner/script] | |||
If goal argument is not specified, command will print current goal for the actor | |||
If goal argument is specified, command will change goal for the actor - it will trigger scripted functionality | |||
=== save === | |||
Usage: | |||
save <file path> | |||
Argument: | |||
file path - location of new save game in the file system, warning: existing file will be overwritten | |||
Command will save the game to the format loadable by the original game | |||
=== load === | |||
Usage: | |||
load <file path> | |||
Argument: | |||
file path - location of existing save game in the file system | |||
Command will load the game from saves from the original game | |||
== Game rooms == | == Game rooms == |
edits