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!
Our weekly protagonist poll is now up! Vote for your favorite Trading Card Game 2 protagonist in the poll by clicking here.
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.
So I'm gonna try to explain this in words but does anyone know how to change the index number of a pokemon in the summary page one without changing all my graphics and renaming them?
Just in case you don't understand
Ex. Charmander is placed pokemon 004 but on the summary I would display it...
Oh All I did was change this line of code
def makeUnprimal
v=MultipleForms.call("getUnprimalForm",self)
self.form=(v!=nil) ? v : 0
end
end
to this
def makeUnprimal
v=MultipleForms.call("getUnprimalForm",self)
if v!=nil; self.form=v
elsif isPrimal?; self.form=0...
Nevermind just fixed it Apparently in version 16.2 there are missing pieces of code in PField_Field which allow primal evolution I just added it in there the same way makeUnmega was put in there
So I've had the question lately of how to make Online features in a essentials game so I looked it up and all what I found was a gts script which was very helpful I was happy with it but then I wanted more so I was wondering how to do online battles I couldn't really find any answers and the one...
Me And My friends were making fakemon and putting them into pokemon essentials but we wanted to make it a online battle simulator for our fakemon just within our friend group And I was wondering if anyone knew a easy way of doing it without really having to learn a whole lot of mysql
I'm Pretty Sure you need MySQL knowledge to use that at least That's what I've learned about trying to make online interactions such as trading and battling. Unless You use PKSD which is a bit easier cause they teach you how I would switch over to PKSD but I am Too lazy to familiarize myself...
I was Mapping Then I started a new game and this keeps popping up can someone help me
Message: undefined method `[]=' for nil:NilClass
PField_Field:1613
PField_Field:1607:in `call'
Event:54:in `trigger'
Event:49:in `each'
Event:49:in `trigger'
PField_MapFactory:202:in `setMapChanged'...
So it's not an error that stops me from playing the game but it will ignore npc trainer id's for example
pbTrainerBattle(PBTrainers::RIVAL,"James",_I("......!"),false,1)
Its supposed to show me 2 pokemon because it is a rival but instead it doesn't change
and I think it has something to do...