» TeamX (����� ������)«


����� TeamX » ���. ��������� » ������ � ��� ��� ����... (...)

������� �� �����
<< ����. ����. >>
�������� ���� ���� [ 1 2 ] ��� ��������

 
Akkella
������������

�����������: ���. 2006

�����: 175 ���������

Wasteland Ghost
������:
1. �� ��������� �������� ��������� �� ������� � ���������� ����.

������?
������ ���� ��� ������ (���� ���������� �� �����):

procedure description_p_proc
begin
variable i;
variable ptr;
script_overrides;
i:= critter_inven_obj(dude_obj, -2)-3;
while i< critter_inven_obj(dude_obj, -2) do begin
ptr:=inven_cmds(dude_obj,13,i);
i+=1;
display_msg(obj_name(ptr));
end
end

�� �������� ��������� � ��������� �� ����� � ��������� �� ��� ����. �� � �������� ����� �� ��� �������� ���� �������.
�������� ������������ �� ����� ��������... ��� ����� � � ��������� ��� �������... ���� � ���������...

����������: 21:21 - 31 ���., 2006 | ����������: Akkella - 21:22 - 31 ���., 2006
Ray
���������

������: ������,�������
�����������: ���. 2004

�����: 746 ���������

��. � ��� ������������� �������. �� ���, ��� ���� ��� ���������?

P.S. ���� �������� ��� ����� ��������...

-----
�� ������ ����������� ����� � ������ ���� �������.

����������: 22:52 - 31 ���., 2006
binyan
������������

������: Israel
�����������: ���� 2005

�����: 292 ���������

���������, � ��� �� ��� "���� �������"? ��� ������, ����� �� ��� ��������?

-----
...������� �������������, ���������� � ��������������..

����������: 23:11 - 31 ���., 2006
Wasteland Ghost
��������� ���� ����������

������: ������, ������
�����������: ���. 2002

�����: 2251 ���������

������:
�� �������� ��������� � ��������� �� ����� � ��������� �� ��� ����.

�� ���� ��� ������ ��������� �� ��� ������� � ��������� �� �������. ��� �� ������ �������� ��� ����� ������ ���������? ������� � ���, ��� ���� � ���� ���� �������, �� ���� ��� ���� �� �������, �� critter_inven_obj ������ ����.
������:
�� � �������� ����� �� ��� �������� ���� �������.

������ "�", ������ "�". ������� ��� - � ������.

����������: 13:18 - 1 ������, 2006
Akkella
������������

�����������: ���. 2006

�����: 175 ���������

������� ������ ����� � ���������:

procedure description_p_proc
begin
variable lh;
variable rh;
variable br;
variable ah;
script_overrides;
lh:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-3);
rh:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-2);
br:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-1);
ah := critter_inven_obj(dude_obj, 1);
ah := critter_inven_obj(dude_obj, 2);
if ah!=lh then ah := rh;
display_msg(obj_name(lh));
display_msg(obj_name(rh));
display_msg(obj_name(br));
display_msg(obj_name(ah));
end

��� ��������� �������� ��������� �� �����, ������ � ����� ���� � ����� �� ��� ��������.
��������� �����.
������� �� ���� � �������, ��� ��� �������� (������� �� �������� � ���� ����)

����������: 18:43 - 1 ������, 2006 | ����������: Akkella - 18:43 - 1 ������, 2006
Alchemist
���������

������: �������-17
�����������: ���. 2004

�����: 298 ���������

procedure description_p_proc
begin
variable lh;
variable rh;
variable br;
variable a1h;
variable a2h;
variable ah;

script_overrides;

lh:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-3);
rh:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-2);
br:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-1);

ah:= "Indeterminate";
a1h := critter_inven_obj(dude_obj, 1);
a2h := critter_inven_obj(dude_obj, 2);

if (a1h or a2h) then begin
if ((a1h == rh) or (a2h == rh)) then begin
ah := "Right";
end
else begin
ah := "Left";
end

if ((a2h == lh) or (a1h == lh)) then begin
ah := "Left";
end
else begin
ah := "Right";
end
end

display_msg("(-3): " + obj_name(lh));
display_msg("(-2): " + obj_name(rh));
display_msg("(-1): " + obj_name(br));
display_msg("Active: " + ah);
end

� ������� ������������� ��� ��� �����������. ��� �����, �� ������ �� ���������� ����, ����� �������� �����, � ������ �����, ����� �������� ���� �������. ������ ���, � ��������� ������, ��� ���������, ���������� ����� critter_inven_obj(dude_obj, x) ����� NULL � ��� ��������� ����������.
� �������� ������ ���������, ���������� ����� inven_cmds(dude_obj, 13, critter_inven_obj(dude_obj, -2), x), �� ��������� ���� ������, ����� �� � ������ ������ �������� � ���� ��� �� ��������� � "��������".

-----
/// What'ya be sain'? Vault 100+? We need nothing o'that!

����������: 21:04 - 1 ������, 2006
Akkella
������������

�����������: ���. 2006

�����: 175 ���������

��. ������, ���� ������ � �� ����...
�������������, �������� ������ � ������� �������� �����...
�� ������ ��������, ���� ������ ���� ����� � ����� �������� ����, �� ����� ����������� �������...

����������: 21:19 - 1 ������, 2006
Alchemist
���������

������: �������-17
�����������: ���. 2004

�����: 298 ���������

������:
�� ������ ��������, ���� ������ ���� ����� � ����� �������� ����, �� ����� ����������� �������...


lh:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-3);
rh:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-2);
br:= inven_cmds(dude_obj,13,critter_inven_obj(dude_obj, -2)-1);

��� ��������� ����������, ���� ����� ����, ��� ����� � ���������� ��� ������ � "�������". �, ��� �������� ���� �����, ������� ����� �� � ���������� ���� ���� �� ��������� ��� ���, �� �� �������� �� �����.

-----
/// What'ya be sain'? Vault 100+? We need nothing o'that!

����������: 21:42 - 1 ������, 2006
Wasteland Ghost
��������� ���� ����������

������: ������, ������
�����������: ���. 2002

�����: 2251 ���������

���. �������� �� ���� � � ��������. ��� �� �����, �� ��������������� ���� ������� �������� � ���������� ���� ���������� ����������. � ������� ������� �� ��������� ��������� - ��. �� ������� ������� ���.

����������: 13:51 - 3 ������, 2006
 

������� �� �����
<< ����. ����. >>
�������� ���� ���� [ 1 2 ] ��� ��������


Powered by Ikonboard 2.1.9 RUS
Modified by RU.Board Team
© 2000 Ikonboard.com