[Guide] Pokémon has stopped working when opening Team Builder

Discussion in 'Help' started by Blastcore, Feb 3, 2011.

Moderators: E.T., Zoroark
  1. Blastcore

    Blastcore Developer

    Joined:
    Jul 19, 2010
    Messages:
    763
    Likes Received:
    1
    Well, for everyone who haves issues when entring Team Builder, here's a guide. Thank you very much Crystal for providing me a team.

    PHP:
    1.  
    2. <Team version="1" gen="" defaultTier="">
    3.     <Trainer loseMsg="" avatar="" winMsg="" infoMsg="">[B]INSERT NAME HERE[/B]</Trainer>
    4.  
    In Team Tag

    Team version: Well, here just put 1.
    gen: Put the team generation, for example 1,2,3,4 or 5
    defaultTier: Your tier, OU, UU, NU (Complete, OverUsed)

    In Trainer Tag

    loseMsg: The message that appears when you lose.
    avatar: The avatar number, for more reference please check in Pokémon Online Avatars.
    winMsg: The message that appears when you win.
    infoMsg: Your description.
    INSERT NAME HERE: Put your nick, for example "Latios". Without the "".

    When we're done, we should have something like this:

    PHP:
    1.  
    2. <Team version="1" gen="5" defaultTier="OverUsed">
    3.     <Trainer loseMsg="Omg, i lost." avatar="211" winMsg="Haha, I won!" infoMsg="I'm Latios, a very good guy.">Latios</Trainer>
    4.  
    Now we're going with team part: (Which is more complicated)

    Let's take this part as example:
    PHP:
    1.  
    2.     <Pokemon Item="" Ability="" Num="" Nature="" Shiny="" Nickname="" Forme="" Happiness="" Lvl="" Gender="">
    3.         <Move></Move>
    4.         <Move></Move>
    5.         <Move></Move>
    6.         <Move></Move>
    7.         <DV></DV>
    8.         <DV></DV>
    9.         <DV></DV>
    10.         <DV></DV>
    11.         <DV></DV>
    12.         <DV></DV>
    13.         <EV></EV>
    14.         <EV></EV>
    15.         <EV></EV>
    16.         <EV></EV>
    17.         <EV></EV>
    18.         <EV></EV>
    19.     </Pokemon>
    20.  
    Pokemon Item: Here goes the number of the item.
    Ability: Here the number of the Ability.
    Num: Here goes the Pokémon Number.
    Nature: The Pokémon Nature.
    Shiny: 1 = Shiny | 0 = Normal
    Nickname: The nick name of the Pokémon.
    Forme: If it's a Pokémon like Deoxys, Shaymin, Rotom, etc. You can set the Forme here.
    Happiness: The Pokémon Happiness.
    Lvl: The Pokémon Level (1 to 100)
    Gender: 1 = Male | 2 = Female
    Move:: The move, 1, 2, 3, 4.

    When we're done we should have something like this:

    PHP:
    1.  
    2.     <Pokemon Item="6" Ability="70" Num="38" Nature="15" Shiny="0" Nickname="Ninetales" Forme="0" Happiness="0" Lvl="100" Gender="2">
    3.         <Move>126</Move>
    4.         <Move>76</Move>
    5.         <Move>237</Move>
    6.         <Move>473</Move>
    7.         <DV>31</DV>
    8.         <DV>31</DV>
    9.         <DV>31</DV>
    10.         <DV>31</DV>
    11.         <DV>31</DV>
    12.         <DV>30</DV>
    13.         <EV>4</EV>
    14.         <EV>0</EV>
    15.         <EV>0</EV>
    16.         <EV>252</EV>
    17.         <EV>0</EV>
    18.         <EV>252</EV>
    19.     </Pokemon>
    20.  
    (You have to do this with every Pokémon)

    I'm going to update when Coyo tell me more things.
     
  2. lvfkxldktm

    lvfkxldktm New Member

    Joined:
    May 12, 2011
    Messages:
    1
    Likes Received:
    0
    sorry im not that bright with computers. i don't know how to get on the php code, and i can't even get on the team builder. can i get some help?
     
  3. props54

    props54 New Member

    Joined:
    Jul 5, 2011
    Messages:
    1
    Likes Received:
    0
    how do you work this game
     
  4. Blastcore

    Blastcore Developer

    Joined:
    Jul 19, 2010
    Messages:
    763
    Likes Received:
    1
    @lvfkxldktm: You just need someone to provide you a Team to edit it. By left clicking it and click "Edit with..."

    @props54: What you mean?
     
  5. SeanTheTrainer

    SeanTheTrainer New Member

    Joined:
    Jul 19, 2011
    Messages:
    3
    Likes Received:
    0
    ok, tell me the php codes to the attacks please.
     
  6. zeroality

    zeroality Artificial Insanity

    Joined:
    Apr 22, 2010
    Messages:
    1,378
    Likes Received:
    1
    You can find that yourself, go to the folder where PO was installed like: C:\Users\[user]\Pokemon Online\db\moves

    Open moves.txt - that is the list. Starting with 1 for Pound (the blank line is 0). If you want to look up a move quickly, then you could open the file in a text editor that shows you line numbers.

    Then you'd subtract one from the line that you're on. So Rock Blast is on line 351, subtract one and that makes it Move 350.
     
Moderators: E.T., Zoroark