
Originally Posted by
Sir R. M8gic1an
I suspect one of the hardesst parts we the actual moving around and remembering where each resource is. You'd need to make a live mapping resource / function to be able to run in there and know where each of the resources is.
-RM
If using SPS it wouldn't be too hard.
When you find a ressource, call SPS_getmypos; and store it in a type like this:
Simba Code:
type
ressource = record
ressourceType: Integer; // The type, hunter, fishing, woodcut? etc
level: Integer; // The level required to harvest the ressource
depleated: Boolean; // True if the ressource is empty
location: Tpoint; // The location of the ressource
end;
then store it in an array. Bam, a list of the ressource you find.
But yeah making the whole script would be hard.