
andy1984
Members-
Posts
48 -
Credits
0 -
Joined
-
Last visited
-
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by andy1984
-
Code Bots prevention system, version 2.0!
andy1984 replied to Caparso's topic in Server Shares & Files [L2J]
i all ready applied mine . but i wasn't sure if its needed! //custom BotsPreventionManager.getInstance().cleanUp(); LOGGER.info("Bots Prevention tasks has been stopped."); -
Code Bots prevention system, version 2.0!
andy1984 replied to Caparso's topic in Server Shares & Files [L2J]
-
Code Bots prevention system, version 2.0!
andy1984 replied to Caparso's topic in Server Shares & Files [L2J]
I was using the older version of this system. This is way better and i all ready installed it :D. Thanks!! Keep Up! -
Help is there a command to add pvp/pk via admin panel in acis?
andy1984 replied to jack21's question in Request Server Development Help [L2J]
Java edit is needed. Logout the player and change it from database/characters. -
Hello. I added this on aCis401 but i found some serious problems on the code. First of all i updated all sql queries and i removed the character_memo_alt (its useless) and instead i saved everything in character_memo. All custom edits on Gameclient.java caused a serious problem (WARNING on GS) when a players was logging out. I found this part useless too so i removed it. Then i removed all Tournament arenas and OutOfZoneTask (i found them useless too because all games are instanced). Another bug is :when a team is on countdown to port in, for those 10 seconds was able to register on another game. That caused serious issues if another team join the Q and could port your team on next game before you finish the active one. And last bug is with the pets. Instance is not handled upon teleport in arena so enemies cannot kill your pet. I fixed more things for sure but i don't remember something else big. Its a very good system if you can manage to fix/update. I don't recommend it for live server as it is. Keep up.
-
Fixed. Lock it
-
Help TvT Event acis 399 error
andy1984 replied to Sonti's question in Request Server Development Help [L2J]
Can you show us more info from your code? -
Recipe materials [aCis]
andy1984 replied to 'Baggos''s question in Request Server Development Help [L2J]
Solved in Pms. -
Help Adding markers for party members
andy1984 replied to Glimpse's question in Request Server Development Help [L2J]
final Player tmp = getClient().getPlayer(); final Party party = tmp.getParty(); if (tmp != null && party != null && party.equals(_player.getParty()) && !party.isLeader(_player)) writeC(0x01); // team circle around feet 1= Blue, 2 = red else if (tmp != null && party != null && party.equals(_player.getParty()) && party.isLeader(_player)) writeC(0x02); // team circle around feet 1= Blue, 2 = red else writeC(_player.getTeam().getId()); this is for red and blue. Also broadcastCharInfo in Party/Disband, Leave and you are good. for different colors im not sure if its possible. -
Hello MxC! Today i noticed a weird bug on my vote manager. On first interact with the npc it shows completely wrond date for the next vote. The code is this If i click again on the npc then everything is correct. Check images Below: First Interact: Second Interact Npc class = public class VoteManager extends Npc Any clue? Fixed. Lock it
-
Help Character Killing Monument
andy1984 replied to andy1984's question in Request Server Development Help [L2J]
thanks for the top. any clue about heading? -
Tool TOOL - IconParser (Items & Skills)
andy1984 replied to StinkyMadness's topic in Server Shares & Files [L2J]
Link is dead. Can re upload? it seems a very useful tool -
Help Character Killing Monument
andy1984 replied to andy1984's question in Request Server Development Help [L2J]
I allready tryed it. Its always the same. Even when you login a normal character always is heading to the east. -
Help Character Killing Monument
andy1984 replied to andy1984's question in Request Server Development Help [L2J]
Hello again! I found something that is bothering me a lot on this system. When i spawn the npc and no active winner to show his monument the heading on npc is fine. When a winner exist and his monument spawn, heading is always to the east. i tryed to change is in the serverpacket and made it even static number to check and nothing happened. Any clue? -
Help Character Killing Monument
andy1984 replied to andy1984's question in Request Server Development Help [L2J]
no. Im stupid. fixed. public void setPolymorphInfo(CharSelectSlot polymorphInfo) { _polymorphInfo = polymorphInfo; for (WorldObject object : getKnownType(Player.class)) { if (object instanceof Player) { sendInfo(object.getActingPlayer()); } } } its not Object its WorldObject. There are more to fix. I will update the patch when im done for anyone interesting https://pastebin.com/MdMQdEwe -
Hello MxC! I am trying to adapt a event that every day will spawn a npc with the outfit of the top player. I managed to add the patch that i found but on aCis 401 that im using a lot of things are changes. I dont have any error but the npc doesn't appear as it has. here is the patch for what i did. https://pastebin.com/nnpTSaJ9 I think the problem is on this lines + public void setPolymorphInfo(CharSelectInfoPackage polymorphInfo) + { + _polymorphInfo = polymorphInfo; + + for (L2Object object : getKnownList().getKnownObjects()) + { + if (object instanceof L2PcInstance) + { + sendInfo(object.getActingPlayer()); + } + } + } this is from an older acis pack. I did it like this: public void setPolymorphInfo(CharSelectSlot polymorphInfo) { _polymorphInfo = polymorphInfo; for (Object object : getKnownTypeInRadius(Player.class, 2000)) { if (object instanceof Player) { sendInfo(((Player) object).getActingPlayer()); } } } if anyone can help i will apreciate it
-
Interlude. Found it. Thanks for help!
-
Hello MxC! How can i change the window that opens when you hit the button that appears when you received an email? Where can i find this?
-
Help acis-rev(401) Gameserver error Question
andy1984 replied to DocuWin's question in Request Server Development Help [L2J]
add </list> at the end -
Help acis-rev(401) Gameserver error Question
andy1984 replied to DocuWin's question in Request Server Development Help [L2J]
show xml of etcitems -
there is no 398 or 399 revision there. from 382 is going to 401.
-
Hello MxC! Is there any link for a clean aCis 398 or 399 revision?
-
Guide Adding click-to-buff removal to interlude
andy1984 replied to Celestine's topic in Client Development Discussion
const NSTATUSICON_SIZE = 26 ; must be 26 and not 24.