- Joined
- Feb 22, 2016
- Messages
- 1,830
- Reaction score
- 1,586
- First Language
- English
- Primarily Uses
- RMMV
Ok, I tried the line 285 fix, but I get this error when I try to select a skill w/ a custom scope:yeah,
285 is messed up its probably what caused some issues with the file
After the last */ should be
PHX_LeMod.Parameters = PluginManager.parameters('PHX_LeMod');
PHX_LeMod.Param = PHX_LeMod.Param || {};
when selecting skills with 20+ range.
is actually the last part of the documentation
go to line 244
This should read
* //Scopes
* Added support for "exclude_free_cells" in the AOE. previously
* this boolean did exist, but there was never a function to filter
* out cells without an entity in it. This also greatly reduces lag
* when selecting skills with 20+ range.
So it seems this was a copy/paste error and possibly corrupted the plugin a bit.....


The skill/custom scope worked fine w/o any errors when I was using the messed-up line 285...weird lol.
I've also tried moving this back to its original location at the bottom of PHX_LeMod.js:
JavaScript:
TBSEntity.prototype.customSquare = function () {
if(this.getMovePoints()>2)
{return 5;}
else
{return 3;}
};