Thread: Right click destroy don't work.

Results 1 to 5 of 5
  1. #1 Right click destroy don't work. 
    Donator
    irdanknight's Avatar
    Join Date
    Mar 2012
    Age
    28
    Posts
    146
    Thanks given
    4
    Thanks received
    6
    Rep Power
    11
    I have added all the needed destroy interfaces ect but the right click destroy on most it's don't work. I'm sure it must need too be done for each separate item but yeah... I.e item no 1 or 2 :/ is a toolkit, right click it and it says destroy, click destroy and it just drops it. And it is set up with the destroy interfaces anyone know how to fix thos? CHEErs


    Reply With Quote  
     

  2. #2  
    -Founder Off Returnofpk-


    Join Date
    Oct 2012
    Age
    28
    Posts
    655
    Thanks given
    97
    Thanks received
    211
    Rep Power
    303
    Quote Originally Posted by irdanknight View Post
    I have added all the needed destroy interfaces ect but the right click destroy on most it's don't work. I'm sure it must need too be done for each separate item but yeah... I.e item no 1 or 2 :/ is a toolkit, right click it and it says destroy, click destroy and it just drops it. And it is set up with the destroy interfaces anyone know how to fix thos? CHEErs
    add this in playerassistans.java

    Code:
    public void destroyInterface(int itemId) {
    		String itemName = c.getItems().getItemName(itemId);
    		String[][] info = {
    			{"Are you sure you want to destroy this item?", "14174"}, 
    			{"Yes.", "14175"}, 
    			{"No.", "14176"}, 
    			{"", "14177"}, 
    			{"Be sure you want to do this.", "14182"}, 
    			{"You will not be able to get the item(s) back.", "14183"},
    			{itemName, "14184"}
    		};
    		sendFrame34(itemId, 0, 14171, 1);
    		for (int i = 0; i < info.length; i++)
    			sendFrame126(info[i][0], Integer.parseInt(info[i][1]));
    		c.destroyItem = itemId;
    		sendFrame164(14170);
    	}
    	
    	public void destroyItem(int itemId) {
    		if(!c.getItems().playerHasItem(itemId,1)) {
    			return;
    		}
    		if(itemId == -1) {
    			c.getPA().removeAllWindows();
    			return;
    		}
    		String itemName = c.getItems().getItemName(itemId);
    		c.getItems().deleteItem(itemId,1);
    		c.sendMessage("Your " + itemName + " vanishes as you drop it on the ground.");
    		c.sendFrame174(327,0,0);
    		c.destroyItem = -1;
    	}
    
    	public void sendStatement(String s) {
    		sendFrame126(s, 357);
    		sendFrame126("Click here to continue", 358);
    		sendFrame164(356);
    	}
    and in player.java add this

    Code:
    destroyItem = -1,
    and in dropitems.java add this

    Code:
    private boolean isDestroyable(final Client c, int itemId) {
    		boolean destroyable = false;
    		for (int i : Config.DESTROYABLES) {
    			destroyable = (i == itemId);
    			if(destroyable)
    				return true;
    		}
    		return false;
    	}
    }
    '
    and still in dropitems.java find this

    Code:
    boolean droppable = true;
    and over that paste this

    Code:
    if (isDestroyable(c,itemId)) {
    			c.getPA().destroyInterface(itemId);
    			return;
    		}
    and in config.java add this

    Code:
    public static final int[] DESTROYABLES = {
    		0,1,3,19,74,75,76,77,84,271,272,273,274,275,276,277,290,291,300,456,457,458,459,460,461,462,463,553,601,602,603,616,671,672,
    		673,755,761,763,765,769,771,775,776,777,778,783,784,785,786,787,788,789,790,791,792,793,794,795,1549,2372,2373,2374,2375,2376,
    		2377,2378,2379,2380,2381,2382,2383,2384,2389,2390,2393,2394,2395,2399,2400,2401,2795,2798,2800,3565,3567,3569,3571,3576,3578,
    		3698,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,4202,4251,4252,4446,4502,6040,6112,6113,6118,6200,6202,6204,
    		6206,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6478,6479,6541,6542,6543,6544,6545,6546,6547,6548,6635,
    		6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6653,6754,6755,6756,6757,6758,6759,6760,6762,6764,6769,6770,6817,6818,6819,
    		6820,6821,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6865,6866,6867,6885,6886,6887,6945,6946,6947,6948,6949,6950,6951,
    		6952,6953,6954,6955,6956,6957,6958,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,
    		7408,7409,7410,7411,7470,7471,7473,7474,7475,7476,7477,7478,7479,7498,7542,7543,7544,7545,7546,7628,7629,7630,7632,7633,7634,
    		7635,7649,7774,7775,7776,7917,7918,7958,7959,7966,7968,9005,9006,9013,9025,9076,9077,9083,9084,9085,9086,9087,9088,9089,9090,
    		9091,9092,9093,9096,9097,9098,9099,9100,9101,9102,9103,9104,9433,9474,9589,9625,9626,9633,9646,9647,9648,9649,9651,9652,9653,
    		9654,9655,9656,9657,9658,9659,9660,9662,9681,9682,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,
    		9699,9702,9901,9902,9903,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,
    		9932,9944,9945,9947,10174,10175,10176,10177,10487,10488,10489,10490,10491,10492,10493,10494,10495,10498,10499,10500,10507,10508,
    		10512,10513,10514,10515,10531,10532,10533,10539,10540,10541,10542,10543,10544,10545,10546,10562,10581,10582,10583,10584,10585,
    		10586,10587,10592,10593,10594,10595,10596,10597,10598,10599,10600,10609,10722,10723,10724,10725,10726,10727,10728,10730,10829,
    		10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10842,10856,10857,10858,10862,10863,10864,10865,10883,10887,10889,
    		10890,10934,10935,10936,10942,10943,10944,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,11001,11002,
    		11003,11006,11007,11008,11009,11010,11012,11013,11014,11019,11020,11021,11022,11023,11024,11027,11028,11029,11030,11031,11032,
    		11033,11034,11035,11036,11039,11040,11041,11042,11043,11045,11136,11137,11138,11139,11140,11141,11151,11152,11153,11154,11155,
    		11156,11157,11158,11159,11164,11173,11174,11175,11185,11186,11187,11188,11189,11196,11197,11198,11199,11202,11203,11204,11210,
    		11211,11238,11240,11242,11244,11246,11248,11250,11252,11254,11256,11258,11259,11273,11279,11337,11338,11339,11340,11341,11342,
    		11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,
    		11364,11365,11366,11640,11677,11678,11679,11680,11681,11734,11735,11747,11748,11749,11750,11753,11754,11755,11756,11757,11758,
    		11761,11762,11763,11764,11765,11766,11767,11768,11769,11777,11778,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,
    		11790,11795,11796,11797,11798,11799,11800,11949,11950,11952,11953,11954,11955,11956,11957,11958,11959,11969,11970,11971,11972,
    		11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,
    		11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12593,12594,12595,12596,12597,12598,12599,12600,
    		12601,12602,12603,12604,12605,12606,12625,12626,12627,12628,12629,12630,12631,12632,12634,12635,12636,12637,12638,12639,12640,
    		12641,12642,12643,12644,12645,12654,12655,12657,12668,12669,12843,12845,12846,12847,12848,12849,12853,12854,12856,12857,12858,
    		12859,12860,12861,12862,12863,12864,12865,13011,13013,13015,13017,13019,13021,13023,13025,13027,13029,13031,13033,13035,13148,
    		13149,13150,13151,13159,13160,13161,13162,13227,13228,13229,13230,13232,13233,13234,13245,13246,13259,13260,13292,13293,13294,
    		13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,
    		13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13332,13333,13334,13337,13379,13380,13381,
    		13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,
    		13439,13440,13446,13447,13448,13463,13464,13560,13561,13562,13566,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,
    		13587,13588,13589,13591,13592,13593,13642,13643,13644,13645,13646,13647,13648,13649,13655,13659,13660,13661,13664,13665,13666,
    		13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,
    		13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13709,
    		13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13732,13758,13759,
    		13762,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13860,13863,13866,13869,13872,13875,13878,
    		13886,13889,13892,13895,13898,13901,13904,13907,13910,13913,13916,13919,13922,13925,13928,13931,13934,13937,13940,13943,13946,
    		13949,13952,13960,13963,13966,13969,13972,13975,13978,13981,13984,13987,13990,14056,14057,14058,14061,14062,14064,14065,14066,
    		14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14086,14087,14088,14460,14461,14462,
    		14463,14464,14465,14469,14470,14471,14487,14488,14489,14496,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,
    		14516,14517,14518,14519,14520,14521,14522,14534,14536,14537,14538,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,
    		14580,14581,14582,14584,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,
    		14612,14613,14614,14615,14629,14630,14631,14632,14633,14634,14635,14638,14639,14640,14643,14644,14646,14647,14648,14649,14650,
    		14661,14662,14663,14671,14672,14673,14674,14675,14676,14677,14678,14686,14687,14688,14689,14690,14691,14696,14697,14698,14699,
    		14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14714,14715,14716,14717,14718,14719,14720,14721,14722,
    		14723,14724,14739,14740,14742,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,
    		14811,14812,14813,14815,14816,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14936,14938,14940,
    		14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,
    		14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,
    		14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15005,15006,15007,
    		15008,15015,15016,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,
    		15039,15040,15041,15042,15043,15044,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,
    		15214,15215,15216,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15256,15257,15289,15290,15336,15337,15338,15339,
    		15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15354,15360,15361,15373,15374,15378,15379,15380,15381,
    		15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15403,15404,15405,15406,15407,15408,15410,15411,15412,15413,
    		15414,15415,15416,15417,15418,15419,15421,15422,15423,15424,15425,15426,15427,15436,15437,15439,15440,15465,15466,15467,15468,
    		15469,15470,15471,15472,15473,15476,15478,15479,15480,15481,15482,15501,15513,15515,15517,15521,15522,15523,15524,15525,15526,
    		15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,
    		15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,
    		15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15584,15585,15586,15587,15588,15589,15590,15591,
    		15592,15593,15594,15595,15596,15597,15598,15599,15648,15666,15667,15668,15669,15670,15673,15674,15675,15676,15677,15678,15679,
    		15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,
    		15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,
    		15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,
    		15749,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,
    		15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,
    		15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,
    		15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,
    		15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,
    		15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,
    		15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,
    		15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,
    		15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,
    		15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,
    		15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,
    		16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,
    		16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,
    		16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,
    		16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,
    		16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,
    		16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,
    		16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,
    		16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,
    		16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,
    		16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,
    		16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,
    		16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,
    		16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,17378,17379,17381,17383,17385,
    		17387,17389,17391,17393,17395,17397,17399,17401,17403,17405,17407,17409,17411,17413,18338,18339,18639,18640,18641,18642,18647,
    		18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18673,
    		18675,18676,18677,18678,18679,18680,18681,18682,18684,18685,18686,18687,18688,18689,18701,18702,18710,18711,18712,18713,18714,
    		18757,18758,18759,18760,18761,18762,18765,18767,18768,18776,18777,18778,18779,18780,18781,18782,18783,18788,18803,18804,18805,
    		18806,18807,18808,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,19624,19626,19631,19632,
    		19633,19634,19636,19637,19638,19639,19641,19642,19645,19646,19647,19648,19649,19672,19673,19674,19676,19677,19678,19679,19680,
    		19681,19682,19683,19684,19685,19686,19687,19688,19689,19704,19705,19706,19707,19708,19735,19747,19748,19749,19750,19751,19752,
    		19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19770,19771,19772,19773,19774,19775,
    		19776,19780,19781,19782,19783,19791,19792,19793,19794,19795,19796,19797,19798,19805,19806,19807,19808,19832,19833,19834,19835,
    		19836,19837,19838,19839,19840,19841,19842,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,
    		19859,19860,19861,19862,19863,19864,19865,19866,20057,20058,20059,20060,20061,20062,20063,20068,20073,20074,20075,20076,20077,
    		20078,20083,20084,20091,20093,20096,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20113,20120,20176,
    		20177,20178,20209,20275,20276,20281,20282,20287,20288,20293,20294,20299,20300,20305,20306,20311,20312,20317,20318,20323,20324,
    		20329,20330,20335,20336,20341,20342,20347,20348,20353,20354,20359,20360,20365,20366,20371,20372,20377,20378,20383,20384,20389,
    		20390,20395,20396,20401,20402,20407,20408,20413,20414,20419,20420,20425,20426,20430,20431,20432,20435,20468,20469,20470,20471,
    		20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,
    		20493,20670,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,
    		20693,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20727,20728,20729,20730,20731,20732,20733,20769,
    		20771,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20844,20845,20846,20847,20864,20865,20884,20885,
    		20886,20887,20888,20889,20890,20929,20935,20936,20938,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,
    		20965,20966,20967,20970,20972,20974,20976,20978,20980,20982,20984,20986,20988,20990,20992,20994,20996,20998,21000,21002,21004,
    		21006,21008,21010,21012,21014,21016,21018,21020,21022,21024,21026,21028,21030,21032,21034,21036,21038,21040,21042,21044,21046,
    		21048,21050,21052,21054,21056,21058,21060,21062,21064,21066,21068,21070,21072,21074,21076,21078,21080,21082,21084,21086,21088,
    		21090,21092,21094,21096,21098,21100,21102,21104,21106,21108,21110,21112,21114,21116,21118,21120,21122,21124,21126,21128,21130,
    		21132,21134,21136,21138,21140,21142,21144,21146,21148,21150,21152,21154,21156,21158,21160,21162,21164,21166,21168,21170,21172,
    		21174,21176,21178,21180,21182,21184,21186,21188,21190,21192,21194,21196,21198,21200,21202,21204,21206,21208,21210,21212,21214,
    		21216,21218,21220,21222,21224,21226,21228,21230,21232,21234,21236,21238,21240,21242,21244,21246,21248,21333,21334,21335,21336,
    		21337,21338,21339,21340,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,
    		21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21428,21429,21432,21433,21435,21438,21462,21463,21464,21465,
    		21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,
    		21487,21489,21513,21514,21515,21523,21524,21525,21527,21528,21529,21530,21531,21536,21575,21576,21577,21578,21579,21583,21584,
    		21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21601,21770,21771,21772,21796,21797,
    		21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21819,21820,
    		21821,21887,21889,21891,21893,21895,21897,21899,21901,21903,21905,21907,21909,21911,21913,21915,21917,21919,21921,21923,21925,
    		21927,21929,21931,21933,21935,21937,21939,21941,21943,21945,21947,21949,21951,21953,21955,21957,21959,21961,21963,21965,21967,
    		21969,21971,21973,21975,21977,21979,21981,21983,21985,21987,21989,21991,21993,21995,21997,21999,22001,22003,22005,22007,22009,
    		22011,22013,22015,22017,22019,22021,22023,22025,22027,22029,22031,22033,22035,22037,22039,22041,22043,22045,22047,22049,22051,
    		22053,22055,22057,22059,22061,22063,22065,22067,22069,22071,22073,22075,22077,22079,22081,22083,22085,22087,22089,22091,22093,
    		22095,22097,22099,22101,22103,22105,22107,22109,22111,22113,22115,22117,22119,22121,22123,22125,22127,22129,22131,22133,22135,
    		22137,22139,22141,22143,22145,22147,22149,22151,22153,22155,22157,22159,22161,22163,22165,22167,22169,22171,22173,22175,22177,
    		22179,22181,22183,22185,22187,22189,22191,22193,22195,22197,22199,22201,22203,22205,22219,22221,22223,22225,22227,22229,22231,
    		22233,22235,22237,22239,22241,22243,22245,22247,22249,22251,22253,22255,22257,22259,22261,22263,22265,22268,22270,22272,22274,
    		22276,22278,22280,22282,22284,22286,22288,22290,22292,22294,22296,22298,22300,22302,22314,22320,22321,22322,22323,22324,22325,
    		22326,22327,22328,22329,22332,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,
    		22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22371,22372,22373,22374,22375,
    		22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,
    		22397,22398,22399,22400,22408,22410,22412,22413,22414,22415,22416,22417,22418,22432,22433,22434,22435,22436,22437,22438,22439,
    		22441,22568,22570,22572,22574,22576,22578,22580,22582,22584,22586,22588,22590,22592,22594,22596,22598,22600,22602,22604,22606,
    		22608,22610,22612,22614,22616,22618,22620,22622,22624,22626,22628,22630,22632,22634,22636,22638,22639,22640,22641,22642,22643,
    		22645,22647,22649,22651,22653,22655,22657,22659,22661,22663,22665,22667,22669,22671,22673,22675,22677,22679,22681,22683,22685,
    		22687,22689,22691,22693,22695,22697,22699,22701,22703,22705,22707,22709,22711,22713,22715,22717,22719,22721,22723,22725,22727,
    		22729,22731,22733,22735,22737,22739,22741,22743,22745,22747,22749,22751,22753,22755,22757,22759,22761,22763,22765,22767,22769,
    		22771,22773,22775,22777,22779,22781,22783,22785,22787,22789,22791,22793,22795,22797,22799,22801,22803,22805,22807,22809,22811,
    		22813,22815,22817,22819,22821,22823,22825,22827,22829,22831,22833,22835,22837,22839,22841,22843,22845,22847,22849,22851,22853,
    		22855,22857,22859,22861,22863,22865,22867,22869,22871,22873,22875,22877,22879,22881,22883,22885,22887,22889,22891,22893,22895,
    		22897,22899,22901,22903,22905,22907,22909,22911,22913,22915,22917,22919,22921,22923,22925,22927,22929,22931,22933,22966,22968,
    		22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22996,22997,22998,
    		22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23014,23015,23016,23017,23018,23019,23020,23021,23022,
    		23023,23024,23025,23026,23027,23028,23029,23037,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,
    		23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,
    		23100,23124,23643,23644,23645,23646,23647,23648,23660,23661,23662,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,
    		23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,
    		23695,23696,23697,23698,23699,23700,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,
    		23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,
    		23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,
    		23770,23771,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,
    		23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,
    		23813,23814,23815,23816,23817,23818,23840,23842,23844,23846,23848,23850,23852,23854,23856,23858,23860,23862,23864,23866,23868,
    		23870,23872,23874,23876,23878,23880,23882,23884,23886,23888,23890,23892,23894,23896,23898,23900,23902,23904,23906,23908,23910,
    		23912,23914,23916,23918,23920,23922,23924,23926,23928,23930,23932,23934,23936,23938,23940,23942,23944,23946,23948,23950,23952,
    		23954,23956,23958,23960,23962,23964,23966,23968,23970,23972,23974,23976,23978,23980,23982,23984,23986,23988,23990,23992,23994,
    		23996,23998,24000,24002,24004,24006,24008,24010,24012,24014,24016,24018,24020,24022,24024,24026,24028,24030,24032,24034,24036,
    		24038,24040,24042,24044,24046,24048,24050,24052,24054,24056,24058,24060,24062,24064,24066,24068,24070,24072,24074,24076,24078,
    		24080,24082,24084,24086,24088,24090,24121,24122,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,
    		24147,24148,24149,24150,24151,24154,24155,24191,24192,24193,24194,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,
    		24207,24208,24209,24210,24211,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,
    		24233,24294,24295,24296,24297,24298,24299,24300,24302,24303,24309,24310,24311,24312,24313,24317,24324,24325,24326,24327,24328,
    		24329,24330,24331,24332,24333,24334,24337,24338,24339,24368,24369,24370,24371,24395,24418,24419,24422,24427,24428,24429,24430,
    		24432,24433,24437,24439,24440,24441,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24473,24474,24482,24483,
    		24484,24485,24486,24487,24488,24489,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,
    		24506,24507,24508,24509,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,
    		24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24579,
    	};
    Attached image
    Reply With Quote  
     

  3. #3  
    Banned

    Join Date
    Nov 2010
    Age
    14
    Posts
    2,639
    Thanks given
    158
    Thanks received
    280
    Rep Power
    0
    still need this? pm me.
    Reply With Quote  
     

  4. #4  
    Donator
    irdanknight's Avatar
    Join Date
    Mar 2012
    Age
    28
    Posts
    146
    Thanks given
    4
    Thanks received
    6
    Rep Power
    11
    Quote Originally Posted by sheepmonger View Post
    add this in playerassistans.java

    Code:
    public void destroyInterface(int itemId) {
    		String itemName = c.getItems().getItemName(itemId);
    		String[][] info = {
    			{"Are you sure you want to destroy this item?", "14174"}, 
    			{"Yes.", "14175"}, 
    			{"No.", "14176"}, 
    			{"", "14177"}, 
    			{"Be sure you want to do this.", "14182"}, 
    			{"You will not be able to get the item(s) back.", "14183"},
    			{itemName, "14184"}
    		};
    		sendFrame34(itemId, 0, 14171, 1);
    		for (int i = 0; i < info.length; i++)
    			sendFrame126(info[i][0], Integer.parseInt(info[i][1]));
    		c.destroyItem = itemId;
    		sendFrame164(14170);
    	}
    	
    	public void destroyItem(int itemId) {
    		if(!c.getItems().playerHasItem(itemId,1)) {
    			return;
    		}
    		if(itemId == -1) {
    			c.getPA().removeAllWindows();
    			return;
    		}
    		String itemName = c.getItems().getItemName(itemId);
    		c.getItems().deleteItem(itemId,1);
    		c.sendMessage("Your " + itemName + " vanishes as you drop it on the ground.");
    		c.sendFrame174(327,0,0);
    		c.destroyItem = -1;
    	}
    
    	public void sendStatement(String s) {
    		sendFrame126(s, 357);
    		sendFrame126("Click here to continue", 358);
    		sendFrame164(356);
    	}
    and in player.java add this

    Code:
    destroyItem = -1,
    and in dropitems.java add this

    Code:
    private boolean isDestroyable(final Client c, int itemId) {
    		boolean destroyable = false;
    		for (int i : Config.DESTROYABLES) {
    			destroyable = (i == itemId);
    			if(destroyable)
    				return true;
    		}
    		return false;
    	}
    }
    '
    and still in dropitems.java find this

    Code:
    boolean droppable = true;
    and over that paste this

    Code:
    if (isDestroyable(c,itemId)) {
    			c.getPA().destroyInterface(itemId);
    			return;
    		}
    and in config.java add this

    Code:
    public static final int[] DESTROYABLES = {
    		0,1,3,19,74,75,76,77,84,271,272,273,274,275,276,277,290,291,300,456,457,458,459,460,461,462,463,553,601,602,603,616,671,672,
    		673,755,761,763,765,769,771,775,776,777,778,783,784,785,786,787,788,789,790,791,792,793,794,795,1549,2372,2373,2374,2375,2376,
    		2377,2378,2379,2380,2381,2382,2383,2384,2389,2390,2393,2394,2395,2399,2400,2401,2795,2798,2800,3565,3567,3569,3571,3576,3578,
    		3698,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,4202,4251,4252,4446,4502,6040,6112,6113,6118,6200,6202,6204,
    		6206,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6478,6479,6541,6542,6543,6544,6545,6546,6547,6548,6635,
    		6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6653,6754,6755,6756,6757,6758,6759,6760,6762,6764,6769,6770,6817,6818,6819,
    		6820,6821,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6865,6866,6867,6885,6886,6887,6945,6946,6947,6948,6949,6950,6951,
    		6952,6953,6954,6955,6956,6957,6958,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,
    		7408,7409,7410,7411,7470,7471,7473,7474,7475,7476,7477,7478,7479,7498,7542,7543,7544,7545,7546,7628,7629,7630,7632,7633,7634,
    		7635,7649,7774,7775,7776,7917,7918,7958,7959,7966,7968,9005,9006,9013,9025,9076,9077,9083,9084,9085,9086,9087,9088,9089,9090,
    		9091,9092,9093,9096,9097,9098,9099,9100,9101,9102,9103,9104,9433,9474,9589,9625,9626,9633,9646,9647,9648,9649,9651,9652,9653,
    		9654,9655,9656,9657,9658,9659,9660,9662,9681,9682,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,
    		9699,9702,9901,9902,9903,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,
    		9932,9944,9945,9947,10174,10175,10176,10177,10487,10488,10489,10490,10491,10492,10493,10494,10495,10498,10499,10500,10507,10508,
    		10512,10513,10514,10515,10531,10532,10533,10539,10540,10541,10542,10543,10544,10545,10546,10562,10581,10582,10583,10584,10585,
    		10586,10587,10592,10593,10594,10595,10596,10597,10598,10599,10600,10609,10722,10723,10724,10725,10726,10727,10728,10730,10829,
    		10830,10831,10832,10833,10834,10835,10836,10837,10838,10839,10842,10856,10857,10858,10862,10863,10864,10865,10883,10887,10889,
    		10890,10934,10935,10936,10942,10943,10944,10983,10984,10985,10986,10987,10988,10989,10990,10991,10992,10993,10994,11001,11002,
    		11003,11006,11007,11008,11009,11010,11012,11013,11014,11019,11020,11021,11022,11023,11024,11027,11028,11029,11030,11031,11032,
    		11033,11034,11035,11036,11039,11040,11041,11042,11043,11045,11136,11137,11138,11139,11140,11141,11151,11152,11153,11154,11155,
    		11156,11157,11158,11159,11164,11173,11174,11175,11185,11186,11187,11188,11189,11196,11197,11198,11199,11202,11203,11204,11210,
    		11211,11238,11240,11242,11244,11246,11248,11250,11252,11254,11256,11258,11259,11273,11279,11337,11338,11339,11340,11341,11342,
    		11343,11344,11345,11346,11347,11348,11349,11350,11351,11352,11353,11354,11355,11356,11357,11358,11359,11360,11361,11362,11363,
    		11364,11365,11366,11640,11677,11678,11679,11680,11681,11734,11735,11747,11748,11749,11750,11753,11754,11755,11756,11757,11758,
    		11761,11762,11763,11764,11765,11766,11767,11768,11769,11777,11778,11780,11781,11782,11783,11784,11785,11786,11787,11788,11789,
    		11790,11795,11796,11797,11798,11799,11800,11949,11950,11952,11953,11954,11955,11956,11957,11958,11959,11969,11970,11971,11972,
    		11973,11974,11975,11976,11977,11978,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,11992,11993,
    		11994,11995,11996,11997,11998,11999,12000,12001,12002,12003,12004,12005,12006,12593,12594,12595,12596,12597,12598,12599,12600,
    		12601,12602,12603,12604,12605,12606,12625,12626,12627,12628,12629,12630,12631,12632,12634,12635,12636,12637,12638,12639,12640,
    		12641,12642,12643,12644,12645,12654,12655,12657,12668,12669,12843,12845,12846,12847,12848,12849,12853,12854,12856,12857,12858,
    		12859,12860,12861,12862,12863,12864,12865,13011,13013,13015,13017,13019,13021,13023,13025,13027,13029,13031,13033,13035,13148,
    		13149,13150,13151,13159,13160,13161,13162,13227,13228,13229,13230,13232,13233,13234,13245,13246,13259,13260,13292,13293,13294,
    		13295,13296,13297,13298,13299,13300,13301,13302,13303,13304,13305,13307,13308,13309,13310,13311,13312,13313,13314,13315,13316,
    		13317,13318,13319,13320,13321,13322,13323,13324,13325,13326,13327,13328,13329,13330,13332,13333,13334,13337,13379,13380,13381,
    		13382,13383,13384,13385,13386,13387,13388,13389,13390,13391,13392,13393,13394,13395,13396,13397,13398,13399,13400,13401,13402,
    		13439,13440,13446,13447,13448,13463,13464,13560,13561,13562,13566,13569,13570,13571,13572,13573,13574,13575,13576,13577,13578,
    		13587,13588,13589,13591,13592,13593,13642,13643,13644,13645,13646,13647,13648,13649,13655,13659,13660,13661,13664,13665,13666,
    		13667,13668,13669,13670,13671,13672,13673,13674,13675,13676,13677,13678,13679,13680,13681,13682,13683,13684,13685,13686,13687,
    		13688,13689,13690,13691,13692,13693,13694,13695,13696,13697,13698,13699,13700,13701,13702,13703,13704,13705,13706,13707,13709,
    		13710,13711,13712,13713,13714,13715,13716,13717,13718,13719,13720,13721,13722,13723,13724,13725,13726,13727,13732,13758,13759,
    		13762,13845,13846,13847,13848,13849,13850,13851,13852,13853,13854,13855,13856,13857,13860,13863,13866,13869,13872,13875,13878,
    		13886,13889,13892,13895,13898,13901,13904,13907,13910,13913,13916,13919,13922,13925,13928,13931,13934,13937,13940,13943,13946,
    		13949,13952,13960,13963,13966,13969,13972,13975,13978,13981,13984,13987,13990,14056,14057,14058,14061,14062,14064,14065,14066,
    		14067,14068,14069,14070,14071,14072,14073,14074,14075,14076,14077,14078,14079,14080,14081,14086,14087,14088,14460,14461,14462,
    		14463,14464,14465,14469,14470,14471,14487,14488,14489,14496,14505,14506,14507,14508,14509,14510,14511,14512,14513,14514,14515,
    		14516,14517,14518,14519,14520,14521,14522,14534,14536,14537,14538,14570,14571,14572,14573,14574,14575,14576,14577,14578,14579,
    		14580,14581,14582,14584,14595,14596,14597,14598,14599,14600,14601,14602,14603,14604,14605,14606,14607,14608,14609,14610,14611,
    		14612,14613,14614,14615,14629,14630,14631,14632,14633,14634,14635,14638,14639,14640,14643,14644,14646,14647,14648,14649,14650,
    		14661,14662,14663,14671,14672,14673,14674,14675,14676,14677,14678,14686,14687,14688,14689,14690,14691,14696,14697,14698,14699,
    		14700,14701,14702,14703,14704,14705,14706,14707,14708,14709,14710,14711,14714,14715,14716,14717,14718,14719,14720,14721,14722,
    		14723,14724,14739,14740,14742,14795,14796,14797,14798,14799,14800,14801,14802,14803,14804,14805,14806,14807,14808,14809,14810,
    		14811,14812,14813,14815,14816,14819,14820,14821,14822,14823,14824,14825,14826,14827,14828,14829,14830,14831,14936,14938,14940,
    		14941,14942,14943,14944,14945,14946,14947,14948,14949,14950,14951,14952,14953,14954,14955,14956,14957,14958,14959,14960,14961,
    		14962,14963,14964,14965,14966,14967,14968,14969,14970,14971,14972,14973,14974,14975,14976,14977,14978,14979,14980,14981,14982,
    		14983,14984,14985,14986,14987,14988,14989,14990,14991,14992,14993,14994,14995,14996,14997,14998,14999,15000,15005,15006,15007,
    		15008,15015,15016,15021,15022,15023,15024,15025,15026,15027,15028,15029,15030,15031,15032,15033,15034,15035,15036,15037,15038,
    		15039,15040,15041,15042,15043,15044,15103,15104,15105,15106,15107,15108,15109,15110,15111,15112,15113,15114,15115,15116,15117,
    		15214,15215,15216,15245,15246,15247,15248,15249,15250,15251,15252,15253,15254,15256,15257,15289,15290,15336,15337,15338,15339,
    		15341,15342,15343,15344,15345,15346,15347,15348,15349,15350,15351,15352,15354,15360,15361,15373,15374,15378,15379,15380,15381,
    		15382,15383,15384,15385,15386,15387,15388,15389,15390,15391,15392,15403,15404,15405,15406,15407,15408,15410,15411,15412,15413,
    		15414,15415,15416,15417,15418,15419,15421,15422,15423,15424,15425,15426,15427,15436,15437,15439,15440,15465,15466,15467,15468,
    		15469,15470,15471,15472,15473,15476,15478,15479,15480,15481,15482,15501,15513,15515,15517,15521,15522,15523,15524,15525,15526,
    		15527,15528,15529,15530,15531,15532,15533,15534,15535,15536,15537,15538,15539,15540,15541,15542,15543,15544,15545,15546,15547,
    		15548,15549,15550,15551,15552,15553,15554,15555,15556,15557,15558,15559,15560,15561,15562,15563,15564,15565,15566,15567,15568,
    		15569,15570,15571,15572,15573,15574,15575,15576,15577,15578,15579,15580,15581,15584,15585,15586,15587,15588,15589,15590,15591,
    		15592,15593,15594,15595,15596,15597,15598,15599,15648,15666,15667,15668,15669,15670,15673,15674,15675,15676,15677,15678,15679,
    		15680,15681,15682,15683,15684,15685,15686,15687,15688,15689,15690,15691,15692,15693,15694,15695,15696,15697,15698,15699,15700,
    		15707,15708,15709,15710,15711,15712,15713,15714,15715,15716,15717,15718,15719,15720,15721,15722,15723,15724,15725,15726,15727,
    		15728,15729,15730,15731,15732,15733,15734,15735,15736,15737,15738,15739,15740,15741,15742,15743,15744,15745,15746,15747,15748,
    		15749,15775,15776,15777,15778,15779,15780,15781,15782,15783,15784,15785,15786,15787,15788,15789,15790,15791,15792,15793,15794,
    		15795,15796,15797,15798,15799,15800,15801,15802,15803,15804,15805,15806,15807,15808,15809,15810,15811,15812,15813,15814,15815,
    		15816,15817,15818,15819,15820,15821,15822,15823,15824,15825,15826,15827,15828,15829,15830,15831,15832,15833,15834,15835,15836,
    		15837,15838,15839,15840,15841,15842,15843,15844,15845,15846,15847,15848,15849,15850,15851,15852,15853,15854,15855,15856,15857,
    		15858,15859,15860,15861,15862,15863,15864,15865,15866,15867,15868,15869,15870,15871,15872,15873,15874,15875,15876,15877,15878,
    		15879,15880,15881,15882,15883,15884,15885,15886,15887,15888,15889,15890,15891,15892,15893,15894,15895,15896,15897,15898,15899,
    		15900,15901,15902,15903,15904,15905,15906,15907,15908,15909,15910,15911,15912,15913,15914,15915,15916,15917,15918,15919,15920,
    		15921,15922,15923,15924,15925,15926,15927,15928,15929,15930,15931,15932,15933,15934,15935,15936,15937,15938,15939,15940,15941,
    		15942,15943,15944,15945,15946,15947,15948,15949,15950,15951,15952,15953,15954,15955,15956,15957,15958,15959,15960,15961,15962,
    		15963,15964,15965,15966,15967,15968,15969,15970,15971,15972,15973,15974,15975,15976,15977,15978,15979,15980,15981,15982,15983,
    		15984,15985,15986,15987,15988,15989,15990,15991,15992,15993,15994,15995,15996,15997,15998,15999,16000,16001,16002,16003,16004,
    		16005,16006,16007,16008,16009,16010,16011,16012,16013,16014,16015,16016,16017,16018,16019,16020,16021,16022,16023,16024,16025,
    		16026,16027,16028,16029,16030,16031,16032,16033,16034,16035,16036,16037,16038,16039,16040,16041,16042,16043,16044,16045,16046,
    		16047,16048,16049,16050,16051,16052,16053,16054,16055,16056,16057,16058,16059,16060,16061,16062,16063,16064,16065,16066,16067,
    		16068,16069,16070,16071,16072,16073,16074,16075,16076,16077,16078,16079,16080,16081,16082,16083,16084,16085,16086,16087,16088,
    		16089,16090,16091,16092,16093,16094,16095,16096,16097,16098,16099,16100,16101,16102,16103,16104,16105,16106,16107,16108,16109,
    		16110,16111,16112,16113,16114,16115,16116,16117,16118,16119,16120,16121,16122,16123,16124,16125,16126,16127,16128,16129,16130,
    		16131,16132,16133,16134,16135,16136,16137,16138,16139,16140,16141,16142,16143,16144,16145,16146,16147,16148,16149,16150,16151,
    		16152,16153,16154,16155,16156,16157,16158,16159,16160,16161,16162,16163,16164,16165,16166,16167,16168,16169,16170,16171,16172,
    		16173,16174,16175,16176,16177,16178,16179,16180,16181,16182,16183,16184,16185,16186,16187,16188,16189,16190,16191,16192,16193,
    		16194,16195,16196,16197,16198,16199,16200,16201,16202,16203,16204,16205,16206,16207,16208,16209,16210,16211,16212,16213,16214,
    		16215,16216,16217,16218,16219,16220,16221,16222,16223,16224,16225,16226,16227,16228,16229,16230,16231,16232,16233,16234,16235,
    		16236,16237,16238,16239,16240,16241,16242,16243,16244,16245,16246,16247,16248,16249,16250,16251,16252,16253,16254,16255,16256,
    		16257,16258,16259,16260,16261,16262,16263,16264,16265,16266,16267,16268,16269,16270,16271,16272,17378,17379,17381,17383,17385,
    		17387,17389,17391,17393,17395,17397,17399,17401,17403,17405,17407,17409,17411,17413,18338,18339,18639,18640,18641,18642,18647,
    		18648,18649,18650,18651,18652,18653,18654,18655,18656,18657,18658,18659,18660,18661,18662,18663,18664,18665,18666,18667,18673,
    		18675,18676,18677,18678,18679,18680,18681,18682,18684,18685,18686,18687,18688,18689,18701,18702,18710,18711,18712,18713,18714,
    		18757,18758,18759,18760,18761,18762,18765,18767,18768,18776,18777,18778,18779,18780,18781,18782,18783,18788,18803,18804,18805,
    		18806,18807,18808,18815,18816,18817,18818,18819,18820,18821,18822,18823,18824,18825,18826,18827,18828,19624,19626,19631,19632,
    		19633,19634,19636,19637,19638,19639,19641,19642,19645,19646,19647,19648,19649,19672,19673,19674,19676,19677,19678,19679,19680,
    		19681,19682,19683,19684,19685,19686,19687,19688,19689,19704,19705,19706,19707,19708,19735,19747,19748,19749,19750,19751,19752,
    		19754,19755,19756,19757,19758,19759,19760,19761,19762,19763,19764,19765,19766,19767,19768,19770,19771,19772,19773,19774,19775,
    		19776,19780,19781,19782,19783,19791,19792,19793,19794,19795,19796,19797,19798,19805,19806,19807,19808,19832,19833,19834,19835,
    		19836,19837,19838,19839,19840,19841,19842,19845,19846,19847,19848,19849,19850,19851,19852,19853,19854,19855,19856,19857,19858,
    		19859,19860,19861,19862,19863,19864,19865,19866,20057,20058,20059,20060,20061,20062,20063,20068,20073,20074,20075,20076,20077,
    		20078,20083,20084,20091,20093,20096,20098,20099,20100,20101,20102,20103,20104,20105,20106,20107,20108,20109,20113,20120,20176,
    		20177,20178,20209,20275,20276,20281,20282,20287,20288,20293,20294,20299,20300,20305,20306,20311,20312,20317,20318,20323,20324,
    		20329,20330,20335,20336,20341,20342,20347,20348,20353,20354,20359,20360,20365,20366,20371,20372,20377,20378,20383,20384,20389,
    		20390,20395,20396,20401,20402,20407,20408,20413,20414,20419,20420,20425,20426,20430,20431,20432,20435,20468,20469,20470,20471,
    		20472,20473,20474,20475,20476,20477,20478,20479,20480,20481,20482,20483,20484,20485,20486,20487,20488,20489,20490,20491,20492,
    		20493,20670,20674,20675,20676,20677,20678,20679,20680,20681,20682,20683,20684,20685,20686,20687,20688,20689,20690,20691,20692,
    		20693,20702,20703,20704,20705,20706,20707,20708,20709,20710,20711,20712,20713,20727,20728,20729,20730,20731,20732,20733,20769,
    		20771,20795,20796,20797,20798,20799,20800,20801,20802,20803,20804,20805,20806,20844,20845,20846,20847,20864,20865,20884,20885,
    		20886,20887,20888,20889,20890,20929,20935,20936,20938,20953,20954,20955,20956,20957,20958,20959,20960,20961,20962,20963,20964,
    		20965,20966,20967,20970,20972,20974,20976,20978,20980,20982,20984,20986,20988,20990,20992,20994,20996,20998,21000,21002,21004,
    		21006,21008,21010,21012,21014,21016,21018,21020,21022,21024,21026,21028,21030,21032,21034,21036,21038,21040,21042,21044,21046,
    		21048,21050,21052,21054,21056,21058,21060,21062,21064,21066,21068,21070,21072,21074,21076,21078,21080,21082,21084,21086,21088,
    		21090,21092,21094,21096,21098,21100,21102,21104,21106,21108,21110,21112,21114,21116,21118,21120,21122,21124,21126,21128,21130,
    		21132,21134,21136,21138,21140,21142,21144,21146,21148,21150,21152,21154,21156,21158,21160,21162,21164,21166,21168,21170,21172,
    		21174,21176,21178,21180,21182,21184,21186,21188,21190,21192,21194,21196,21198,21200,21202,21204,21206,21208,21210,21212,21214,
    		21216,21218,21220,21222,21224,21226,21228,21230,21232,21234,21236,21238,21240,21242,21244,21246,21248,21333,21334,21335,21336,
    		21337,21338,21339,21340,21376,21377,21378,21379,21380,21381,21382,21383,21384,21385,21386,21387,21388,21389,21390,21391,21392,
    		21406,21407,21408,21409,21410,21411,21412,21413,21414,21415,21416,21428,21429,21432,21433,21435,21438,21462,21463,21464,21465,
    		21466,21467,21468,21469,21470,21471,21472,21473,21474,21475,21476,21477,21478,21479,21480,21481,21482,21483,21484,21485,21486,
    		21487,21489,21513,21514,21515,21523,21524,21525,21527,21528,21529,21530,21531,21536,21575,21576,21577,21578,21579,21583,21584,
    		21585,21586,21587,21588,21589,21590,21591,21592,21593,21594,21595,21596,21597,21598,21599,21601,21770,21771,21772,21796,21797,
    		21799,21800,21801,21802,21803,21804,21805,21806,21807,21808,21809,21810,21811,21812,21813,21814,21815,21816,21817,21819,21820,
    		21821,21887,21889,21891,21893,21895,21897,21899,21901,21903,21905,21907,21909,21911,21913,21915,21917,21919,21921,21923,21925,
    		21927,21929,21931,21933,21935,21937,21939,21941,21943,21945,21947,21949,21951,21953,21955,21957,21959,21961,21963,21965,21967,
    		21969,21971,21973,21975,21977,21979,21981,21983,21985,21987,21989,21991,21993,21995,21997,21999,22001,22003,22005,22007,22009,
    		22011,22013,22015,22017,22019,22021,22023,22025,22027,22029,22031,22033,22035,22037,22039,22041,22043,22045,22047,22049,22051,
    		22053,22055,22057,22059,22061,22063,22065,22067,22069,22071,22073,22075,22077,22079,22081,22083,22085,22087,22089,22091,22093,
    		22095,22097,22099,22101,22103,22105,22107,22109,22111,22113,22115,22117,22119,22121,22123,22125,22127,22129,22131,22133,22135,
    		22137,22139,22141,22143,22145,22147,22149,22151,22153,22155,22157,22159,22161,22163,22165,22167,22169,22171,22173,22175,22177,
    		22179,22181,22183,22185,22187,22189,22191,22193,22195,22197,22199,22201,22203,22205,22219,22221,22223,22225,22227,22229,22231,
    		22233,22235,22237,22239,22241,22243,22245,22247,22249,22251,22253,22255,22257,22259,22261,22263,22265,22268,22270,22272,22274,
    		22276,22278,22280,22282,22284,22286,22288,22290,22292,22294,22296,22298,22300,22302,22314,22320,22321,22322,22323,22324,22325,
    		22326,22327,22328,22329,22332,22338,22339,22340,22341,22342,22343,22344,22345,22346,22347,22348,22349,22350,22351,22352,22353,
    		22354,22355,22356,22357,22358,22359,22360,22361,22362,22363,22364,22365,22366,22367,22368,22369,22371,22372,22373,22374,22375,
    		22376,22377,22378,22379,22380,22381,22382,22383,22384,22385,22386,22387,22388,22389,22390,22391,22392,22393,22394,22395,22396,
    		22397,22398,22399,22400,22408,22410,22412,22413,22414,22415,22416,22417,22418,22432,22433,22434,22435,22436,22437,22438,22439,
    		22441,22568,22570,22572,22574,22576,22578,22580,22582,22584,22586,22588,22590,22592,22594,22596,22598,22600,22602,22604,22606,
    		22608,22610,22612,22614,22616,22618,22620,22622,22624,22626,22628,22630,22632,22634,22636,22638,22639,22640,22641,22642,22643,
    		22645,22647,22649,22651,22653,22655,22657,22659,22661,22663,22665,22667,22669,22671,22673,22675,22677,22679,22681,22683,22685,
    		22687,22689,22691,22693,22695,22697,22699,22701,22703,22705,22707,22709,22711,22713,22715,22717,22719,22721,22723,22725,22727,
    		22729,22731,22733,22735,22737,22739,22741,22743,22745,22747,22749,22751,22753,22755,22757,22759,22761,22763,22765,22767,22769,
    		22771,22773,22775,22777,22779,22781,22783,22785,22787,22789,22791,22793,22795,22797,22799,22801,22803,22805,22807,22809,22811,
    		22813,22815,22817,22819,22821,22823,22825,22827,22829,22831,22833,22835,22837,22839,22841,22843,22845,22847,22849,22851,22853,
    		22855,22857,22859,22861,22863,22865,22867,22869,22871,22873,22875,22877,22879,22881,22883,22885,22887,22889,22891,22893,22895,
    		22897,22899,22901,22903,22905,22907,22909,22911,22913,22915,22917,22919,22921,22923,22925,22927,22929,22931,22933,22966,22968,
    		22974,22975,22976,22977,22978,22979,22980,22981,22982,22983,22984,22985,22986,22987,22988,22989,22990,22991,22996,22997,22998,
    		22999,23000,23001,23002,23003,23004,23005,23006,23007,23008,23009,23010,23014,23015,23016,23017,23018,23019,23020,23021,23022,
    		23023,23024,23025,23026,23027,23028,23029,23037,23066,23067,23068,23069,23070,23071,23072,23073,23074,23075,23076,23077,23078,
    		23079,23080,23081,23082,23083,23084,23085,23086,23087,23088,23089,23090,23091,23092,23093,23094,23095,23096,23097,23098,23099,
    		23100,23124,23643,23644,23645,23646,23647,23648,23660,23661,23662,23664,23665,23666,23667,23668,23669,23670,23671,23672,23673,
    		23674,23675,23676,23677,23678,23679,23680,23681,23682,23683,23684,23685,23686,23687,23688,23689,23690,23691,23692,23693,23694,
    		23695,23696,23697,23698,23699,23700,23713,23714,23715,23716,23717,23718,23719,23720,23721,23722,23723,23724,23725,23726,23727,
    		23728,23729,23730,23731,23732,23733,23734,23735,23736,23737,23738,23739,23740,23741,23742,23743,23744,23745,23746,23747,23748,
    		23749,23750,23751,23752,23753,23754,23755,23756,23757,23758,23759,23760,23761,23762,23763,23764,23765,23766,23767,23768,23769,
    		23770,23771,23773,23774,23775,23776,23777,23778,23779,23780,23781,23782,23783,23784,23785,23786,23787,23788,23789,23790,23791,
    		23792,23793,23794,23795,23796,23797,23798,23799,23800,23801,23802,23803,23804,23805,23806,23807,23808,23809,23810,23811,23812,
    		23813,23814,23815,23816,23817,23818,23840,23842,23844,23846,23848,23850,23852,23854,23856,23858,23860,23862,23864,23866,23868,
    		23870,23872,23874,23876,23878,23880,23882,23884,23886,23888,23890,23892,23894,23896,23898,23900,23902,23904,23906,23908,23910,
    		23912,23914,23916,23918,23920,23922,23924,23926,23928,23930,23932,23934,23936,23938,23940,23942,23944,23946,23948,23950,23952,
    		23954,23956,23958,23960,23962,23964,23966,23968,23970,23972,23974,23976,23978,23980,23982,23984,23986,23988,23990,23992,23994,
    		23996,23998,24000,24002,24004,24006,24008,24010,24012,24014,24016,24018,24020,24022,24024,24026,24028,24030,24032,24034,24036,
    		24038,24040,24042,24044,24046,24048,24050,24052,24054,24056,24058,24060,24062,24064,24066,24068,24070,24072,24074,24076,24078,
    		24080,24082,24084,24086,24088,24090,24121,24122,24134,24135,24136,24137,24138,24139,24140,24141,24142,24143,24144,24145,24146,
    		24147,24148,24149,24150,24151,24154,24155,24191,24192,24193,24194,24197,24198,24199,24200,24201,24202,24203,24204,24205,24206,
    		24207,24208,24209,24210,24211,24213,24214,24215,24216,24217,24218,24219,24220,24221,24222,24223,24224,24225,24226,24227,24228,
    		24233,24294,24295,24296,24297,24298,24299,24300,24302,24303,24309,24310,24311,24312,24313,24317,24324,24325,24326,24327,24328,
    		24329,24330,24331,24332,24333,24334,24337,24338,24339,24368,24369,24370,24371,24395,24418,24419,24422,24427,24428,24429,24430,
    		24432,24433,24437,24439,24440,24441,24444,24445,24446,24447,24448,24449,24450,24451,24452,24453,24454,24473,24474,24482,24483,
    		24484,24485,24486,24487,24488,24489,24491,24492,24493,24494,24495,24496,24497,24498,24499,24500,24501,24502,24503,24504,24505,
    		24506,24507,24508,24509,24513,24514,24515,24516,24517,24518,24519,24520,24521,24522,24523,24524,24525,24526,24527,24528,24529,
    		24530,24531,24532,24533,24534,24535,24536,24537,24538,24539,24540,24541,24542,24543,24579,
    	};
    this just crashed the client :/ mm , i can't work this out


    Reply With Quote  
     

  5. #5  
    Donator
    irdanknight's Avatar
    Join Date
    Mar 2012
    Age
    28
    Posts
    146
    Thanks given
    4
    Thanks received
    6
    Rep Power
    11


    Reply With Quote  
     


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. [PI] Xyle Right Clicking Objects doesnt work
    By DarkSlayerz in forum Help
    Replies: 27
    Last Post: 03-11-2012, 08:28 PM
  2. Right Click Rest Orb working?
    By Tyluur in forum Help
    Replies: 2
    Last Post: 06-05-2011, 08:17 PM
  3. Working ipban right click option (help)
    By yodamonkey5 in forum Help
    Replies: 1
    Last Post: 07-31-2010, 08:10 PM
  4. Replies: 5
    Last Post: 02-08-2009, 01:17 AM
  5. Making right click ban work
    By Eternal Darknes in forum Tutorials
    Replies: 2
    Last Post: 05-31-2008, 12:07 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •