Tagged Questions

Bukkit is an up-and-coming Minecraft Server mod that will completely change how running and modifying a Minecraft server is done - making managing and creating servers easier and providing more flexibility. Learning from the mistakes made by other mods, Bukkit aims to be different and fill the void ...

learn more… | top users | synonyms

3
votes
2answers
168 views

High Execution time on java methods

I am running a java server on a CentOS 5.4 VPS. VPS stats: - 2.5GHz single core CPU - 2GB of RAM - OpenJDK 1.6 (tried Sun JDK 1.7 also) I have been experiencing very high CPU usages from the java ...
1
vote
2answers
56 views

Variable not resetting when command is ran again

I'm writing a plugin for a Minecraft server and have a piece of code that outputs the players total experience. The issue is the XP value it outputs doesn't change if the XP changes. For example, At ...
1
vote
0answers
28 views

How to combine process and file check in monit?

Summary How can I combine multiple checks in Monit? I want to check against process activity and file content/timestamp. Long and boring explanation I'm working on a Monit daemon for keeping my ...
1
vote
1answer
106 views

Buffered pipe in bash

I'm running a Bukkit (Minecraft) server on a Linux machine and I want to have the server gracefully shut down using the server's stop command and the computer suspend at a certain time using ...
1
vote
2answers
80 views

java mysql server timeout errors with lack of activity

I'm not new to programming, but I am new to Java . I've been using it to write plugins for Bukkit, a Minecraft server wrapper. My issue is unrelated to that though, this is a pure java issue. I have ...
1
vote
2answers
60 views

How to clone an older GIT commit

I'm a developer in training, with some spare time on my hands. I am trying to re-continue a discontinued project (BigBrother, ...
1
vote
3answers
545 views

InputStream end of stream?

Im only just learning java so hang with me on this. Working on a plugin for bukkit I wanted to boot up a jython interpreter inside the plugin then execute files inside the interpreter meaning my java ...
0
votes
1answer
27 views

Replace Method in another Class

I'm would like to make a Minecraft plugin that replaces methods in other plugins with ones in the plugin, for easy customization of the plugins. Is there any way to simply replace a method of one ...
0
votes
1answer
38 views

Java Interop with Clojure, getting exception: “java.lang.ClassFormatError: Duplicate method name&signature in class file”

I suspect I might be doing something really silly and trivially wrong, and I just need a Clojure expert to set me stright. I am trying to write a Bukkit plugin in Clojure. Generally a Bukkit Plugin ...
0
votes
0answers
119 views

Using fsockopen to connect to server — connection refused

Ok, so I run a minecraft server, I also run a topsite for similar minecraft servers. The majority of minecraft servers use a server wrapper called bukkit, which allows for hundreds of mods to be ...
0
votes
1answer
68 views

How to make java get a number and a new number and add them together

I Have been trying for some time now to get java to get and number and add a neww number to it but have had no luck. package me.FL.PlayTime; import java.io.BufferedWriter; import java.io.File; ...
0
votes
0answers
120 views

Bukkit plugin. Remove items from inventory [closed]

I am making a bukkit plugin that takes the player to a "FunZone" and allows them to do just about anything. I don't want data trasferd between the two worlds so far i have got most everything stoped ...
0
votes
0answers
105 views

PHP - fsockopen() Connection timed out [closed]

Possible Duplicate: PHP and HTML: socket_connect() [function.socket-connect]: unable to connect I am using PHP to connect to a server running a Java .jar. I have a plugin installed that ...
0
votes
1answer
174 views

PHP and HTML: socket_connect() [function.socket-connect]: unable to connect

I am working on a php file that connects to my game server and executes a command. The users enter their username on a HTML form that sends them and the username to a php file that connects to the ...
0
votes
0answers
90 views

M2Eclipse can't find connector?

I develop on the Bukkit Minecraft platform (new to Java), and there is a section in the pom.xml file that requires the maven-replacer-plugin and I believe GitDescribe. Here are the errors it gives me, ...
0
votes
3answers
80 views

Object Arrays/Lists in java plugin programming

Im writing a plugin for bukkit (http://bukkit.org/ and using the API docs at http://jd.bukkit.org/apidocs/) I have created a class that simply extends java.lang.Object. I can use this object on its ...
0
votes
3answers
141 views

Variable in Java

I have a public class and within that class I have Msg msg = new Msg(); and some public void thingys too. The problem is that I can't use msg.log(""); inside those public voids int he main class It ...
0
votes
2answers
62 views

External function Java

I have imported the class from my jar file with import enji.lep.Msg; In my new class (Chat) I want to use a "public void" function from the Msg class imported. the Msg.class haz this public void in ...
0
votes
1answer
83 views

Growl with java server

How would i go about making a server app in java that will send growl notifications to clients, making it VERY easy for the client? Mainly, how would i send those notifications? ...