MarGaZeaS Posted October 11, 2017 Posted October 11, 2017 (edited) Hello i found a code in another forum and i post here. working fine in acis 365 Gameserver: http://pastebin.com/Pc2ZxS1L gameserver http://pastebin.com/ArftpRKH DataPck some pictures Edited November 4, 2017 by PaRaNoiC*
Rumble Posted October 15, 2017 Posted October 15, 2017 Use That : http://www.maxcheaters.com/topic/217614-datapack-faction-custom-mods/
MarGaZeaS Posted October 18, 2017 Author Posted October 18, 2017 (edited) On 16/10/2017 at 2:30 AM, Rumble said: Use That : http://www.maxcheaters.com/topic/217614-datapack-faction-custom-mods/ why you post your topic in my topic? you give datapack/gameserver i give only code. :) Edited October 18, 2017 by PaRaNoiC*
thepsolartek Posted November 4, 2017 Posted November 4, 2017 2 problems in 2 files. 1st one is on charactercreate.java and the 2nd one is on requestrestartpoint.java. please help
Nightw0lf Posted November 14, 2017 Posted November 14, 2017 (edited) the code is poorly written and its missing to many checks/protections its a basic "i am blue" and "you are red" with so many useless if statements, bad handle of try with resources http://prntscr.com/ha9m9a you could at least update/fix it instead of found and share cause not all knows how to edit Edited November 14, 2017 by Nightw0lf
HukcaH Posted January 6, 2019 Posted January 6, 2019 help what's the problem? Java 8 ... no compile errors
SweeTs Posted January 6, 2019 Posted January 6, 2019 You have an empty config in your properties / you forgot to paste the config to properties and by default its empty on config.java To find out which config is that, go to Config.java 1483 line. 1
HukcaH Posted January 6, 2019 Posted January 6, 2019 Thanks for the tip ... was there value not enough. +# Annnounce Faction Players +# Values Are In Minutes +AnnouncePlayersDelay = Kara's nervous? I'm a noob at java but trying to understand and Yes I code it wrote.
HukcaH Posted January 12, 2019 Posted January 12, 2019 Now there is another problem (the factions can beat each other in the city with a simple attack, but with skills they cannot ... what check to prohibit in cities to beat with a simple attack? I suppose something is necessary here public void updatePvPStatus() { if (!issfaction() || !isffaction()) { return; } if (isInsideZone(ZoneId.PVP)) { return; } PvpFlagTaskManager.getInstance().add(this, Config.PVP_NORMAL_TIME) if (getPvpFlag() == 0) { updatePvPFlag(1); } } public void updatePvPStatus(Creature target) { final Player player = target.getActingPlayer(); if (player == null) { return; } if (isInDuel() && player.getDuelId() == getDuelId()) { return; } if (player.issfaction() || player.isffaction()) { return; }
Recommended Posts