so guys i managed to learn how announcements class works with showing the announcements.txt on enterwolrld and i had an idea to create autoannouncer in 5 lines of code but i got stack xD so here is my idea
in the announcements class i created the method
public void showAnnouncement(L2PcInstance activeChar)
{
CreatureSay csay = new CreatureSay(0, Say2.ANNOUNCEMENT, activeChar.getName(), "Dont Forget To Vote For The Server");
activeChar.sendPacket(csay);
}
and then in the enterworld runImpl method i added this
ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable()
{
@Override
public void run()
{
Announcements.getInstance().showAnnouncement(activeChar)
}
}, 5000, 5000); //5000 is for testing
and then the compiler made me realize that run() runs in the new runnable class so i cant access the activechar temporary instance of the runImpl
His posts clearly show how unprofessional he is. He acts as though there are no stable and well-established projects that people actually enjoy. PlayInera, for example, is one of those projects where the staff works hard to deliver a solid, stable server experience.
You think you have good “l2j” files until you try running a low-rate server.
Saying “there’s not a single L2 server out there worth mentioning” just shows you probably only know the first 10 servers on voting sites, the same voting sites that owned by them.
You call the forum dead, yet you’re here discussing your next projects…
From my perspective, you don’t seem ready to run any L2 server in 2025.
Around 70% of players are here for RMT or ask for payment just to bring their clan, and you really think the community cares about Premium or donations or files quality?
The other 20% spend their time downloading and deleting servers all day, playing for one day, then quitting for whatever random reason.
And finally, the last 10% are the only ones who actually play because they genuinely like your features, your server files, and your overall project.
Good luck 🙂
I genuinely admire your bravery - in an age where AI can whip up something better in under a minute, you still stubbornly try to sell these "projects" of yours on a forum that’s been clinically dead for years. That’s no longer determination, that’s digital archaeology.
I just can’t tell whether you’re actually trying to make money, or simply testing how much we can endure before we ask an AI to generate you some actual talent.
And ofc AI will make it for free, $220 saved.
Question
Nitzamc
so guys i managed to learn how announcements class works with showing the announcements.txt on enterwolrld and i had an idea to create autoannouncer in 5 lines of code but i got stack xD so here is my idea
in the announcements class i created the method
public void showAnnouncement(L2PcInstance activeChar) { CreatureSay csay = new CreatureSay(0, Say2.ANNOUNCEMENT, activeChar.getName(), "Dont Forget To Vote For The Server"); activeChar.sendPacket(csay); }and then in the enterworld runImpl method i added this
ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new Runnable() { @Override public void run() { Announcements.getInstance().showAnnouncement(activeChar) } }, 5000, 5000); //5000 is for testingand then the compiler made me realize that run() runs in the new runnable class so i cant access the activechar temporary instance of the runImpl
and now im upset :( so any ideas? ??????
using l2j interlude latest revision
Edited by Nitzamc2 answers to this question
Recommended Posts