23.10.2012, 03:34
There is no CJ Cutting the trees animation.
Well first off all, create an enum for woodcutter job
like this
then to check if player is not wood cutter do this
for the trees.
You've to create them one by one around the san andreas.
You see you need to be patience for awhile when doing a system like this.
Well first off all, create an enum for woodcutter job
like this
PHP Code:
enum MyEnum
{
WoodCutter
};
new Cutter[MAX_PLAYERS][MyEnum];
PHP Code:
if(Cutter[playerid][WoodCutter] != 1) return SendClientMessage(playerid, -1, "GTFO");
You've to create them one by one around the san andreas.
You see you need to be patience for awhile when doing a system like this.