Thread: Farming Process

Results 1 to 7 of 7
  1. #1 Farming Process 
    Registered Member

    Join Date
    Jan 2014
    Posts
    376
    Thanks given
    49
    Thanks received
    111
    Rep Power
    106
    Most frameworks don't have farming implemented quite right, so I though I'd post some of the stuff I've found out about the actual farming system from various sources. Hopefully it will help those who are developing farming systems. This is based off ids from RS3, though many will still apply for older revisions.

    Variables
    Each farming patch is associated with two different varbits: one which tracks the current status of the patch, the other which tracks whether compost has been applied (and which sort of compost). These two variables are the only things that need to be stored between farming interactions, and they are also stored along with the player save data. They are as follows:
    Spoiler for Patch Information:

    Format: locationType, statusVarbit, compostVarbit
    Tree patches:
    8388, 44, 95
    8389, 45, 96
    8390, 46, 97
    8391, 47, 98
    19147, 136, 137

    Fruit tree patches:
    7962, 48, 99
    7963, 49, 100
    7964, 50, 101
    7965, 51, 102
    28919, 140, 141

    Allotment patches:
    8550, 52, 103
    8551, 53, 104
    8552, 54, 105
    8553, 55, 106
    8554, 56, 107
    8555, 57, 108
    8556, 58, 109
    8557, 59, 110

    Hop patches:
    8173, 60, 111
    8174, 61, 112
    8175, 62, 113
    8176, 63, 114

    Spirit tree patches:
    8338, 64, 65
    8382, 66, 67
    8383, 68, 69

    Calquat patch:
    7807, 70, 71

    Flower patches:
    7847, 72, 115
    7848, 73, 116
    7849, 74, 117
    7850, 75, 118
    37988, 146, 147

    Bush patches:
    7577, 76, 119
    7578, 77, 120
    7579, 78, 121
    7580, 79, 122

    Fermenting vats:
    7494, 80
    7495, 81

    Fermenting barrels:
    7431, 82
    7432, 83

    Compost bins:
    7836, 84
    7837, 85
    7838, 86
    7839, 87

    Mushroom patches:
    8337, 90, 91

    Belladonna patches:
    7572, 92, 93

    Herb patches:
    8150, 124, 129
    8151, 125, 130
    8152, 126, 131
    8153, 127, 132
    18816, 133, 134


    Farming ticks
    This process is best explained by this thread on the RuneScape forums, but I will leave a brief explaination here and advice on how to implement it.
    About every 5 minutes following the player's login, a farming tick is run. This is where each patch is investigated by the server and it's status is changed, if need be. Most crops have a regular 5 minute window in which growth is processed. This window is attatched to the current server time so, for example, growth for potatoes will only run if the farming tick occurs between 12:00-12:05, 12:10-12:15, 12:20-12:25, etc. You can check whether the farming tick can be run using the calcuation:
    Code:
    canRun = ((getCurrentTimeInSeconds()/5*60) % tickType == 0);
    Where "tickType" is the type of farming tick for the crop (1=flower, 2=allotment, 4=herb, and so on).
    When a player logs in, the total amount of time since their last login is calculated. All the missed ticks are simulated using this, based on one every 5 minutes after their logout until they logged back in.

    Patch statuses
    This is mostly well understood already, but I'm including it for good measure.
    In almost all farming patches, statuses 0-3 are used for weeds, with 0 being fully grown and 3 being empty. The remaining statuses vary between patch types, but in general, there are 7 types of statuses used.
    For example, these are the statuses for potato crops:
    Code:
    plantStage : 6,
    wateredSeedling : 70,
    growthStages : [7, 8, 9],
    wateredStages : [71, 72, 73],
    diseaseStages : [135, 136, 137],
    deadStages : [199, 200, 201],
    harvestStages : [10, 11, 12]
    Upon planting, the patch is set to the plantStage. If watered, it is changed to the "wateredSeedling" stage. From either of these stages, the crop grows into the first growth stage (it cannot become diseased until the second growth cycle). If watered again, the crop shifts to the "wateredStage" with the same index as it's current state. When growing in any of the growthStages, the crop either falls into the diseasedStage with the matching index, moves to the next index in the growthStages, or moves to the first harvestStage (if it was in the final growthStage). If cured while diseased, the crop moves back to the growthStage with the same index as the diseasedStage (thus, if the crop becomes diseased, it will miss a growth cycle even if cured). If the crop is not cured, it will go to the deadStage of the same index.

    Herbs do not have watered stages, and while each herb type shares the same locations, they have different status codes for plant, growth, diseased, and harvest stages (they share the same dead stages, since there's no need to track the herb type if it's dead).

    Compost
    Applying compost is fairly simple. In the "Variables" section above, I mentioned that each patch has a varbit linked to it which tracks the compost status. When compost is applied, you should set this variable to 1 for normal compost or 2 for supercompost.

    Harvesting
    This is one area which most implementations don't seem to have quite right. Basically, when harvesting allotments, herbs, and hops, there are 3-5 "rolls" (3 if no compost has been applied, 4 with normal compost, and 5 with supercompost). Each time a player harvests an item from the patch, there is a chance that a "roll" will be used up (the exact chance depends on farming level, crop type, whether boosts are used, and possibly some other factors). When a roll is used up, the farming patch moves to the next harvestStage, and the status should be updated accordingly. If compost was applied, the compost variable should be decremented by one when a roll is used before changing the harvest stages. Once the last roll is used up (when the patch is on its last harvestStage), the patch is set as empty (status 3) and the player stops harvesting.

    If implemented this way, the player is guarenteed to get at least 3-5 items from the patch. Also, since using up rolls is tracked via the variable, players can safely click away and even log out without resetting the harvest counters (which is a possible issue if a temporary variable is used to track harvest progress).
     

  2. Thankful users:


  3. #2  
    Farming Process



    Scu11's Avatar
    Join Date
    Aug 2007
    Age
    30
    Posts
    16,307
    Thanks given
    7,215
    Thanks received
    12,308
    Rep Power
    5000
    Where has all this information about the random stuff in the varbits come from? The IDs an object (e.g. a farming patch) can transform into are in it's definition data.


    Example:

    Tree patch in Lumbridge, object ID 8391.

    Initially looks like:

    Attached image


    Let's convert it to a willow tree


    Spoiler for morphable IDs:
    Code:
    Object[8391]
    	varbit, 703
    
    	Morphable IDs:
    		[0]	8395	(Tree patch), 
    		[1]	8394	(Tree patch), 
    		[2]	8393	(Tree patch), 
    		[3]	8392	(Tree patch), 
    		[4]	8395	(Tree patch), 
    		[5]	8395	(Tree patch), 
    		[6]	8395	(Tree patch), 
    		[7]	8395	(Tree patch), 
    		[8]	8462	(Oak), 
    		[9]	8463	(Oak), 
    		[10]	8464	(Oak), 
    		[11]	8465	(Oak), 
    		[12]	8466	(Oak), 
    		[13]	8467	(Oak), 
    		[14]	8468	(Oak tree stump), 
    		[15]	8481	(Willow Tree), 
    		[16]	8482	(Willow Tree), 
    		[17]	8483	(Willow Tree), 
    		[18]	8484	(Willow Tree), 
    		[19]	8485	(Willow Tree), 
    		[20]	8486	(Willow Tree), 
    		[21]	8487	(Willow Tree), 
    		[22]	8488	(Willow Tree), 
    		[23]	8489	(Willow tree stump), 
    		[24]	8435	(Maple Tree), 
    		[25]	8436	(Maple Tree), 
    		[26]	8437	(Maple Tree), 
    		[27]	8438	(Maple Tree), 
    		[28]	8439	(Maple Tree), 
    		[29]	8440	(Maple Tree), 
    		[30]	8441	(Maple Tree), 
    		[31]	8442	(Maple Tree), 
    		[32]	8443	(Maple Tree), 
    		[33]	8444	(Maple Tree), 
    		[34]	8445	(Maple tree stump), 
    		[35]	8502	(Yew sapling), 
    		[36]	8503	(Yew tree), 
    		[37]	8504	(Yew tree), 
    		[38]	8505	(Yew tree), 
    		[39]	8506	(Yew tree), 
    		[40]	8507	(Yew tree), 
    		[41]	8508	(Yew tree), 
    		[42]	8509	(Yew tree), 
    		[43]	8510	(Yew tree), 
    		[44]	8511	(Yew tree), 
    		[45]	8512	(Yew tree), 
    		[46]	8513	(Yew tree), 
    		[47]	8514	(Yew tree stump), 
    		[48]	8396	(Magic Tree), 
    		[49]	8397	(Magic Tree), 
    		[50]	8398	(Magic Tree), 
    		[51]	8399	(Magic Tree), 
    		[52]	8400	(Magic Tree), 
    		[53]	8401	(Magic Tree), 
    		[54]	8402	(Magic Tree), 
    		[55]	8403	(Magic Tree), 
    		[56]	8404	(Magic Tree), 
    		[57]	8405	(Magic Tree), 
    		[58]	8406	(Magic Tree), 
    		[59]	8407	(Magic Tree), 
    		[60]	8408	(Magic Tree), 
    		[61]	8409	(Magic Tree), 
    		[62]	8410	(Magic Tree Stump), 
    		[63]	8395	(Tree patch), 
    		[64]	8395	(Tree patch), 
    		[65]	8395	(Tree patch), 
    		[66]	8395	(Tree patch), 
    		[67]	8395	(Tree patch), 
    		[68]	8395	(Tree patch), 
    		[69]	8395	(Tree patch), 
    		[70]	8395	(Tree patch), 
    		[71]	8395	(Tree patch), 
    		[72]	8395	(Tree patch), 
    		[73]	8473	(Diseased Oak), 
    		[74]	8474	(Diseased Oak), 
    		[75]	8475	(Diseased Oak), 
    		[76]	-1, 
    		[77]	8476	(Diseased Oak), 
    		[78]	8395	(Tree patch), 
    		[79]	8395	(Tree patch), 
    		[80]	8490	(Diseased Willow), 
    		[81]	8491	(Diseased Willow), 
    		[82]	8492	(Diseased Willow), 
    		[83]	8493	(Diseased Willow), 
    		[84]	8494	(Diseased Willow), 
    		[85]	-1, 
    		[86]	8495	(Diseased Willow), 
    		[87]	8395	(Tree patch), 
    		[88]	8395	(Tree patch), 
    		[89]	8446	(Diseased Maple), 
    		[90]	8447	(Diseased Maple), 
    		[91]	8448	(Diseased Maple), 
    		[92]	8449	(Diseased Maple), 
    		[93]	8450	(Diseased Maple), 
    		[94]	8451	(Diseased Maple), 
    		[95]	8452	(Diseased Maple), 
    		[96]	-1, 
    		[97]	8453	(Diseased Maple), 
    		[98]	8395	(Tree patch), 
    		[99]	8395	(Tree patch), 
    		[100]	8515	(Diseased Yew), 
    		[101]	8516	(Diseased Yew), 
    		[102]	8517	(Diseased Yew), 
    		[103]	8518	(Diseased Yew), 
    		[104]	8519	(Diseased Yew), 
    		[105]	8520	(Diseased Yew), 
    		[106]	8521	(Diseased Yew), 
    		[107]	8522	(Diseased Yew), 
    		[108]	8523	(Diseased Yew), 
    		[109]	-1, 
    		[110]	8524	(Diseased Yew), 
    		[111]	8395	(Tree patch), 
    		[112]	8395	(Tree patch), 
    		[113]	8411	(Diseased Magic Tree), 
    		[114]	8412	(Diseased Magic Tree), 
    		[115]	8413	(Diseased Magic Tree), 
    		[116]	8414	(Diseased Magic Tree), 
    		[117]	8415	(Diseased Magic Tree), 
    		[118]	8416	(Diseased Magic Tree), 
    		[119]	8417	(Diseased Magic Tree), 
    		[120]	8418	(Diseased Magic Tree), 
    		[121]	8419	(Diseased Magic Tree), 
    		[122]	8420	(Diseased Magic Tree), 
    		[123]	8421	(Diseased Magic Tree), 
    		[124]	-1, 
    		[125]	8422	(Diseased Magic Tree), 
    		[126]	8395	(Tree patch), 
    		[127]	8395	(Tree patch), 
    		[128]	8395	(Tree patch), 
    		[129]	8395	(Tree patch), 
    		[130]	8395	(Tree patch), 
    		[131]	8395	(Tree patch), 
    		[132]	8395	(Tree patch), 
    		[133]	8395	(Tree patch), 
    		[134]	8395	(Tree patch), 
    		[135]	8395	(Tree patch), 
    		[136]	8395	(Tree patch), 
    		[137]	8477	(Dead Oak), 
    		[138]	8478	(Dead Oak), 
    		[139]	8479	(Dead Oak), 
    		[140]	-1, 
    		[141]	8480	(Dead Oak), 
    		[142]	8395	(Tree patch), 
    		[143]	8395	(Tree patch), 
    		[144]	8496	(Dead Willow), 
    		[145]	8497	(Dead Willow), 
    		[146]	8498	(Dead Willow), 
    		[147]	8499	(Dead Willow), 
    		[148]	8500	(Dead Willow), 
    		[149]	-1, 
    		[150]	8501	(Dead Willow), 
    		[151]	8395	(Tree patch), 
    		[152]	8395	(Tree patch), 
    		[153]	8454	(Dead Maple), 
    		[154]	8455	(Dead Maple), 
    		[155]	8456	(Dead Maple), 
    		[156]	8457	(Dead Maple), 
    		[157]	8458	(Dead Maple), 
    		[158]	8459	(Dead Maple), 
    		[159]	8460	(Dead Maple), 
    		[160]	-1, 
    		[161]	8461	(Dead Maple), 
    		[162]	8395	(Tree patch), 
    		[163]	8395	(Tree patch), 
    		[164]	8525	(Dead Yew), 
    		[165]	8526	(Dead Yew), 
    		[166]	8527	(Dead Yew), 
    		[167]	8528	(Dead Yew), 
    		[168]	8529	(Dead Yew), 
    		[169]	8530	(Dead Yew), 
    		[170]	8531	(Dead Yew), 
    		[171]	8532	(Dead Yew), 
    		[172]	8533	(Dead Yew), 
    		[173]	-1, 
    		[174]	8534	(Dead Yew), 
    		[175]	8395	(Tree patch), 
    		[176]	8395	(Tree patch), 
    		[177]	8423	(Dead Magic Tree), 
    		[178]	8424	(Dead Magic Tree), 
    		[179]	8425	(Dead Magic Tree), 
    		[180]	8426	(Dead Magic Tree), 
    		[181]	8427	(Dead Magic Tree), 
    		[182]	8428	(Dead Magic Tree), 
    		[183]	8429	(Dead Magic Tree), 
    		[184]	8430	(Dead Magic Tree), 
    		[185]	8431	(Dead Magic Tree), 
    		[186]	8432	(Dead Magic Tree), 
    		[187]	8433	(Dead Magic Tree), 
    		[188]	-1, 
    		[189]	8434	(Dead Magic Tree), 
    		[190]	8314	(Mushroom patch), 
    		[191]	8395	(Tree patch), 
    		[192]	8488	(Willow Tree), 
    		[193]	8488	(Willow Tree), 
    		[194]	8488	(Willow Tree), 
    		[195]	8488	(Willow Tree), 
    		[196]	8488	(Willow Tree), 
    		[197]	8488	(Willow Tree), 
    		[198]	8395	(Tree patch), 
    		[199]	8395	(Tree patch), 
    		[200]	8395	(Tree patch), 
    		[201]	8395	(Tree patch), 
    		[202]	8395	(Tree patch), 
    		[203]	8395	(Tree patch), 
    		[204]	8395	(Tree patch), 
    		[205]	8395	(Tree patch), 
    		[206]	8395	(Tree patch), 
    		[207]	8395	(Tree patch), 
    		[208]	8395	(Tree patch), 
    		[209]	8395	(Tree patch), 
    		[210]	8395	(Tree patch), 
    		[211]	8395	(Tree patch), 
    		[212]	8395	(Tree patch), 
    		[213]	8395	(Tree patch), 
    		[214]	8395	(Tree patch), 
    		[215]	8395	(Tree patch), 
    		[216]	8395	(Tree patch), 
    		[217]	8395	(Tree patch), 
    		[218]	8395	(Tree patch), 
    		[219]	8395	(Tree patch), 
    		[220]	8395	(Tree patch), 
    		[221]	8395	(Tree patch), 
    		[222]	8395	(Tree patch), 
    		[223]	8395	(Tree patch), 
    		[224]	8395	(Tree patch), 
    		[225]	8395	(Tree patch), 
    		[226]	8395	(Tree patch), 
    		[227]	8395	(Tree patch), 
    		[228]	8395	(Tree patch), 
    		[229]	8395	(Tree patch), 
    		[230]	8395	(Tree patch), 
    		[231]	8395	(Tree patch), 
    		[232]	8395	(Tree patch), 
    		[233]	8395	(Tree patch), 
    		[234]	8395	(Tree patch), 
    		[235]	8395	(Tree patch), 
    		[236]	8395	(Tree patch), 
    		[237]	8395	(Tree patch), 
    		[238]	8395	(Tree patch), 
    		[239]	8395	(Tree patch), 
    		[240]	8395	(Tree patch), 
    		[241]	8395	(Tree patch), 
    		[242]	8395	(Tree patch), 
    		[243]	8395	(Tree patch), 
    		[244]	8395	(Tree patch), 
    		[245]	8395	(Tree patch), 
    		[246]	8395	(Tree patch), 
    		[247]	8395	(Tree patch), 
    		[248]	8395	(Tree patch), 
    		[249]	8395	(Tree patch), 
    		[250]	8395	(Tree patch), 
    		[251]	8395	(Tree patch), 
    		[252]	8395	(Tree patch), 
    		[253]	8395	(Tree patch), 
    		[254]	8395	(Tree patch), 
    		[255]	8395	(Tree patch), 
    		[256]	-1,


    Looking at this list we can see index 22 will change it to a willow tree (object id 8488)

    So send the varbit message with ID 703 and value 22, and this happens:

    Attached image
    Last edited by Scu11; 05-03-2015 at 12:39 PM.

    Attached image
     

  4. Thankful users:


  5. #3  


    Major's Avatar
    Join Date
    Jan 2011
    Posts
    2,997
    Thanks given
    1,293
    Thanks received
    3,556
    Rep Power
    5000
    The above definition for 317:

    Code:
    ObjectDefinition {
        Name=farming_tree_patch_4,
        Morphism Set { 
            bit variable=703,
            parameter variable=65535, 
            morphisms=[ 8395, 8394, 8393, 8392, 8395, 8395, 8395, 8395, 8462, 8463, 8464, 8465, 8466, 8467, 8468, 8481, 8482, 
                                  8483, 8484, 8485, 8486, 8487, 8488, 8489, 8435, 8436, 8437, 8438, 8439, 8440, 8441, 8442, 8443, 8444, 
                                  8445, 8502, 8503, 8504, 8505, 8506, 8507, 8508, 8509, 8510, 8511, 8512, 8513, 8514, 8396, 8397, 8398, 
                                  8399, 8400, 8401, 8402, 8403, 8404, 8405, 8406, 8407, 8408, 8409, 8410, 8395, 8395, 8395, 8395, 8395, 
                                  8395, 8395, 8395, 8395, 8395, 8473, 8474, 8475, 65535, 8476, 8395, 8395, 8490, 8491, 8492, 8493, 8494, 
                                  65535, 8495, 8395, 8395, 8446, 8447, 8448, 8449, 8450, 8451, 8452, 65535, 8453, 8395, 8395, 8515, 8516,
                                  8517, 8518, 8519, 8520, 8521, 8522, 8523, 65535, 8524, 8395, 8395, 8411, 8412, 8413, 8414, 8415, 8416,
                                  8417, 8418, 8419, 8420, 8421, 65535, 8422, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395,
                                  8395, 8477, 8478, 8479, 65535, 8480, 8395, 8395, 8496, 8497, 8498, 8499, 8500, 65535, 8501, 8395, 8395,
                                  8454, 8455, 8456, 8457, 8458, 8459, 8460, 65535, 8461, 8395, 8395, 8525, 8526, 8527, 8528, 8529, 8530, 
                                  8531, 8532, 8533, 65535, 8534, 8395, 8395, 8423, 8424, 8425, 8426, 8427, 8428, 8429, 8430, 8431, 8432, 
                                  8433, 65535, 8434, 8314, 8395, 8488, 8488, 8488, 8488, 8488, 8488, 8395, 8395, 8395, 8395, 8395, 8395, 
                                  8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 
                                  8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 
                                  8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395, 8395]
        },
        Width=3, 
        Length=3,
        Interactive=true, 
        Contour Ground=true,
    }
    Last edited by Major; 05-03-2015 at 12:48 PM.
     

  6. #4  
    Registered Member

    Join Date
    Jan 2014
    Posts
    376
    Thanks given
    49
    Thanks received
    111
    Rep Power
    106
    What I've referred to as "statuses" the client uses to transform the location into different variations, as you've specified. So by setting the varbit associated with an allotment to 6 (plant stage of a potato), the client will transform the location into a potato seeding. In the example given, the stuff in square brackets are the statuses I identify. So, if you want to identify the statuses for patches, you'll need to either use trial-and-error in setting variables or lookup the location configuration.

    From what I can tell, the value stored in varps (and hence varbits, since they alter parts of varps) are supposed to be stored on the server side and saved along with the player file, as well as sent to the client whenever their value changes so that the client knows to change (or morph) the locations they represent.

    Not sure if that answers your question, but I hope it helps.

    PS. When I refer to "locations", I mean what's been traditionally referred to as "objects".
     

  7. #5  
    Farming Process



    Scu11's Avatar
    Join Date
    Aug 2007
    Age
    30
    Posts
    16,307
    Thanks given
    7,215
    Thanks received
    12,308
    Rep Power
    5000
    Quote Originally Posted by Sundays211 View Post
    you'll need to either use trial-and-error in setting variables or lookup the location configuration.
    i don't see why you'd use the former when you have the list of morphables in the object's 'configuration'.

    From what I can tell, the value stored in varps (and hence varbits, since they alter parts of varps) are supposed to be stored on the server side and saved along with the player file, as well as sent to the client whenever their value changes so that the client knows to change (or morph) the locations they represent.
    yes, varps and varbits represent variables that may or may not be saved to the player's save file. other examples include prayer points and life points

    Not sure if that answers your question, but I hope it helps.
    the 'trial and error' thing answers where you got the random formula from, but doesnt answer my question as to why you arent using the actual list of morphable object ids that are in the objects definition, seems to make a ton more sense than 'trial and error'?

    Attached image
     

  8. #6  
    Registered Member

    Join Date
    Jan 2014
    Posts
    376
    Thanks given
    49
    Thanks received
    111
    Rep Power
    106
    Quote Originally Posted by Scu11 View Post
    the 'trial and error' thing answers where you got the random formula from, but doesnt answer my question as to why you arent using the actual list of morphable object ids that are in the objects definition, seems to make a ton more sense than 'trial and error'?
    Sorry, sounds like I haven't been all that clear. By "lookup the location configuration" I mean checking the morphs/transforms/whatever they're called to find out the right values, which is certainly the preferred way. There are some cases where the transform list isn't quite enough (such as when there are multiple versions with the same name and the order isn't all that clear, which is the case with the new crops Jagex added), in which case trial-and-error is needed to find out which version is which.
     

  9. #7  
    Farming Process



    Scu11's Avatar
    Join Date
    Aug 2007
    Age
    30
    Posts
    16,307
    Thanks given
    7,215
    Thanks received
    12,308
    Rep Power
    5000
    Quote Originally Posted by Sundays211 View Post
    Sorry, sounds like I haven't been all that clear. By "lookup the location configuration" I mean checking the morphs/transforms/whatever they're called to find out the right values, which is certainly the preferred way.
    So what is all this about plant stage and seed stage? Are you sayin that there are varbit values that are consistent throughout every patch, for example to transform it into the state where it's just been composted?

    transform list isn't quite enough (such as when there are multiple versions with the same name and the order isn't all that clear, which is the case with the new crops Jagex added)
    That leads me to believe this "transform list" of presuming that the states are consistent for each patch is not the correct way of doing it.
    Last edited by Scu11; 07-09-2015 at 04:42 AM.

    Attached image
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. All skill capes need 99 skill (NOT IN PROCESS)
    By Kelvin in forum Configuration
    Replies: 22
    Last Post: 10-26-2008, 05:09 AM
  2. STOP PUTTING THINGS UNDER boolean process()
    By Jazz in forum Tutorials
    Replies: 10
    Last Post: 10-01-2007, 03:26 PM
  3. Farming
    By Fallen Azn SinZ in forum Tutorials
    Replies: 27
    Last Post: 10-01-2007, 01:03 PM
  4. Farming handled (aznsinz)
    By Kelvin in forum Tutorials
    Replies: 3
    Last Post: 09-27-2007, 01:29 AM
  5. My Small Farming
    By Santa Noobie in forum Tutorials
    Replies: 1
    Last Post: 05-05-2007, 03:38 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •