Hey,
I am trying to make a basic power cutter as my first script. I have looked everywhere to try and find out how to drop the wood after it is cut.
Any help would be greatly appreciated.
Hey,
I am trying to make a basic power cutter as my first script. I have looked everywhere to try and find out how to drop the wood after it is cut.
Any help would be greatly appreciated.
scar Code:procedure DropItem(i: Integer);
By: Lorax
Description:
Drops item at given position (1-28)
EDIT
Or
scar Code:procedure DropAll;
By: Lorax
Description:
Drops all items
Is there a guide that explains how to make a procedure work after you put in the script. So it will look like
procedure DropItem;
begin
end;
Now how do you figure out what to put in between begin and end for each different procedure?
personally id use DTMs for dropping its better and itll teach u DTM that what i used on my revision of my first script noobpowerminer and now i can use dtms for almost anything
you can simple check if the item exists in that inv slot, then mmouse over it, check the uptext and if it's uptext is 'og' then dropitem(). Would look something like this
SCAR Code:for i := 1 to 28 do
begin
if itemexist(i) then
begin
MMouseItem(i);
...
end;
end;


I don't like things to be too fast. Sometimes I find that things are that fast that they don't look very human-like.
<3
Originally Posted by Eminem
There are currently 1 users browsing this thread. (0 members and 1 guests)