I am trying to get this program to cancel itself after running 3 times, but I keep getting a "The local variable taskId may not have been initialized" error. For one is this dangerous. Two can I still properly compile it and run the program despite getting compiler errors? Lastly how would I fix this? Thanks!
final int taskId = plugin.getServer().getScheduler().scheduleSyncDelayedTask(plugin, new Runnable() {
int count = 0;
@Override
public void run() {
((LivingEntity) e.getEntity()).damage(2);
count++;
if (count > 2) {
Bukkit.getScheduler().cancelTask(taskId);
}
}
}, 60L);
can I still properly compile it despite getting compiler errors?Man, you need to first get into basics of programming b4 u try such high level stuff – Pranalee Jun 11 '12 at 6:57