• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[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