Hello. Really sorry for such a noob question. I have copied the part of the script that im having trouble filling out. my main concern is adding what ore I am going to mine also weather pick is in inventory. Also if anyone knows of any guides on this subject that would be great.
line27 ore_iron = 0;
line 28 ore_copper = 1;
line 29 ore_tin = 2;
Procedure DeclarePlayers;
Begin
HowManyPlayers := 1;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;
Players[0].Name := ''; // ***Username***
Players[0].Pass := ''; // ***PW***
Players[0].Nick := ''; // ***Portion of display name, IMPORTANT FOR RANDOMS***
Players[0].LampSkill := SKILL_MINING;
39 Players[0].Integers[0] := ore_iron; // ore to mine
40 Players[0].Integers[1] := 10; //load limit
41 Players[0].Booleans[0] := true; //is pick in inventory
42 Players[0].Booleans[1] := true; //would you like to powermine?
Players[0].Active := True;
so basically the lines I numbered are the ones I don't know how to fill out or what there for.


Reply With Quote





