• Just a reminder that providing specifics on, sharing links to, or naming websites where ROMs can be accessed is against the rules. If your post has any of this information it will be removed.
  • Ever thought it'd be cool to have your art, writing, or challenge runs featured on PokéCommunity? Click here for info - we'd love to spotlight your work!
  • Welcome to PokéCommunity! Register now and join one of the best fan communities on the 'net to talk Pokémon and more! We are not affiliated with The Pokémon Company or Nintendo.

Few question

  • 2
    Posts
    12
    Years
    • Seen Aug 4, 2012
    i have few question about pokemon essential this my question:

    1.anyone know to make instant egg hatch in shop?

    2.if possible to make different shop item everyday?.eg in sunday pokemon mart sell item potion and pokeball and in monday pokemon mart sell item super poion and great ball

    3.how to battle with pokemon that your trade? eg. main character trade Charizard with Blaziken and how to battle with that charizard with same move,level,gender and everything

    #SORRY FOR MY ENGLISH
     
    1.) This is what I would do.

    Code:
    [COLOR="Blue"]Label: again[/COLOR]
    [COLOR="Gray"]Script: pbChoosePokemon(1,3[/COLOR])
    [COLOR="blue"]Conditional Branch: Script: pbGetPokemon(1).egg?[/COLOR]
    [COLOR="gray"]Script: egg=pbGetPokemon(1)
    :: pbHatch(egg)
    Script: pokemon=pbGetPokemon(1)
    :: pokemon.eggsteps=0[/COLOR]
    [COLOR="Blue"]Else[/COLOR]
    This isn't an egg.
    [COLOR="blue"]Jump To Label: again[/COLOR]
    [COLOR="blue"]End[/COLOR]

    2.) Use

    Code:
    [COLOR="blue"]Conditional Branch: Script: pbIsWeekday(1,2,4,6)[/COLOR]
    [COLOR="Gray"]Script: pbPokemonMart([
    :: PBItems::POTION,
    :: PBItems::POKeBALL
    :: ])[/COLOR]
    [COLOR="Blue"]End[/COLOR]
    [COLOR="blue"]Conditional Branch: Script: pbIsWeekday(1,1,3,5)[/COLOR]
    [COLOR="Gray"]Script: pbPokemonMart([
    :: PBItems::SUPERPOTION,
    :: PBItems::GREATBALL
    :: ])[/COLOR]
    [COLOR="blue"]End[/COLOR]
    Potion and PokéBall would be available on Tuesday, Thursday and Saturday.
    Super Potion and Great Ball would be available on Monday, Wednesday and Friday.

    3.) Can't help you without looking into it myself. Sorry. Hope the others help.
     
    Last edited:
    3-You need some experience to do this. Creates a trade event, before trading clone the pokemon object and saves it in a variable that goes in save method (like PokemonGlobal). When you battle versus the trainer (put some check) load the pokémon in this team (at PokemonTrainers), or some of its attributes.
     
    Back
    Top