Problems with HG SS update.

Hey, sorry for the inconvenience, I want to know if you guys can help me on the HG SS update for my server, thanks.
 
You'll need to take the move list to add to the pokemon, and convert it into a patch. I might as well do a big 'section' on the shoddy patch language.

Changing Stats
Code:
Hit Points = HP
Attack = Atk
Defense = Def
Speed = Spe (or Spd not sure)
Special Attack = SAtk
Special Defense = SDef
That is how you modify the base stat. You cannot alter the total stat, because that relies on EVs, and EVs are not set in this process.
Code:
Pokemon Name: HP:60, Atk:77, Def:50, (Spe/Spd):44, SDef:77, SAtk:90;
The pokemon modification always ends with ";".

Adding Moves & Abilities
It's almost the same as Stats, but SLIGHTLY different. Take a look.
Code:
Pokemon Name: Explosion, Zap Cannon, Hydro Pump;
You just type in the name of the move. It has to be what the Team Builder says. Commonly mixed up moves are ones like Thunderpunch.

Adding Abilities is just as easy. Take a look
Code:
Pokemon Name: a+Drizzle, a+Drought, a+Sky Lock;
You just type a+[Ability Name], and so on.

Before we move on to new pokemon, (its seriously not that complicated...) lets wrap up basic patching...

Code:
Groudon: a+Drizzle, SDef:102, Explosion;
Simple. It would give Groudon the ability Drizzle, the Special Defense stat of 102 (base), and the move Explosion.

Adding new Pokemon

Alright, this is really not that complicated. Without patches, you would have to modify the dll's in the server directory... but we dont have to!

Simply open up your patch, and enter this information...
Code:
Add Pokemon: Name, HP, Atk, Def, Spd, Satk, Sdef, Type1, Type2, Gender;
This is just the code, however you do need to modify the pokemon to give it moves and abilities.

Use the methods above to get moves and abilities for it.

-----------

After you have formed your creative patch, save it as [Name].patch. Now go up a level and click server.properties and changed server.patch = [name of file].patch
Then restart your server and all the changes should show up.

Here is an example that shows pokemon named Smogon getting high stats.
Code:
Add Pokemon: Smogon, 9999, 9999, 9999, 9999, 9999, 9999, Poison, None, Male;
Smogon: a+Leviatate, Explosion, Sludge Bomb;

-----------

@obina. - Yes. I have just written this article ---^ and you can use it to convert the raw moves to a patch. I don't know where the moves might be though. If you have any errors, leave a response or PM to me.
 
Back
Top