Simba Code:function findvoidknight : boolean;
var
tp : TPoint;
annpc : TNPCArray;
i, x, y : integer;
begin
annpc := GetNPCs;
annpc := SortNPCs(annpc);
if length(annpc) < 1 then
begin
writeln('could not find void knight');
exit;
end;
writeln(length(annpc)); //results 13
for i := 0 to high(annpc) do //never gets past i = 0
begin
if not (annpc[i].Name = 'Void Knight') then //access violation
continue;
me nor #srl figured it out, so what am i doing wrong?![]()





Reply With Quote













