*Obliberates stress ball* Blizzard, you owe me a new one.
Right, now it's time for me to do some code hunting!
EDIT: OH UNHOLY SHIT I AM SUCH A TOOL! I had the fucking script
above BABS! Specifically, it needs to be under part three. Alright, expect some results some time soon!
EDIDIT: Ok, I'm still a tool, but now I'm a tool who's got a slightly more problematic problem. When I try to use a field creation skill, the following error is returned:
undefined method 'x' for nil:NilClass. Now, the thing is, .x is in class map_battler, so it should be coming up as undefined method 'x' for class map_battler. The next problem is that x isn't a method. And by the way Aqua, you had
event.id = max
event.x = (@real_x + 64) / 128
event.y = (@real_y + 64) / 128
Which caused method errors for id=, x= and y=, so I changed it to:
event.id == max
event.x == (@real_x + 64) / 128
event.y == (@real_y + 64) / 128