Registrarse

[RPG - Scripting] Ubicacion del Pokemon No Agarra

Estado
Cerrado para nuevas respuestas.

ReptaliaCA

Usuario de platino
Hola, estoy usando el Essentials Bw y ya tengo configurado el town map y los encounters.. pero a la hora de ver donde se encuentran los Pkmn en la Pokédex, me salen todos de area desconocida... inserto el script de edicion del pokedex a la hora de configuracion, y captura del town, encounters y lo que segun es necesario:

#===============================================================================
# * Whether the Pokédex list shown is the one for the player's current region
# (true), or whether a menu pops up for the player to manually choose which
# Dex list to view when appropriate (false).
# * The names of each Dex list in the game, in order and with National Dex at
# the end. This is also the order that $PokemonGlobal.pokedexUnlocked is
# in, which records which Dexes have been unlocked (first is unlocked by
# default).
# You can define which region a particular Dex list is linked to. This
# means the area map shown while viewing that Dex list will ALWAYS be that
# of the defined region, rather than whichever region the player is
# currently in. To define this, put the Dex name and the region number in
# an array, like the Kanto and Johto Dexes are. The National Dex isn't in
# an array with a region number, therefore its area map is whichever region
# the player is currently in.
# * Whether all forms of a given species will be immediately available to view
# in the Pokédex so long as that species has been seen at all (true), or
# whether each form needs to be seen specifically before that form appears
# in the Pokédex (false).
# * An array of numbers, where each number is that of a Dex list (National Dex
# is -1). All Dex lists included here have the species numbers in them
# reduced by 1, thus making the first listed species have a species number
# of 0 (e.g. Victini).
#===============================================================================
DEXDEPENDSONLOCATION = false
def pbDexNames; return [
[_INTL("Pokédex Criolla"),-1]
]; end
ALWAYSSHOWALLFORMS = false
DEXINDEXOFFSETS = []

mmm.png
 

Adjuntos

Estado
Cerrado para nuevas respuestas.
Arriba