Posts: 168
Threads: 57
Joined: Oct 2009
Reputation:
0
Hello
How to do woodcutter job this way:
When i go next to tree, i use a command, and after writing command, the tree object destroys and there will be object of stump. After 5min. the stump object destroys and at the same place will be object of tree.
Posts: 801
Threads: 29
Joined: May 2012
Reputation:
0
I didn't understand anything.
Posts: 1,177
Threads: 27
Joined: Sep 2011
Reputation:
0
Well first you need an array containing the position of every single tree on the map, which will take you a very long time to obtain.
Posts: 168
Threads: 57
Joined: Oct 2009
Reputation:
0
At first i can take only 5 trees and mark these with checkpoint. But i am intrested in system. How to do it?
Posts: 190
Threads: 17
Joined: Jul 2010
Reputation:
0
Create the trees yourself ( map them ) attach them to a variable new Trees[Your_Amount_Of_Trees];
Trees[0] = CreateObject(...);
IsPlayerInRangeOfPoint(...);
DestroyObject(Trees[0]);
I hope that gives you an idea
Posts: 801
Threads: 29
Joined: May 2012
Reputation:
0
There is an animation of CJ cutting the trees?
If yes, You might use it.
Posts: 168
Threads: 57
Joined: Oct 2009
Reputation:
0
Any very good scripters here?