- Apr 14, 2010
- 19
- 0
- 0
I was using this for my pc
and when I compile I get these errors
Code:
public void InBoat () {
EventManager.getSingleton().addEvent (new Event() {
public void execute(EventContainer c) {
if(objectID == 14315 && System.currentTimeMillis() - lastAction > actionInterval) {
sM("You enter the boat, "+PlayerHandler.pcWaitTimer+" till next game starts.");
toX = 2660;
toY = 2639;
actionInterval = 2500;
lastAction = System.currentTimeMillis();
PcPanel1();
if(!inPcBoat()) {
c.stop();
}
}
}
}, 600);
};
and when I compile I get these errors
Code:
client.java:11820: cannot find symbol
symbol: variable objectID
if(objectID == 14315 && System.currentTimeMillis
() - lastAction > actionInterval) {
^
1 error
Press any key to continue . . .