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!

[help][pokenet] how to change the name of the moves(attacks)

Newbie Spellweaver
Joined
Aug 18, 2012
Messages
84
Reaction score
6
As the title says.

How do to change the name of the movement?
For example, changing TACKLE by KICK (just an example)
 
Junior Spellweaver
Joined
Nov 16, 2010
Messages
187
Reaction score
19
Server side:

org > pokenet > server > battle > mechanics >moves MoveList.java

Look for:
Code:
m_moves.add(new MoveListEntry("Tackle",
				new PokemonMove(PokemonType.T_NORMAL, 35, 0.95, 35)));

You can do this with any move. Rename it.

Client side:

org > pokenet > client > backend > entity > Enums.java

Look for
Code:
[i]tackle[/i]

Rename that to what you named it in MoveList.java.

Save, compile, there you go.

I haven't tested it, but in theory that should work. Let me know.
 
Back
Top