Jump to content

burnt_apples

Members
  • Posts

    4
  • Joined

  • Last visited

About burnt_apples

  • Birthday 01/01/1980

burnt_apples's Achievements

Dirt

Dirt (1/9)

0

Reputation

  1. Well I tried downloading the jar from http://www.technicpack.net/download and it doesnt seem to be working for anything besides windows. Since I dont have windows, I find it rather frustrating to try and play .exe files. Has this issue been noted yet? A fix in the near future would be awesome.
  2. Well I went ahead and previewed a decompiled class from your jar to see just what was wrong. I cant find any linux decompilers that I can actually download or that function, so im going to suggest a few things to fix in your alchtpfix.class (Don't worry, ill leave your source out as best as I can) This is the suspected offending statement causing massive console spam: if(main.alchtpfix.equals(Boolean.valueOf(true))) {} First off, instead of doing nothing inside your brackets here, you need to move the two lines under your conditional statement to inside those empty brackets. Otherwise it's going to "fix" every player's actions no matter what. Hence the spam. if(main.alchtpfix.equals(Boolean.valueOf(true))) {Whatever you want to do upon receiving 'true' should be here} Second, you retrieved your boolean config values as strings, and now you're trying to get the value of in boolean terms. Why not try .equalsIgnoreCase("true")? if(main.alchtpfix.equalsIgnoreCase("true")) {OMITTED} The errors here are causing MASSIVE amounts of output to my server log each second. I would upload a fixed .class file for you since this is a pressing issue and I havent seen a reply yet. Maybe ill do that later. Ill make sure to credit you if I do. I did a lazy workaround. For some reason the alchtpdupe variable from the config would only be seen as null, so I removed the if... and put the statements in a try catch, where all the spam is replaced by a simple warning message. I figured this would be ok for anyone installing. I mean, why get a patch plugin if they dont want to patch a dupe? >.> Anywho: Fixed class: http://www.mediafire.com/download/mkvsqhvi8pk3f53/alchtpfix.class Author: darkdeath1332 INSTALLATION: Open the BedCraftSD.jar file with your favorite jar reader tool (ie winrar, 7zip) Navigate to com, and proceed until you see .class files Delete alchtpfix.class and paste/drag in the new one. ???? PROFIT! LINUX USERS: If you have any problems pasting in the file, go into terminal and navigate to wherever your jar (assuming the class file is in the same place) is and type jar uf BedCraftSD.jar alchtpfix.class. Afterwards just drag it through the folders till you hit the class files or copy the file just put in and paste it into the class folder.
×
×
  • Create New...