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.
I’m glad I’m not the only one who appreciates Maxthor’s involvement in group gay orgies, he can’t be bothered to reply to messages, but covering the entire forum in gay lights is absolutely no issue for him.
As for the project - the forum is packed with feedback from the testers, the lads are spending every spare moment fixing even the tiniest typo in an NPC’s text. I’ll share the links as soon as I get the green light.
Edit: I forgot to add that the GM recruitment will begin once the links are released. Three people will be accepted, and they’ll work in a three-shift rotation so that there’s always a GM available online.
Added: a brand-new default dashboard template.
You can now add multiple game/login server builds.
Full support for running both PTS & L2J servers simultaneously, with switching between them.
Payment systems: added OmegaPay and Pally (new PayPal-style API).
Account history now stores everything: donations, items delivered to characters, referrals, transfers between game accounts, and coin transfers to another master account.
Personal Promo Code System: you can create a promo code and assign it to a user or promoter. When donating, a player can enter this promo code to receive bonus coins, and the promo code owner also receives a bonus — all fully configurable in the admin panel.
Look demo site: demo
Question
TsIpIzTiK®
Hello mxc.
i have a errors when i add one java code i am using interlude l2jserver pack
here is the share of the code http://www.maxcheaters.com/forum/index.php?topic=169475.0
the part of errors in Vote.java
the red colors is my erros tell me what i must change to get no errors
/* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package net.sf.l2j.gameserver.model.entity.Events;
import net.sf.l2j.gameserver.handler.admincommandhandlers.AdminCustom;
import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
import net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage;
/**
* @author xAddytzu
*/
public class Vote
{
private static Vote _instance = null;
private List<String> _IPs = new FastList<String>();
public static int voteCount1 = 0;
public static int voteCount2 = 0;
public static int voteCount3 = 0;
public static Vote getInstance()
{
if(_instance == null)
_instance = new Vote();
return _instance;
}
public void handleCommand(L2PcInstance player,String command)
{
if(command.startsWith("custom_vote_1"))
{
if (_IPs.contains(player.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress()))
return;
_IPs.add(player.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress());
voteCount1++;
player.sendMessage("Thanks for your vote.");
}
else if(command.startsWith("custom_vote_2"))
{
if (_IPs.contains(player.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress()))
return;
_IPs.add(player.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress());
voteCount2++;
player.sendMessage("Thanks for your vote.");
}
else if(command.startsWith("custom_vote_3"))
{
if (_IPs.contains(player.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress()))
return;
_IPs.add(player.getClient().getConnection().getSocketChannel().socket().getInetAddress().getHostAddress());
voteCount3++;
player.sendMessage("Thanks for your vote.");
}
}
public void showVoteHtml(L2PcInstance activeChar)
{
String htmFile = "data/html/custom/vote.htm";
NpcHtmlMessage html = new NpcHtmlMessage(1);
html.setFile(htmFile);
html.replace("%first%", String.valueOf(AdminCustom.first));
html.replace("%second%", String.valueOf(AdminCustom.second));
html.replace("%third%", String.valueOf(AdminCustom.third));
html.replace("%voteCount1%", String.valueOf(voteCount1));
html.replace("%voteCount2%", String.valueOf(voteCount2));
html.replace("%voteCount3%", String.valueOf(voteCount3));
activeChar.sendPacket(html);
}
public void clear()
{
voteCount1 = 0;
voteCount2 = 0;
voteCount3 = 0;
AdminCustom.first = "";
AdminCustom.second = "";
AdminCustom.third = "";
_IPs.clear();
}
}
8 answers to this question
Recommended Posts