Scruffy3Janitor
Pokémon Ranger
can you also maybe try to make us able to add in custom abilities; when your making your own pokemon its nice to be able to give them fresh new abilities rather then dig through a list and choose what fits in the most
✨ ARCHIVE MODE ✨
The forum has now been set to read-only mode, no new posts, resources, replies etc will not be possible.
We recommend you join our Discord server to get real-time response: Discord Invite Link
This could be made into a feature for GameMode development, but not likely for the main game.can you also maybe try to make us able to add in custom abilities; when your making your own pokemon its nice to be able to give them fresh new abilities rather then dig through a list and choose what fits in the most
ik, thats why i ask; im making a gamemodeThis could be made into a feature for GameMode development, but not likely for the main game.
oh, so it wouldnt be codable then. or do you mean it would just be like another ability. if so id be fine with thatWell, they would be purely aesthetic since they would have no functionality attached to them.
They are hardcoded entirely in the game since they have such varying functionality across the overworld and battle system. It wouldn't be possible to script them in P3Ds script language since that requires a loaded overworld environment to work.oh, so it wouldnt be codable then.
ok, could you at least make it so we could make it be a renamed ability, like an ability that acts like another, also, does the script for making custom moves actually WORK. i cant get it toThey are hardcoded entirely in the game since they have such varying functionality across the overworld and battle system. It wouldn't be possible to script them in P3Ds script language since that requires a loaded overworld environment to work.
I don't think the renaming would be worth the effort since you would still have the same ability.ok, could you at least make it so we could make it be a renamed ability, like an ability that acts like another, also, does the script for making custom moves actually WORK. i cant get it to
well, i actually gave up on it and deleted it, but i can put up the file i used as the baseplate, i can figure it out if it actually worksI don't think the renaming would be worth the effort since you would still have the same ability.
And can you copy the content of your custom move file here?
this is the file i used:well, i actually gave up on it and deleted it, but i can put up the file i used as the baseplate, i can figure it out if it actually works
When you tested that, did you remove the # at the beginning of the lines that are defining the move?this is the file i used:
#This is an example move for a GameMode.
#The default GameMode cannot load additional moves, however all other GameModes can.
#The move ID must be set and must lay above 999, it also is not allowed to interfer with an already existing move ID.
#If no properties are set, the move will come out as the default Pound move. If only the name property gets changed for example, the move will still be the Pound move, but with a different name.
#Here's a list of all properties that can be set: "id", "function", "basepower", "accuracy", "type", "category", "contestcategory", "description", "criticalchance", "ishmmove", "priority", "timestoattack", "makescontact", "protectaffected", "magiccoataffected", "snatchaffected", "mirrormoveaffected", "kingsrockaffected", "counteraffected", "disabledwhilegravity", "useeffectiveness", "ishealingmove", "removesfrozen", "isrecoilmove", "ispunchingmove", "immunityaffected", "isdamagingmove", "isprotectmove", "issoundmove", "isaffectedbysubstitute", "isonehitkomove", "iswonderguardaffected", "useaccevasion", "canhitinmidair", "canhitunderground", "canhitunderwater", "canhitsleeping", "cangainstab", "ispowdermove", "istrappingmove", "ispulsemove", "isbulletmove", "isjawmove", "useoppdefense", "useoppevasion"
#Always set the "function" property last because it might depend on other properties. To add more than one function to a move, separate them with a "," like this: "Function|Burn,Paralyze".
#Available functions: "Burn", "Paralyze", "Freeze", "Poison", "Toxic", "Sleep"
#To build your own move for your GameMode, create a new file with the .dat file extension in the Content\Data\Moves folder and add line like these without the #.
#ID|1001
#Name|TestMove
#Function|Paralyze
does this work? if so i can find out myself what i did wrong and try another move
yes, i made a new file by copying it, deleted all the contents and followed the instructionsWhen you tested that, did you remove the # at the beginning of the lines that are defining the move?
So your file looked like this?yes, i made a new file by copying it, deleted all the contents and followed the instructions
ID|1001
Name|TestMove
Function|Paralyze
so on and so forth, yes, i had almost every categorySo your file looked like this?
Code:ID|1001 Name|TestMove Function|Paralyze
Did you look into the log.dat if it logged anything?so on and so forth, yes, i had almost every category
wait, i think i had blank in function, is there a certain way to say that it has no status effect