Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Change Any Weapon Speed 718(+)

Junior Spellweaver
Joined
Sep 23, 2013
Messages
135
Reaction score
21
Even all Weapons Speeds can be found in the cache but just to make it easier for you, I've made this Guide,
Open PlayerCombat.java and Search for
Code:
private int getMeleeCombatDelay(Player player, int weaponId) {
		if (weaponId != -1) {
			String weaponName = ItemDefinitions.getItemDefinitions(weaponId)
					.getName().toLowerCase();
Look for
Code:
switch (weaponId) {


under that modify this, to your likings
Code:
case 18349: // Itemid
			return -5; // Weapon Delay


the higher the return is, the slower the weapon hits

Do not forget to Repley or Thanks.
 
Back
Top