doc fixes

This commit is contained in:
p.kosyh 2010-07-19 12:00:52 +00:00
parent 18b61839c9
commit 1fe3408089
2 changed files with 9 additions and 0 deletions

View file

@ -644,6 +644,11 @@ goback() -- go to the previous scene.
back() -- go to the previous scene. In case of returning from dialog to room, dsc/enter/entered methods of room will not be called. Use in dialogs.
goin(room) -- go to scene, do not call exit/left of current scene;
goout() -- go to previous scene, do not call enter/entered of previous scene;
time() — returns the current game time in player's moves.
cat(...) — returns the string, concatenating argument strings. If the first argument is nil returns nil.

View file

@ -643,6 +643,10 @@ goback() -- возвращается из сцены в прошлую.
back() -- возвращается из сцены в прошлую. Если это переход из диалога в комнату, то не вызываются: dsc, enter, entered у комнаты. exit/left диалога вызываются. В других случаях аналогична goback.
goin(комната) -- перейти в сцену, при этом exit/left текущей комнаты не вызывается;
goout() -- вернуться в прошлую сцену, при этом enter/entered этой сцены не вызовется;
time() -- возвращает текущее время игры. Время игры считается в активных действиях.
cat(...) -- возвращает строку -- склейку строк-аргументов. Если первый аргумент nil, то функция возвращает nil.