This is an old revision of the document!
—-
A: Nájdite riadok v data/scripts/game.script ktorý začína s Game.ChangeScene. Zmeňte tento riadok tak, aby sa zhodo val so správnou scénou.
A: Je to najviac pravdepodobne, že je to problém s cestou k súboru. Pamätaj, že mali by ste používať relatívnu cestu k balíku (package). Teda ak máš napríklad vo WME demo
balík s názvom data, vynecháš data v ceste. Takže v deme máš Game.ChangeScene("scenes\room\room.scene"); a nie
Game.ChangeScene("data\scenes\room\room.scene");
Ďalší problém môže nastať vtedy, keď sa presúvajú scény do alebo z včlenených priečinkoch. Musíte skontrolovať súbor so scénou pre presunutú scénu a okrem toho zo správnych ciest, dvakrát pozor na to, že či sa $EDITOR_PROJECT_ROOT_DIR$ skutočne vymieňa za koreňový priečinok.
Taktiež je dôležite vedieť, že všetok gfx, hudba atď. musia byť vo vašom projektovom priečinku inak sa to neskompiluje do balíkov.
A: Normally would have been sufficient to set Game.InventoryVisible = false; but WME demo has a sliding inventory, so we would need a bit more for that.
Go into data/scripts/game_daemon.script file to the line which reads
if(Game.Interactive && Game.MouseY < 45 &&! Game.ResponsesVisible &&! WinMenu.Visible) Game.InventoryVisible = true;
and change it to
if(Game.Interactive && Game.MouseY < 45 &&! Game.ResponsesVisible &&! WinMenu.Visible && InventoryActive) Game.InventoryVisible = true;
Add into data/scripts/base.inc line global InventoryActive; and finally in data/scripts/game.script insert at the begining line InventoryActive = true;
From now on you can easily enable / disable inventory setting global variable InventoryActive in your scene_init.script files.
A: Simply put | to the place you want to have the line wrapped.
Example:
TXT000001[TAB]Hi, I would like to speak with you about | somereallystrangeandincomprehensible thing.
A: If you need to assign your localised string to some variable, you have to call Game.ExpandString() function.
So Example:
var txt = Game.ExpandString("/TXT000001/"); Game.Msg(txt);
A: WME has a great capability to play automatically voice files associated with your string.tab key. There are a few catches
you need to avoid though.
First you must tell WME where those speech files are located (by default it looks into speech directory).
this can be done through for example:
Game.AddSpeechDir("Town");
Your sound files should be named according to your keys in the string.tab file so for example if your line there reads
TOWN0010001 Hi, my name is Armitage!
your sound file will be named town0010001.ogg
Last thing which can happen to you is that if you use any extended properties of Talk, you must simply supply null as the second parameter. So for example more complex line can read:
actor.Talk("/TOWN0010001/", null, 0, "", this.talign);
(where this.talign is a variable storing the alignment of your text)
A:
pre " použi ~"
pre nový riadok použi ~n
actor.Talk("Ahoj ~"neznáma~" osoba.~nAko sa máte?");
Výstup bude takýto:
Ahoj "neznáma" osoba.
Ako sa máte?
A:
Thanks to dot notation limitation to one level, you have to trick this through temporary variable. Here's the example:
file Arrayclass.script?
#include "scripts\base.inc" this.Field = new Array(10); method SetNumber(position,number) { var tmp = this.Field; tmp[position] = number; this.Field = tmp; }