Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7

Ламбер (ndw)

тут можно задать вопрос по скриптингу
Post Reply
Nightwolf
Neophyte
Neophyte
Posts: 22
Joined: 29.11.2005 18:27
Location: Одесса
Contact:

Ламбер (ndw)

Post by Nightwolf »

Помогите разобраться.
У меня проблема со скриптом на ламбер. Перепробывал все :(

Code: Select all

Program LumberJacking;
type LumberR = record
tile:word;
px,py,pz:integer;
end;
Var LumberP: array of LumberR;
logCol : Array [0..16] of Word;
a,d,e : byte;
ItemCount,b:Integer;
MinLogCol: word;
Const
// ==========================Настройки скрипта====================================
nearX = 0000;  // Координаты на берегу, откуда запрыгивает на лодку, X
nearY = 000;  // координата Y
onboadx = 0000;  // Координаты на лодке, куда попадает после запрыгивания, X
onboady = 000;  // координата Y
Trap = $6962B8DB; // ID трапа лодки
maxweight = 300; // Максимальный вес с которым может бегать, если превысит то скидывает баласт на землю
MinLog=0;  // Минимальный уровень леса, которой будет носить на лодку, остальное скидывает после рубки
NeedWeight=200;  // Набрав этот вес пойдет разгружаться на лодку
// ================================================================================

maxfood=10;
logType = $1BDD;
AxeType = $0F43;
AxeGump = '3907';
TinkGump = '7865';
eda = $097B;
onboadz = -2;
Tinktype = $1EB9;
CopperType = $1BF2;

{$Include 'all.inc'}

procedure CheckDead;
var SayTimer : Cardinal;
begin
SayTimer := 0;
WaitConnection(3000);
CheckSave;
if Dead then


begin
SetWarMode(true);
WaitGump('1');
wait(2000);
while (Dead) do
   begin
   //uosay('.forgivethee')
   WaitGump('1');
   if Timer > (SayTimer + (5 * 60 * 1000)) then
       begin
       UOSay('.c I''m was killed');
       SayTimer := Timer;
       SetWarMode(true);
       end;
   Wait (1000);
   end;
WaitConnection(3000);
CheckSave;
CheckTargetError(5, 2);
WaitConnection(3000);
CheckSave;
Hungry(1,ground);
end
end;

Procedure GetLumberTiles(s:String;WPos:Integer);
begin
s := s + ' ';
LumberP[WPos].tile:=StrToInt(Copy(s,1,Pos(' ',s)-1));
Delete(s,1,Pos(' ',s));
LumberP[WPos].px:=StrToInt(Copy(s,1,Pos(' ',s)-1));
Delete(s,1,Pos(' ',s));
LumberP[WPos].py:=StrToInt(Copy(s,1,Pos(' ',s)-1));
Delete(s,1,Pos(' ',s));
LumberP[WPos].pz:=StrToInt(Copy(s,1,Pos(' ',s)-1));
Delete(s,1,Pos(' ',s));
end;

Procedure GetCoord;
var
List:TStringList;
b:integer;
begin
List:=TStringList.Create;
List.LoadFromFile('ttt.txt');
for b := 0 to List.Count-1 do
begin
 setArrayLength(LumberP, getArrayLength(LumberP) + 1);
 GetLumberTiles(List.strings[b],b);
end;
ItemCount:=b;
end;

procedure hodilka(x,y,prec : integer; runflag : boolean);
// x,y - координаты, в которые идем
// prec - точность подхода
// runflag - бежать или идти
// v. 1.04 (с) Edred, скрипт портирован с инжекта
// оригинальная версия Yoko с доработкой AGRS и Edred.
var ld, ldc, dx, dy, mx, my, t : Integer;
begin
checkdead(false);
ld := 0;   ldc := 0;   d := 0;     e := 2; t:=0;
AddToSystemJournal('... и тут Остапа понеслооо');
  while true do
     begin
      CheckSave;
      dx := GetX(self) - x; if dx < 0 then dx := 0 - dx;
      dy := GetY(self) - y; if dy < 0 then dy := 0 - dy;
      if dy > dx then dx := dy;
      if dx <= prec then exit;
      mx := GetX(self); my := GetY(self);
      dx := mx - x; if dx < 0 then dx := 0 - dx;
      dy := my - y; if dy < 0 then dy := 0 - dy;
      if dy > dx then dx := dy;
      if dx <= prec then exit;
      if ld = dx then begin
         ldc := ldc + 1;
        if ldc > 4 then begin
   checkdead(false);
          addtosystemjournal( 'Пытаюсь добраться по координатам...' );
   t:=t+1;
          a := 0
   if (t>=10) then
 begin
  addtosystemjournal('Не удалось добраться по координатам, прерываю ходилку...');
  Exit;    
 end;
          repeat
          Raw_Move(d,runflag);
          a := a+1
          until a = e
          d := d + 2;
          If d = 8 then d:=0 e:= e+1 ldc :=0
           end;
      end
      else ld := dx;
      waitconnection(5000);
      if mx = x then begin
         if my = y then exit;
         // North
         if my > y then begin Raw_Move(0,runflag); continue; end;
         // South
         Raw_Move(4,runflag); continue;
      end;
      if mx < x then begin
         // Northeast
         if my > y then begin Raw_Move(1,runflag); continue; end;
         // East
         if my = y then begin Raw_Move(2,runflag); continue; end;
         // Southeast
         Raw_Move(3,runflag); continue;
      end;
      // Southwest
      if my < y then begin Raw_Move(5,runflag); continue; end;
      // West
      if my = y then begin Raw_Move(6,runflag); continue; end;
      // Nortwest
      Raw_Move(7,runflag); continue;
   end;
end;

procedure checkcoord;
begin
CheckSave;
checkdead(false);
if (GetZ(self) = OnBoadZ) then
begin
repeat
 AddToSystemJournal('Подхожу к трапу...')
 hodilka(OnBoadX,OnBoadY,0, true);
 wait(3000);
 UseObject(Trap);
 wait(2000);
 hodilka(nearX,nearY,0, true);
until (GetX(self) = nearX) and (GetY(self) = nearY);
AddToSystemJournal('Сошел на берег успешно!');
end;
end;

procedure CheckAxe;
var food: integer;
Begin
AddToSystemJournal('Проверяю инструменты...');
if (count($097B)<maxfood) then
repeat
food:=count ($097B);
WaitConnection(3000);
CheckSave;
FindType($097B,ground);
if finditem=0 then continue;
if (findquantity>(maxfood-food)) then grab (finditem, maxfood-food) else grab (finditem, 0);
wait (1000);
AddToSystemJournal('Подкинул '+inttostr(count ($097B)-food)+' еды в бэкпак');
until (countground($097B)=0) or (count($097B)>maxfood-1)
if (Count(AxeType) < 2) then
begin
begin
FindType(Tinktype,ground);
if FindCount < 2 then
begin
UseObject(FindType(TinkType,ground));
WaitTargetobject(findtype(CopperType,ground));
WaitGump(TinkGump)
wait(500);
WaitJournalLine(Now, 'You create|destroy|You put', 30000);
Drophere(FindType(TinkType,backpack));
end
else
begin
repeat
WaitConnection(3000);
CheckSave;
checkdead(false);
FindType(CopperType,ground);
if FindCount > 0 then
begin
UseObject(FindType(TinkType,ground));
WaitTargetobject(findtype(CopperType,ground));
WaitGump(AxeGump);
wait(500);
WaitJournalLine(Now, 'You create|destroy|You put', 30000);

end
else
begin
AddToSystemJournal('Не могу найти руду, чтобы сделать топоров!');
FullDisconnect;
end
until Count(AxeType) >= 2
end

end

FindType(TinkType,ground);
Addtosystemjournal('Тулзов на земле '+intToStr(findfullquantity)+'!');
FindType(CopperType,ground);
Addtosystemjournal('Металла на земле '+intToStr(findfullquantity)+'!');
end
End;

procedure DropLog;
var g : integer;
Begin
finddistance := 1;
CheckSave;
AddToSystemJournal('Скидываю дерево на лодку...');
for g := 0 to 16 do
begin
checkdead(false);
CheckSave;
FindTypeEx(logType,logCol[g],backpack,true);
if FindCount > 0 then
begin
stack(logType,logCol[g]);
wait(2000);
end
end
findtype (eda,ground);
Addtosystemjournal('Еды на земле '+intToStr(findfullquantity)+'');
hungry (1,ground);
End;

procedure GotoOnBoad;
{Возврат к лодке}
Begin
CheckSave;
checkdead(false);
repeat
hodilka( nearX, nearY, 0,true);
UseObject(Trap);
wait(1000);
until (GetX(self) = OnBoadX) and (GetY(self) = OnBoadY);
End;

procedure CheckEquip;
{Проверка экипировки}
Var EquipAxe : Cardinal;
Begin
AddToSystemJournal('Проверяю топор...');
if GetType(ObjAtLayer(RhandLayer)) <> AxeType then
  begin
   Disarm;
   wait(1000);
   FindType(AxeType, backpack);
   if findCount < 2 then
    begin
    AddToSystemJournal('Нужен топор, иду на лодку.');
    GotoOnBoad;
    CheckAxe;
    end
     else
    begin
    EquipAxe := finditem;
    Equip(RhandLayer, EquipAxe);
    wait(2000);
    end
   end
checkdead(false);
End;

procedure CleanPack;
var g : integer;
Begin
finddistance := 1;
CheckSave;
AddToSystemJournal('Скидываю лишнее дерево...');
for g := 0 to MinLog-1 do
begin
checkdead(false);
CheckSave;
FindTypeEx(logType,logCol[g],backpack,true);
if FindCount > 0 then
begin
 DropHere(finditem);
 wait(500);
end
end
End;

Procedure Lumber(tile:Word;x,y,z:Integer);
{Рубка дерева}
begin
CheckEquip;
WaitTargetTile(tile,x,y,z);
UseObject(ObjAtLayer(LhandLayer));
AddToSystemJournal('Топор есть, рублю дерево...');
WaitJournalLine(now,'enough|how to use|broke|stop|can''t see|far away', 60000);
End;

procedure checkweight;
var dw: integer;
{Проверка веса}
begin
hungry (1, backpack);
if (Weight > NeedWeight) then  
begin
AddToSystemJournal('Загружен по полной, пора выгружаться');
dw:=Weight - MaxWeight;
if (dw>2)  then
begin
 AddToSystemJournal('Скидываю баласт в '+IntToStr(dw/2)+' бревен и иду на лодку.');
 FindTypeEx(logType,MinLogCol,backpack,true);
 DragItem(finditem, dw/2);
 wait (1000);
 DropItem(Ground, GetX(self), GetY(self), GetZ(self)); 
 wait (1000);
end
GotoOnBoad;
DropLog;
CheckAxe;
Checkcoord;
end
end;

{Инициализация скрипта}
BEGIN
SetArStatus(true);
getcoord;
ClearJournal;
findvertical:=255;
logCol[0] := $0000; // normum
logCol[1] := $0362; // jade
logCol[2] := $010D; // oak
logCol[3] := $0094; // karund
logCol[4] := $01B0; // leshram
logCol[5] := $01A2; // turmalit
logCol[6] := $0026; // emerint
logCol[7] := $00CB; // legrand
logCol[8] := $094A; // solmur
logCol[9] := $092B; // kleor
logCol[10] := $0931; // logradum
logCol[11] := $093F; // vialonit
logCol[12] := $0074; // stardust
logCol[13] := $09EF; // pironil
logCol[14] := $006F; // mystic
logCol[15] := $0119; // elvin
logCol[16] := $000B; // elkris
MinLogCol:=logCol[MinLog];
AddToSystemJournal('----===Скрипт запущен===----');
While (not Dead) do
begin
for b :=0 to ItemCount-1 do
begin
WaitConnection(3000);
CheckSave;
CheckDead(false);
CheckCoord;
CleanPack;
CheckWeight;
 Addtosystemjournal('Иду в точку '+intToStr(LumberP[b].px)+', '+intToStr(LumberP[b].py)+' к дереву номер '+intToStr(b)+'.');
 hodilka(LumberP[b].px,LumberP[b].py,1,true);
 Addtosystemjournal('Дошел к дереву номер '+intToStr(b)+'.');
 Lumber(LumberP[b].tile,LumberP[b].px,LumberP[b].py,LumberP[b].pz);
end
end
end.

значит, сначала у мну выбивало ошибку типа не видит чекдеад, я вписал в скрипт эту переменную, начало выбивать ошибку с фулдисконнектом, тобишь в инклюдах проблема. прописал в АЛЛ,инк. фулдисконнект стакчек и чекдеад - фанарь, выбивает ошибку:
19:21:23 [Therion]: Compiling
19:21:23 [Therion]: Compiler: [Error] (iLumber.txt at 105:17): Invalid number of parameters
19:21:23 [Therion]: Compiling failed
19:21:23 [Therion]: Script iLumber.txt stoped successfuly
там вроде бы 2 раза переменная чекдеад в скрипте, не знаю так ли должно быть.. подскажите пожалуйста ..
В моём доме буит играть музыка, но я её не услышу %(
DismalZ
Neophyte
Neophyte
Posts: 13
Joined: 09.10.2008 16:10

Post by DismalZ »

Попробуй заменить checkdead(false); на checkdead; :wink:
Nightwolf
Neophyte
Neophyte
Posts: 22
Joined: 29.11.2005 18:27
Location: Одесса
Contact:

Post by Nightwolf »

тот же скрипт, теперь ошибку выбивает:

Code: Select all

21:58:16 [Therion]: Compiler: [Error] (lamberjacking.txt at 92:32):  Semicolon (';') expected
В моём доме буит играть музыка, но я её не услышу %(
Edred
Moderator
Moderator
Posts: 559
Joined: 28.03.2006 21:29

Post by Edred »

Надо учиться разбираться, что же стелс при компиляции говорит. А ничего ведь сложного нет: говорит он вполне конкретно. А именно - в 92 строке, в позиции 32 он ожидал встретить точку с запятой, но ее там не было.

Если не можешь сам исправить - при вопросах указывай, какая строка в твоем скрипте 92-ая. Считать строки за тебя никто не будет.
Nightwolf
Neophyte
Neophyte
Posts: 22
Joined: 29.11.2005 18:27
Location: Одесса
Contact:

Post by Nightwolf »

Понял, сорри.

Code: Select all

          If d = 8 then d:=0 e:= e+1 ldc :=0
Вот эта строка
В моём доме буит играть музыка, но я её не услышу %(
Edred
Moderator
Moderator
Posts: 559
Joined: 28.03.2006 21:29

Post by Edred »

Может быть так:

Code: Select all

If d = 8 then begin d:=0; e:= e+1; ldc :=0; end;
Логику не проверяю, только синтаксис.
Post Reply