Hello guys, I have a custom zone and whenever you die in that zone it shows you the timer when you will respawn and after timer reaches 0 it respawns you.This was my first try:
publicvoid onDieInside(L2Character character){if(character instanceof L2PcInstance){final L2PcInstance player =(L2PcInstance) character;
countdown =5;ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(newRunnable(){@Overridepublicvoid run(){if(player.isDead()){if(countdown >0){SystemMessage smg =SystemMessage.getSystemMessage(SystemMessageId.RESPAWN_AFTER_S1_SECONDS);
smg.addString(String.valueOf(countdown));
player.sendPacket(SystemMessageId.RESPAWN_AFTER_S1_SECONDS);
countdown--;}elseif(countdown ==0){
player.doRevive();int x =174132+(int)(Math.random()*((179862-174132)+1));int y =112225+(int)(Math.random()*((117715-112225)+1));int z =-7708;Location loc =newLocation(x, y, z);
player.teleToLocation(loc,0);}}}},0,1000);}}
It works fine for first time,but then it just get shorter and shorter.I believe it's because thread doesn't stop working after respawning player,so whenever a player dies again the countdown is set to 5,but there is 2threads running and subtracting 1from countdown and then threads just keep increasing. My second try was this method:
publicvoid onDieInside(L2Character character){if(character instanceof L2PcInstance){final L2PcInstance player =(L2PcInstance) character;
countdown =5;while(countdown >0&& player.isDead()){ThreadPoolManager.getInstance().scheduleGeneral(new showCountdown(countdown,player),6000-countdown*1000);
countdown--;}ThreadPoolManager.getInstance().scheduleGeneral(newRunnable(){@Overridepublicvoid run(){if(player.isDead()){
player.doRevive();int x =174132+(int)(Math.random()*((179862-174132)+1));int y =112225+(int)(Math.random()*((117715-112225)+1));int z =-7708;Location loc =newLocation(x, y, z);
player.teleToLocation(loc,0);}}},6000);}}
Account Features
➡ EARLY SUPPORTER BADGE
➡ NO QUEST BADGE
➡ 24 MONTHS BOOST BADGE
➡ 1 YEAR NITRO SUBSCRIPTION
➡ CREATION DATE IS 2017
➡ ACCOUNT STANDING STATUS IS ALL GOOD
➡ CLEAN BILLING
➡ OGE MAIL OUTLOOK
PAYMENT METHODS
➡ CRYPTO
➡ PAYPAL
➡ CASHAPP
➡ BANK TRANSFER
➡ GIFTCARDS
➡ ZELLE
➡ VENMO
CONTACTS
➡ DISCORD : crh11s
➡ TELEGRAM : crh11s
CONTACT WITH ME IF YOU ARE SERIOUS BUYE
To check the operation of npc movement. You can turn off all movement in the game and move only the npc you want using the move to package. This way you will reduce a lot of unnecessary code and understand where the problem is.
And all your maps are not thread safe and you are using multithreading
startQuestTimer("move", 5000, npc, null);
Verify if following is supposed to be the way to handle movement
npc.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO, new Location(point.getX(), point.getY(), point.getZ()));
For me, it's not enough. And if it's the case, whole AI system is probably buggy.
Question
StealthyS4m
Hello guys,
I have a custom zone and whenever you die in that zone it shows you the timer when you will respawn and after timer reaches 0 it respawns you.This was my first try:
It works fine for first time,but then it just get shorter and shorter.I believe it's because thread doesn't stop working after respawning player,so whenever a player dies again the countdown is set to 5,but there is 2threads running and subtracting 1from countdown and then threads just keep increasing.
My second try was this method:
This is showCountdown class:
It works just fine,but it seems dumb just to create so many Threads for a simple countdown.
Edited by StealthyS4m15 answers to this question
Recommended Posts