07-18-2016, 03:18 AM
Well, you could copy the actual [b]draw_actor_name[b] method from the Xail script and re-pasted it as a separate script by itself below everything else.... effectively ensuring it takes precedent over the other version.
Just post the method in its own Window Base class after the others, and you should be good to go.
Code:
class Window_Base
def draw_actor_name(x,y,whatever,whatever)
....blah blah blah...
....blah blah blah...
....blah blah blah...
end
end
Just post the method in its own Window Base class after the others, and you should be good to go.