Page 1 of 1

SAIL - WantDismantle

Posted: Tue Nov 03, 2015 10:15 pm
by zoNE
Serpent wrote:Na prośbę Marta napisałem funkcję która zwraca prawdę jeśli jednostka (unit) chce rozmontować budynek (building).

Code: Select all

Export Function WantDismantle(unit, building);
var x, y;
begin
x := GetX(building);
y := GetY(building);

     if GetTaskList(unit) then
        begin
        if 'Y' = GetTaskList(unit)[1][1] and
             x = GetTaskList(unit)[1][2] and
             y = GetTaskList(unit)[1][3] then
           result := true
            else
             result := false;
        end
         else
          result := false;
End;
Użycie:

Code: Select all

// ...
if WantDismantle(eng1, magazyn) then
   // akcja..
// ...
Author: Serpent
Topic: https://forum.original-war.net/viewtopi ... =42&t=4543