Goto http://www.stucuk.netGoto http://www.atlanticaonlinewiki.comGoto http://www.game-requirements.com

Querys/es

From Original War Support Wiki

Jump to: navigation, search


Intro

Los Querys (interrogantes) son cuando Original War le pide al jugador elegir una opción. Por ejemplo: en la misión 1 de la campaña americana, se pregunta si uno entrará al EON en una ventana con varias opciones (estilo multiple-choice). Eso es un query. Los querys se logran en dos instancias. Primero se necesita configurar la pregunta en el archivo Text.txt del directorio maps. Por ej;


? Q1
Entrarás al EON?
- Si
- No
?

Secundariamente, es necesario codificar en SAIL el activar el query y obtener el resultado.


Case Query("Q1") of
 1 : begin
  // Si
 end;
 2: begin
  // No
 end;
end;

Es recomendable utilizar un case cuando se usa un query. De forma alternativa se lo puede hacer de la siguiente forma:


if Query("Q1") = 1 then
 // Si
Else
 // No
;
Personal tools
Clanbase
This is a cached copy of the requested page, and may not be up to date.

Sorry! This site is experiencing technical difficulties.
Try waiting a few minutes and reloading.

(Can't contact the database server: MySQL functions missing, have you compiled PHP with the --with-mysql option? )


You can try searching via Google in the meantime.
Note that their indexes of our content may be out of date.