Hello maxcheaters..! so i have an idea about 2 fixes for my server but i need your usefull help to do it right..!
so the first code is about Olympiad... i was thinking how to avoid the prefrenzy, angelic icon and other things like that...!
so i was thinking... if i can put a code that when you are in Oly before start the match, the hp will cannot drop down...! i mean... as much as hp you receive (from buffs or armors, weapons etc.)
the HP cannot drop down! just to staying full! can we do that?!
the second code is something about the drain from mobs while in flag...!
i've tried this code on L2PcInstance.java:
public void doAttack(L2Character target)
{
super.doAttack(target);
+ if ((getPlayer().getPvpFlag() > 0) && target.isMonster())
+ {
+ getPlayer().stopSkillEffects(false, 310);
+ return;
+ }
// cancel the recent fake-death protection instantly if the player attacks or casts spells
getPlayer().setRecentFakeDeath(false);
}
It's working as i want, but... with the command:
getPlayer().stopSkillEffects(false, 310);
the skill is getting removed! what method i have to put for the skill to just don't work while player if flaged but doesn't getting removed?! can we fix that too?!
(if the "false" in stopSkillEffects means that the buff will not removed and if "true" will removed... i checked it and doesn't work.!)
i had sent you in discord i think already the link seen you asking in mobius forum
anyway here you go
https://www.mediafire.com/folder/6oh7l7hf34xr9/C1
Hello all.
I have some strange errors on server side and the right bar of Open Beta STORE is not showing anymore after changing server ip.
Errors:
[11:34:12] TriggerParser: Exception: l2.gameserver.data.xml.parser.exception.InvalidAttributeValueException: Bypass trigger is calling "classMaster#tryShowIcon" action which is missing!
l2.gameserver.data.xml.parser.exception.InvalidAttributeValueException: Bypass trigger is calling "classMaster#tryShowIcon" action which is missing!
at l2.gameserver.data.xml.parser.TriggerParser.parseBypasses(Unknown Source) ~[server.jar:?]
at l2.gameserver.data.xml.parser.TriggerParser.parseTrigger(Unknown Source) ~[server.jar:?]
at l2.gameserver.data.xml.parser.TriggerParser.readData(Unknown Source) ~[server.jar:?]
at l2.commons.data.xml.AbstractParser.parseDocument(Unknown Source) ~[server.jar:?]
at l2.commons.data.xml.AbstractFileParser.parse(Unknown Source) [server.jar:?]
at l2.commons.data.xml.AbstractParser.load(Unknown Source) [server.jar:?]
at l2.gameserver.data.xml.Parsers.parseAll(Unknown Source) [server.jar:?]
at l2.gameserver.GameServer.<init>(Unknown Source) [server.jar:?]
at l2.gameserver.GameServer.main(Unknown Source) [server.jar:?]
java.lang.IllegalArgumentException: Couldn't find Config "closedBeta" in file "shop"
at l2.commons.config.ConfigManager.getConfigValue(Unknown Source) ~[server.jar:?]
at l2.commons.config.ConfigManager.getObjectValue(Unknown Source) ~[server.jar:?]
at l2.ext.closedbeta.ClosedBeta.isBetaTester(ClosedBeta.java:32) ~[?:?]
at l2.ext.closedbeta.ClosedBeta$OnEnterWorld.onEnterWorld(ClosedBeta.java:23) ~[?:?]
at l2.gameserver.model.actor.listener.PlayerListenerList.onEnterWorld(Unknown Source) ~[server.jar:?]
at l2.gameserver.network.l2.c2s.EnterWorld.runImpl(Unknown Source) [server.jar:?]
at l2.gameserver.utils.ExecutionRecorder.wrapInPacketExecution(Unknown Source) [server.jar:?]
at l2.gameserver.network.l2.c2s.L2GameClientPacket.run(Unknown Source) [server.jar:?]
at l2.commons.net.nio.impl.MMOExecutableQueue.run(Unknown Source) [server.jar:?]
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) [?:?]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) [?:?]
at java.lang.Thread.run(Thread.java:840) [?:?]
Caught at: l2.gameserver.network.l2.c2s.EnterWorld.runImpl(Unknown Source)
I am using lucera files, Ertheia version.
Any help would be gladly appreciated. Thank you.
Exactly, if somebody hijacks ur sessions, then u wont see a new device in your "Devices List".
And with that hijacked session you are able to change whatever you want unless you have 2FA enabled. And I believe changing a group owner doesn't trigger 2FA.
Question
xXObanXx
Hello maxcheaters..!
so i have an idea about 2 fixes for my server but i need your usefull help to do it right..!
so the first code is about Olympiad... i was thinking how to avoid the prefrenzy, angelic icon and other things like that...!
so i was thinking... if i can put a code that when you are in Oly before start the match, the hp will cannot drop down...! i mean... as much as hp you receive (from buffs or armors, weapons etc.)
the HP cannot drop down! just to staying full! can we do that?!
the second code is something about the drain from mobs while in flag...!
i've tried this code on L2PcInstance.java:
It's working as i want, but...
with the command:
the skill is getting removed!
what method i have to put for the skill to just don't work while player if flaged but doesn't getting removed?! can we fix that too?!
(if the "false" in stopSkillEffects means that the buff will not removed and if "true" will removed... i checked it and doesn't work.!)
23 answers to this question
Recommended Posts