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

Results 1 to 2 of 2
  1. #1
    Member conejoo is offline
    MemberRank
    Aug 2012 Join Date
    84Posts

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

    As the title says.

    How do to change the name of the movement?
    For example, changing TACKLE by KICK (just an example)


  2. #2
    Proficient Member PokeOrb is offline
    MemberRank
    Nov 2010 Join Date
    191Posts

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

    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:
    tackle
    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.



Advertisement