Jump to content
  • 0

[Request] Quake system (alternative)


Question

Posted

Here is the main code PvP Quake system:

 switch(quakeSystem) {
       	case 4:
       		 Announcements.getInstance().announceToAll("" + this.getName()+ " is Dominating!");
       		 break;
       	case 6:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Rampage!");
       		break;
       	case 8:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Killing Spree!");
       		break;
       	case 10:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Monster Kill!");
       		break;
       	case 12:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is Unstoppable!");
       		break;
       	case 14:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on an Ultra Kill!");
       		break;
       	case 16:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is Godlike");
       		break;
       	case 18:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is Wicked Sick!");
       		break;
       	case 20:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Ludricrous Kill!");
       		break;
       	case 24:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Holy Shit!");
       		 default:
       			 ;
       }

i searched for it and there was no answers about this reques...i want the alternative one...when a player has a killing spree and a enemy kills him, then an announce appears saying: player x stoped player's y (killig spree,monster kill,wicked sick etc.) with x kills... pls share the java code ty :)

3 answers to this question

Recommended Posts

  • 0
Posted

public boolean doDie(L2Character killer)
                  ...
	if (killer != null)
	{   	
                   ...
switch(quakeSystem) {
       	case 4:
       		 Announcements.getInstance().announceToAll("" killer.getName()+ " stoped" + this.getName()+ "'s Dominating!");
       		 break;
       	case 6:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Rampage!");
       		break;
       	case 8:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Killing Spree!");
       		break;
       	case 10:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Monster Kill!");
       		break;
       	case 12:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is Unstoppable!");
       		break;
       	case 14:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on an Ultra Kill!");
       		break;
       	case 16:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is Godlike");
       		break;
       	case 18:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is Wicked Sick!");
       		break;
       	case 20:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Ludricrous Kill!");
       		break;
       	case 24:
       		Announcements.getInstance().announceToAll("" + this.getName()+ " is on a Holy Shit!");
       		 default:
       			 ;
       }
       //quakesystem=0;
...
}
...
}

 

change all the announcements and controll to reset the quakesystem however you want to do it

  • 0
Posted

i repeat you that you must take care with restart quake count after the announce, but after the

if (killer != null){

...

}

because, if you restart before the announce, you will never show that "some1 stop the strike". But if you restart it inside the if (killer) then if mobs kill the player the count will not go back to 0

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...