05.02.2016, 06:20
PHP код:
//This will allow you to change the max weed plants easier if your community is crying because they can only plant 10.
#define MAX_WEED_PLANTS 10
new WeedPlants[MAX_PLAYERS][MAX_WEED_PLANTS];
for(new plant = 0; plant < MAX_WEED_PLANTS ; plant++)
{
if(WeedPlants[playerid][plant] == INVALID_OBJECT_ID)return plant;
//will return the next free slot
}